{"info":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","description":"<html><head></head><body><p><strong>DCBank Client APIs (v1.0)</strong></p>\n<h2 id=\"introduction\">Introduction</h2>\n<p>DCBank's API environment gives Client’s access to DCBank services though a standardized interface. This platform provides an isolated development (sandbox) environment that allows the Client to test features, run experiments, and use “fake” money to test custom configurations without impacting the Client’s production environment.</p>\n<p>As well, Clients can access an API production environment where they can manage their customers and perform various actions on their customer base such as bill payments, e-Transfers, etc.</p>\n<h2 id=\"getting-started\">Getting Started!</h2>\n<p>DCBank’s API environment is based on REST technology and authorizes requests using a JWT Bearer Token sent and encrypted via HTTPS <code>v1.0</code>.</p>\n<p><strong>Note:</strong> Although there are multiple avenues to test and utilize DCBank API’s, DCBank uses the universal tool <a href=\"https://www.getpostman.com/\">Postman</a> and recommends it for Client testing.</p>\n<p>To gain access to DCBank’s API environment, do the following:</p>\n<ol>\n<li><p>Select an authentication method as outlined in the “Authorization” section of this guide.</p>\n</li>\n<li><p>Determine the environment type: A) Sandbox or B) Production.</p>\n</li>\n<li><p>Fill out the form located at <a href=\"https://www.dcbank.ca/get-started\">https://www.dcbank.ca/get-started</a> (Please allow 24-hour response time: M-F 8am-5pm MST).</p>\n<p> <strong>Note:</strong> The Client will receive an email from DCBank with API security credentials.</p>\n</li>\n<li><p>Acquire the Bearer Token. To use any DCBank API’s, Client’s are required to first acquire a Bearer Token by posting the Client’s API Security Credentials via HTTPS to the Login endpoint: <code>https://clientprod.dcbankapi.com/integrationapi/v1.0/Authentication/Login</code></p>\n<p> <strong>Note:</strong> The Bearer Token must then be supplied to all other endpoint requests via an authorization header. E.g. <code>Authorization: Bearer</code></p>\n</li>\n<li><p>For any questions or issues regarding the APIs please contact <a href=\"https://null\">apisupport@dcbank.ca</a></p>\n</li>\n</ol>\n<h2 id=\"authorization\">Authorization</h2>\n<p>To maintain the security of the Client’s applications and users, all requests to DCBank API’s must be authenticated using standards such as OAuth 2.0 and JSON Web Tokens (JWT). The JWT is then used along with Client-specific information to generate the Client’s personal access token.</p>\n<p>DCBank’s API environment supports two methods of authentication:</p>\n<ol>\n<li><p><strong>Username and Password</strong> – An invitation email is sent to the Client by DCBank. This email will contain a username and temporary password (valid for 1 day).</p>\n<p> <strong>Note:</strong> On receipt of the email, the Client must change the password by using the Change Password API.</p>\n</li>\n<li><p><strong>Token</strong> – No username and password are employed in the testing process. A DCBank IT specialist will contact the Client directly (via email) to provide the token information.</p>\n</li>\n</ol>\n<h2 id=\"authentication-token-expiry\">Authentication Token Expiry</h2>\n<p>When a token expires, Clients can request a re-issue by sending an email to apisupport@dcbank.ca.</p>\n<h2 id=\"endpoints\">Endpoints</h2>\n<p>The Client API is accessed via requests to a specific versioned endpoint URL which is sent and encrypted through HTTPS. Each Client API version will be made available with different endpoint URLs.</p>\n<p>The current stable endpoint URL for the Client APIs is: <code>https://clientprod.dcbankapi.com/integrationapi/v1.0</code></p>\n<h2 id=\"login-endpoint-url\">Login Endpoint URL</h2>\n<p><code>https://clientprod.dcbankapi.com/integrationapi/v1.0/Authentication/Login</code></p>\n<h2 id=\"handling-the-authorization-response\">Handling the Authorization Response</h2>\n<p>If the response is successful you will receive a JSON object containing a Bearer Token, which you can then use for all other endpoint requests. Please see the <strong>Login Endpoint URL</strong> for detailed Success and Error responses.</p>\n<h2 id=\"required-headers\">Required Headers</h2>\n<p>All of the Client API endpoints must contain the following headers, unless otherwise noted:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Content-Type</td>\n<td>application/json</td>\n<td></td>\n</tr>\n<tr>\n<td>Authorization</td>\n<td>Bearer</td>\n<td>Not required for the <strong>Login Endpoint URL</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"api-format\">API Format</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>JSON</th>\n<th>Example Using Camel Case</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>String</td>\n<td>{ \"name\" : \"johnDoh\"}</td>\n</tr>\n<tr>\n<td>Number</td>\n<td>{\"age\" : 30}</td>\n</tr>\n<tr>\n<td>Object</td>\n<td>{\"name\" : [\"name\" : \"John\", \"Age\" : 30, \"city : \"newYork\"]}</td>\n</tr>\n<tr>\n<td>Array</td>\n<td>{\"employees\" : [\"John\", \"anna\", \"Peter\"]}</td>\n</tr>\n<tr>\n<td>Boolean</td>\n<td>{ \"sale\" : true}</td>\n</tr>\n<tr>\n<td>Null</td>\n<td>{\"middlename\" : null}</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body-textjson\">Request Body <em>(text/json)</em></h2>\n<p><code>{ \"username\": \"\", \"password\": \"\" }</code></p>\n<h2 id=\"request-methods\">Request Methods</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>APIs</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td>Retrieves a resource</td>\n</tr>\n<tr>\n<td>POST</td>\n<td>Creates a resource</td>\n</tr>\n<tr>\n<td>PUT</td>\n<td>Updates or creates within an existing resource</td>\n</tr>\n<tr>\n<td>PATCH</td>\n<td>Partially modifies an existing resource</td>\n</tr>\n<tr>\n<td>DELETE</td>\n<td>Removes the resource</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<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>Header Parameters</td>\n<td>Parameters included in the request header, usually related to authorization</td>\n</tr>\n<tr>\n<td>Path Parameters</td>\n<td>Parameters within the path of the endpoint, before the query string. These are set off within curly braces</td>\n</tr>\n<tr>\n<td>Query String Parameters</td>\n<td>Parameters in the query string of the endpoint, after the path parameter</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-codes\">Error Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 - Ok</td>\n<td>Everything worked as expected</td>\n</tr>\n<tr>\n<td>400 - Bad Request</td>\n<td>The request was unacceptable, often due to missing a required parameter</td>\n</tr>\n<tr>\n<td>401 - Unauthorized</td>\n<td>No valid API key provided</td>\n</tr>\n<tr>\n<td>402 - Request Failed</td>\n<td>The parameters were valid but the request failed</td>\n</tr>\n<tr>\n<td>403 - Forbidden</td>\n<td>The API key doesn't have permission to perform the request</td>\n</tr>\n<tr>\n<td>404 - Not Found</td>\n<td>The requested resource does not exist</td>\n</tr>\n<tr>\n<td>409 - Conflict</td>\n<td>The request conflicts with another request</td>\n</tr>\n<tr>\n<td>429 - Too many requests</td>\n<td>Too many requests hit the API too quickly</td>\n</tr>\n<tr>\n<td>500, 502, 503, 504 - Service Errors</td>\n<td>Something went wrong on DCBank's end</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"versioning\">Versioning</h2>\n<p>As new versions are implemented, a change log will be posted including instruction on how to upgrade the version.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>API</th>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>Description</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>All</td>\n<td>v1.0</td>\n<td>2020-04-01</td>\n<td>Initial release</td>\n<td></td>\n</tr>\n<tr>\n<td>CreateEtransferTransaction</td>\n<td>v1.1</td>\n<td>2020-11-17</td>\n<td>Available for only CreateEtransferTransaction</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"help-and-support\">Help and Support?</h2>\n<p>Please feel free to contact DCBank's Technical Support team anytime via email to apisupport@dcbank.ca. * Please allow one business day for a turn around time.</p>\n<h2 id=\"frequently-asked-questions-faqs\">Frequently Asked Questions (FAQs)</h2>\n<li><div>Q. Do you have separate tokens or endpoints for testing (where no real money is transferred) vs. production?</div></li>\n\n<p>a) Yes, there is a testing token available. To obtain this token, send an email request to apisupport@dcbank.ca.</p>\n\n<li><div>Q. Do you need Client domains/IPs for an allow list like your SFTP service?</div></li>\n\n<p>a) Yes, DCBank requires the Client’s IPs once ready to move to production. There is no whitelisting for UAT.</p>\n\n<li><div>Q. What is the UAT API base URL?</div></li>\n\n<p>a) https://connect.dcbankapi.ca:35345</p>\n\n<li><div>Q. Are the money values real in DCBank’s Client API Sandbox environment?</div></li>\n\n<p>a) No, DCBank’s Client API sandbox environment uses “phony” or “fake” monetary values.</p>\n\n<h2 id=\"api-template\">API Template</h2>\n<p>Each API is based on the following template. Please copy and paste and use for each new API created.</p>\n<h4 id=\"description\">Description</h4>\n<p>Entered a detailed description of the API.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"related-errors\">Related Errors</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"version\">Version</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"10757426","collectionId":"9d10e398-0ee6-4a59-877f-3c1e789a0859","publishedId":"SzYUa25q","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"2B5BD4"},"publishDate":"2024-10-07T20:21:09.000Z"},"item":[{"name":"Authentication","item":[{"name":"Change Password","id":"a7860101-61ef-416d-8a3c-7df2f0eb8998","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"UserName\": \"username1234\",\n    \"OldPassword\": \"password\",\n    \"NewPassword\": \"newpassword\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/ChangePassword","description":"<h2 id=\"description\">Description</h2>\n<p>The Change Password API is required if you are employing the <strong>Username and Password</strong> authentication type. See <strong>Getting Started</strong> or <strong>Login</strong> API for more details.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>The API user's UserName.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OldPassword</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>The password being replaced.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>NewPassword</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>The new password.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApiChgPasswordE1</td>\n<td>The Username Field Was Empty.</td>\n</tr>\n<tr>\n<td>ApiChgPasswordE2</td>\n<td>The Old Password Field Was Empty.</td>\n</tr>\n<tr>\n<td>ApiChgPasswordE3</td>\n<td>The New Password Field Was Empty.</td>\n</tr>\n<tr>\n<td>ApiChgPasswordE4</td>\n<td>The New Password Must Be Different From The Old Password.</td>\n</tr>\n<tr>\n<td>ApiChgPasswordE5</td>\n<td>The API User Provided Does Not Exist.</td>\n</tr>\n<tr>\n<td>ApiChgPasswordE6</td>\n<td>The API User Provided Does Not Exist.</td>\n</tr>\n<tr>\n<td>ApiChgPasswordE8</td>\n<td>The Old Password Does Not Match The Username.</td>\n</tr>\n<tr>\n<td>User_PasswordDoesNotMeetPasswordPolicy</td>\n<td>Password Must Be At Least 6 Characters Including At Least One Of Each Of The Following:  <br />- Lower Case Letter  <br />- Upper Case Letter  <br />- Number  <br />- Special Character</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Authentication","ChangePassword"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9b024664-f5b5-4165-b306-97ba6a7cf871","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"UserName\": \"{{username}}\",\n    \"OldPassword\": \"{{password}}\",\n    \"NewPassword\": \"{{newpassword}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/ChangePassword"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a7860101-61ef-416d-8a3c-7df2f0eb8998"},{"name":"Health Check","id":"b4488bd8-cf90-4217-b476-643f3f38c2aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"Request\": \"Hello World!\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/HealthCheck","description":"<h3 id=\"description\">Description</h3>\n<p>The Health Check API can be used to check that the Client APIs are functioning as expected.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Request</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Request parameter to ensure the APIs are functioning as expected.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Response</td>\n<td><em>String</em></td>\n<td>The response sent back by the API when things are working as expected.</td>\n</tr>\n<tr>\n<td>ServerDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date/time when the response was sent.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Authentication","HealthCheck"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"06f1aed4-f0f9-4d2e-ae7c-dee611ec4130","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Request\": \"Hello World!\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/HealthCheck"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"Response\": \"Hello World!\",\n    \"ServerDateTime\": \"2020-03-26T17:32:25.0815308Z\"\n}"}],"_postman_id":"b4488bd8-cf90-4217-b476-643f3f38c2aa"},{"name":"Heartbeat","id":"4df69a87-aabd-47d3-b511-ccc946f831e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/heartbeat","description":"<h3 id=\"description\">Description</h3>\n<p>The Heartbeat API allows an integrator to test the current status of the DCBank web service API infrastructure. In addition to basic connectivity testing, this function will perform end-to-end application-layer testing to ensure all systems are available. If the Client receives the \"Hello from the server\" response, the API is working successfully.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["heartbeat"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"97efc5a4-85ef-4f15-b635-79a156a4eb57","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/heartbeat"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[],"cookie":[],"responseTime":null,"body":"Hello from the server"}],"_postman_id":"4df69a87-aabd-47d3-b511-ccc946f831e5"},{"name":"Login","id":"a98c6b20-39d8-4b77-bcfc-691c797c4985","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"UserName\": \"testUser\",\n    \"Password\": \"test123\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/Login","description":"<h2 id=\"description\">Description</h2>\n<p>DCBank's Login API is the first step required to connect to and continue working with DCBank APIs. In order to login, DCBank requires the Client to first select an authentication method and then submit this request via an email. DCBank supports two methods of authentication for API Testing:</p>\n<ol>\n<li><p><strong>Username and Password</strong> – if chosen, an invitation email will be sent to you by DCBank. This email will contain a username and temporary Password - valid for 1 day. You must change your password by using the Change Password API.</p>\n</li>\n<li><p><strong>Token</strong> – if chosen, there is no username and password employed in the testing process. A DCBank IT Specialist will contact you to provide the token information</p>\n</li>\n</ol>\n<p>The Client's chosen method of authentication request must be submitted by email to <a href=\"https://mailto:%7B%7BSupport%7D%7D\">API Support</a>. Please allow 24 hour response time – M-F 8am-5pm MST</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>API User's UserName</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Password</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>API User's Password</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-parameters\">Response Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DCBankApiAccessToken</td>\n<td><em>String</em></td>\n<td>Bearer token used for further API access.</td>\n</tr>\n<tr>\n<td>LastLoginDateTime</td>\n<td><em>String</em></td>\n<td>The last time these credentials were used to login to the APIs.</td>\n</tr>\n<tr>\n<td>ExpireAfterMinutes</td>\n<td><em>Numeric</em></td>\n<td>The number of minutes after which the Bearer token will expire.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"related-errors\">Related Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserLoginE987</td>\n<td>The Username and Password Provided Do Not Match.</td>\n</tr>\n<tr>\n<td>UserLoginE987</td>\n<td>The API User Has Expired.</td>\n</tr>\n<tr>\n<td>UserLoginE987</td>\n<td>The API User Is \"blocked\" or \"Inactive\".</td>\n</tr>\n<tr>\n<td>UserLoginE987</td>\n<td>The API User Parent Is \"blocked\", \"inactive\" Or Expired.</td>\n</tr>\n<tr>\n<td>UserLoginE987</td>\n<td>The API User Is Unathorized To Access This API Set.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","Authentication","Login"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e2b29f1e-fcca-4908-b2ae-df4bd4a735de","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"UserName\": \"{{username}}\",\n    \"Password\": \"{{password}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/Login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"DCBankApiAccessToken\": \"<your-secret-authBearer-token>\",\n    \"LastLoginDateTime\": \"2020-03-20T19:21:29.2878095\",\n    \"ExpireAfterMinutes\": 480,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a98c6b20-39d8-4b77-bcfc-691c797c4985"},{"name":"Logout","id":"3a271eab-7d75-437f-9bb3-4fcd8f92ada0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/Logout","description":"<h2 id=\"description\">Description</h2>\n<p>The Logout API is required if the Client employed the <strong>Username and Password</strong> authentication type. See <strong>Getting Started</strong> or <strong>Login</strong> API for more details.</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"related-errors\">Related Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LogoutE1</td>\n<td>Session Does Not Exist.</td>\n</tr>\n<tr>\n<td>LogoutE2</td>\n<td>The Session Has Already Been Terminated Or Expired.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Authentication","Logout"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4522bc14-71be-41a7-a5e4-b6728f952cb2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/Logout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3a271eab-7d75-437f-9bb3-4fcd8f92ada0"},{"name":"Iframe Login","id":"eda58c7f-4219-4b31-b451-1f97a9d68173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\":12345\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Authentication/ThirdPartyLoginIframeCard","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ThirdPartyLoginWithCardIdOp</td>\n<td>CardId invalid</td>\n</tr>\n<tr>\n<td>ThirdPartyLoginWithCardIdOp</td>\n<td>Request Is Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","Authentication","ThirdPartyLoginIframeCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eda58c7f-4219-4b31-b451-1f97a9d68173"}],"id":"27679573-8908-4413-b94b-6dd94d7c4d92","_postman_id":"27679573-8908-4413-b94b-6dd94d7c4d92","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Customer","item":[{"name":"Create New Customer","id":"f2fb4570-eb32-42a5-8ffa-223d9a7fbd4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"CustomerTypeCode\": \"P\",\n\t\"Email\": \"test1.test@dcbank.ca\",\n\t\"InteracEmail\": null,\n\t\"PhoneCountryId\": null,\n\t\"PhoneNumber\": null,\n\t\"FirstName\": \"test\",\n\t\"LastName\": \"test test\",\n\t\"BirthDate\": null,\n\t\"AddressLine1\": null,\n\t\"AddressLine2\": null,\n\t\"ZipCode\": null,\n\t\"CountryId\": null,\n\t\"ProvinceId\": null,\n\t\"CityId\": null,\n\t\"IdentificationMethodId\": null,\n\t\"IdentityTypeId\": null,\n\t\"IdentityNumber\": null,\n\t\"IdentityExpireDate\": null,\n\t\"LegalName\": null,\n\t\"CompanyName\": null,\n\t\"BusinessIdNumber\": null,\n\t\"RegistrationName\": \"test tests Inc.\",\n\t\"BusinessName\": null,\n\t\"RetailName\": null,\n\t\"ProgramList\": [\n\t\t\"EFT\"\n        // \"WALLET\"\n\t\t],\n\t\"FinancialInstitutionId\": \"3\",\n\t\"FinancialInstitutionBranchId\": \"19002\",\n\t\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The table below illustrates the available Customer Record Field Names.</p>\n<p><strong>V1.1 -</strong> Use V1.1 within the endpoint URL. Version 1.1 allows for the use of a new field OccupationId. OccupationId can be obtained from the endpoint /integrationapi/v1.0/Parameter/GetOccupationList</p>\n<p><em>This endpoint was deprecated on December 1,2025 and will be retired on June 1,2026.Consumers are advised to migrate to the new v2 customer endpoints.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>Client's unique customer identity number, if not supplied a number will be auto-generated. It must not start with a zero and may not be longer than seven digits in length.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><code>P</code> Individual Customer  <br /><code>C</code> Corporate Customer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProgramList</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><code>BILL</code> Bill Payment,  <br /><code>EFT</code> EFT Program,  <br /><code>ETRANSFER</code> Interac e-Transfer Program,  <br /><code>WALLET</code> Card and Account,  <br /><code>CDIC</code> Account,  <br /><code>CRDTRANSFER</code> Visa Direct.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer email address.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no phone number is supplied, or <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer interac email address.  <br />  <br /><strong>Required</strong> if Program List contains <code>ETRANSFER.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneCountryId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the Parameters -&gt; Address -&gt; Get Country List API.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's primary phone number. <strong>Required</strong> if <strong>ProgramList</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>ProgramList</strong> contains <code>WALLET</code> or <code>CDIC</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>P</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>P</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td><strong>Required</strong> if <strong>ProgramList</strong> contains <code>WALLET</code> or <code>CDIC</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>80</td>\n<td><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>  <br />  <br />Indicates AddressLine1</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine2</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>  <br />  <br />Indicates ZipCode</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Number</em></td>\n<td>4</td>\n<td><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>  <br />  <br />Indicates Country Id. Find Parameter Get Country List</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Number</em></td>\n<td>5</td>\n<td><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>  <br />  <br />Indicates Province Id. Find Parameter Get Province List by Country</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Number</em></td>\n<td>7</td>\n<td><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>  <br />  <br />Indicates City Id. Find Parameter Get City List by Province</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentificationMethodID</td>\n<td><em>Number</em></td>\n<td>15</td>\n<td>Use the <code>Id</code> value from the \"Parameters &gt; Identification &gt; Get Identification Method\" endpoint</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationTypeID</td>\n<td><em>Number</em></td>\n<td>40</td>\n<td>Use the <code>Id</code> value from the \"Parameters &gt; Identification &gt; Get Identification Type\" endpoint</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationNo</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customer's identification number</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentityExpirementDate</td>\n<td><em>Date</em></td>\n<td>9</td>\n<td>Customer's identification expiration date</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessIdNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RetailName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The account name for the Customer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>Id</code> value from the \"Parameter &gt; Account &gt; Get EFT Financial Institution\" endpoint. <strong>Required</strong> if <strong>ProgramList</strong> contains <code>EFT</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>Id</code> value from the \"Parameter &gt; Account &gt; Get EFT Financial Institution Branch\" endpoint. <strong>Required</strong> if <strong>ProgramList</strong> contains <code>EFT</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>External bank account number of the customer. <strong>Required</strong> if <strong>ProgramList</strong> contains <code>EFT</code></td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateCustomerE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateCustomerE2</td>\n<td>Client Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE3</td>\n<td>Customer Number Is Invalid.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Interac Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>CreateCustomerE4</td>\n<td>Financial Institution ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE5</td>\n<td>Transit Number Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE6</td>\n<td>Interac Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE2</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerE1</td>\n<td>Only Logged-In Users Can Register.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE3</td>\n<td>Customer Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE4</td>\n<td>Client Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE5</td>\n<td>Must Have At Least One Program.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE6</td>\n<td>Must Have At Least One Account.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE12</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE11</td>\n<td>A Customer With This Email Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE13</td>\n<td>Email Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE14</td>\n<td>Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE15</td>\n<td>Last Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE16</td>\n<td>Birth Date Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE17</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE18</td>\n<td>Business ID Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE19</td>\n<td>Business Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE20</td>\n<td>Company Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE21</td>\n<td>Registration Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE22</td>\n<td>Retail Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE23</td>\n<td>Phone Country Code Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE24</td>\n<td>Phone Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE25</td>\n<td>Identity Method Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE26</td>\n<td>Person Verifying Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE27</td>\n<td>Identity Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE28</td>\n<td>Identity Expiration Date Must Be Valid Within The Next 30 Days.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE29</td>\n<td>Identity Type Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE8</td>\n<td>A Customer With This Account Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE10</td>\n<td>A Customer With This Business Name, Company Name, Or Email Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckPrimaryAccountE1</td>\n<td>{ProgramType} Funding Account(s) Not Found. If You Want To Add A New Customer, You Have To Have A Funding Account For The(These) Program(s).</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Is Too Long.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Is Too Long. Please Enter A Maximum Of {Number} Digits.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE2</td>\n<td>Customer Already Defined With Same Customer Number.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE3</td>\n<td>Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>AccountNumberFoundE1</td>\n<td>Each Customer Must Have A Different External Account.</td>\n</tr>\n<tr>\n<td>ClientCustomerSaveCdicAccountE1</td>\n<td>CDIC Sub Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerSavePrepaidAccountE1</td>\n<td>Prepaid Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE1</td>\n<td>Program Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE2</td>\n<td>Payee Code Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE3</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE4</td>\n<td>Invalid Email Address.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE5</td>\n<td>Customer Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE6</td>\n<td>Customer Surname Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE7</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE8</td>\n<td>Customer Trade Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Customer Active Operation Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interac ADR Record Creation Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Active Interac User Cannot Be Found.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interec Main User Record Delete Operation Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Client Unique ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Email Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>AutoDeposit Account ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Client Customer ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Generate Participant ID Method Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Create Customer Etransfer Operation Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Active Interac User Cannot Be Found.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For More Valid Addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.1</td>\n<td>December 2019</td>\n<td>December 1st, 2025</td>\n<td>June 1st, 2026</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","CreateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fba7f2fc-bc84-4fe8-bf77-edc1f538096e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\n    \"CustomerTypeCode\": \"P\",\n    \"Email\": \"testallcustomer1@example.ca\",\n    \"InteracEmail\": \"testallcustomer1@example.ca\",\n    \"PhoneCountryId\": 38,\n    \"PhoneNumber\": 5436754356,\n    \"FirstName\": \"Test Customer\",\n    \"LastName\": \" For All Client\",\n    \"BirthDate\": \"1967-03-07\",\n    \"IdentificationMethodId\": null,\n    \"IdentificationTypeId\": null,\n    \"IdentificationNo\": null,\n    \"IdentityExpirementDate\": null,\n    \"LegalName\": null,\n    \"BusinessIdNumber\": null,\n    \"BusinessName\": null,\n    \"CompanyName\": null,\n    \"RegistrationName\": null,\n    \"RetailName\": null,\n    \"AccountName\": \"FGHFJHG AHJSI\",\n    \"FinancialInstitutionId\": 116,\n    \"FinancialInstitutionBranchId\": 7607,\n    \"AccountNumber\": 543564433,\n    \"ProgramList\": [\n        \"EFT\",\n        \"BILL\",\n        \"ETRANSFER\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 May 2020 23:59:54 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"348","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=eb8046a771af187481bd962f4b3b59093d134d8cb9f92ea86e26e730ef047fb2;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 20759,\n        \"CustomerNumber\": \"10540000138\",\n        \"CustomerName\": \"Test Customer  For All Client\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500033,\n        \"Email\": \"testallcustomer1@example.ca\",\n        \"BirthDate\": \"1967-03-07T00:00:00\",\n        \"PhoneNumber\": \"+15436754356\",\n        \"AddressLine1\": null,\n        \"AddressLine2\": null,\n        \"City\": null,\n        \"Province\": null,\n        \"Country\": null,\n        \"ZipCode\": null,\n        \"CustomerStatus\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"7b8f0905-c497-4272-aa74-c211fb4c3b66","name":"Create New Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\n    \"CustomerTypeCode\": \"P\",\n    \"Email\": \"ryandcbank07052@gmail.com\",\n    \"InteracEmail\":\"ryandcbank07052@gmail.com\",\n    \"FirstName\": \"Create\",\n    \"LastName\": \"Applicant\",\n    \"BirthDate\": \"1993-07-23\",\n    \"Gender\": \"M\",\n    \"CellPhoneCountryCode\": \"38\",\n    \"CellPhoneNumber\": \"5045117644\",\n    \"OfficePhoneCountryCode\": \"1\",\n    \"OfficePhoneNumber\": \"5678901785\",\n    \"HomePhoneCountryCode\": \"1\",\n    \"HomePhoneNumber\": \"5056787804\",\n    \"ProgramList\": [\n        \"WALLET\",\n        \"ETRANSFER\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Jul 2023 19:31:45 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.23.4","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 20184168,\n        \"CustomerNumber\": \"10020077504\",\n        \"DcbCustomerNumber\": \"10020077504\",\n        \"CustomerName\": \"Create Applicant\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500001,\n        \"Email\": \"ryandcbank07052@gmail.com\",\n        \"BirthDate\": \"1993-07-23T00:00:00\",\n        \"PhoneNumber\": null,\n        \"AddressLine1\": null,\n        \"AddressLine2\": null,\n        \"City\": null,\n        \"Province\": null,\n        \"Country\": null,\n        \"ZipCode\": null,\n        \"CustomerStatus\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"f2fb4570-eb32-42a5-8ffa-223d9a7fbd4e"},{"name":"Create New Customer V2","id":"faa64061-3d65-45f1-bccc-2dce8b1fc053","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    //\"customerNumber\": \"\",\n    \"customerTypeCode\": \"P\",\n    \"IntendedUseId\": null,\n    \"IsCustomerPep\": null,\n    \"email\": \"anton.palchyk+114@dcbank.ca\",\n    \"interacEmail\": \"anton.palchyk+114@dcbank.ca\",\n    \"mobilePhoneCountryId\": 38,\n    \"mobilePhoneNumber\": \"5678953423\",\n    \"homePhoneCountryId\": null,\n    \"homePhoneNumber\": null,\n    \"firstName\": \"Fern1\",\n    //\"middleName\": \"Brad\",\n    \"lastName\": \"Vint \",\n    \"birthDate\": \"2025-08-20\",\n    \"addressLine1\": \"7360 Meridian Road NE\",\n    //\"addressLine2\": \"addressLine2\",\n    \"cityId\": \"10107\",\n    \"countryId\": \"38\",\n    \"provinceId\": \"663\",\n    \"postalCode\": \"T2A 2N7\",\n    //\"mailingAddressLine1\": \"153 EvansparkCircle NW\",\n    //\"mailingAddressLine2\": \"153 EvansparkCircle NW\",\n    //\"mailingCityId\": \"10107\",\n    //\"mailingCountryId\": 38,\n    //\"mailingProvinceId\": \"663\",\n    //\"mailingPostalCode\": \"T3P0A7\",\n    //\"mailingPoBox\": \"POBox2345\",\n    \"occupationId\": \"25026\",\n    \"identificationMethodId\": 106682,\n    \"identityTypeId\": 96279,\n    \"identityVerificationDate\": \"2025-08-20\",\n    \"identityPlaceOfIssue\": \"10093\",\n    \"countryOfIssueId\": \"38\",\n    \"provinceOfIssueId\": \"664\",\n    \"identityNumber\": 12345,\n    \"identityExpireDate\": \"2025-08-20\",\n    //\"creditAgencyId\": 1086,\n    //\"creditFileNumber\": \"1234\",\n    //\"reliableSource1Name\": \"Ferickc\",\n    //\"reliableSource2Name\": \"Dravid\",\n    //\"reliableSource1Number\": \"11111\",\n    //\"reliableSource2Number\": \"2222222\",\n    //\"legalName\": \"Warren Warew\",\n    //\"businessIdNumber\": \"1434\",\n    //\"businessName\": \"Real estate\",\n    //\"companyName\": \"Vintage Villa\",\n    //\"registrationName\": \"Housing Inc.\",\n    //\"retailName\": \"Show HomesShow HomesShow HomesR\",\n    \"programList\": [\n        \"ETRANSFER\"\n    ],\n    \"accountName\": \"EFT\",\n    \"financialInstitutionId\": 46,\n    \"financialInstitutionBranchId\": 14829,\n    \"accountNumber\": \"543564435\",\n    \"applicantId\": 0,\n    \"canadianTaxResident\": true,\n    \"SIN\": \"12345657\",\n    \"AmericanTaxResident\": true,\n    \"TIN\": \"987654321\",\n    //\"AmericanHasNoTIN\": null,\n    //\"AmericanNoTinReasonId\": null,\n    //\"AmericanNoTinOtherReason\": null,\n    //\"ForeignTaxResident\": true,\n    //\"FTIN\": \"22222222222\",\n    //\"ForeignHasNoFTIN\": false,\n    //\"ForeignNoFtinReasonId\": null,\n    //\"ForeignNoFtinOtherReason\": null\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v2.0/Customer/CreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The table below illustrates the available Customer Record Field Names.</p>\n<p><em><strong>New parameters introduced in V2.0 are highlighted in the table.</strong></em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/Conditional</th>\n<th><strong>Condition</strong></th>\n<th>Required to Create card</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Client's unique customer identity number.  <br />If not supplied, a number will be auto-generated. It must not start with a <strong>zero</strong> and may not be longer than <strong>eleven</strong> digits in length.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>Alphabetic</em></td>\n<td>1</td>\n<td>Types of customer profiles:  <br /><code>P</code> Individual Customer  <br /><code>C</code> Corporate Customer</td>\n<td>Required</td>\n<td></td>\n<td>yes</td>\n</tr>\n<tr>\n<td><em><strong>IntendedUseId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Identifier of the customer’s intended use or purpose of the account. Can be obtained using the <strong>Parameter -&gt; Intended Use -&gt; Get Intended Use List</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td><em><strong>IsCustomerPep</strong></em></td>\n<td>Boolean</td>\n<td></td>\n<td>Indicates whether the customer is a Politically Exposed Person (PEP)</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>ProgramList</td>\n<td><em>Alphabetic</em></td>\n<td>25</td>\n<td>List of programs offered to customers:  <br /><code>BILL</code> - Bill Payment  <br /><code>EFT</code> - EFT Program  <br /><code>ETRANSFER</code> - Interac Etransfer Program  <br /><code>WALLET</code> - Card and Account  <br /><code>CDIC</code> - Account  <br /><code>CRDTRANSFER</code> - Visa Direct</td>\n<td>Required</td>\n<td></td>\n<td>yes</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Customer email address.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no phone number is supplied. OR <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC.</code></td>\n<td></td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Customer interac email address.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER.</code></td>\n<td></td>\n</tr>\n<tr>\n<td>MobilePhoneCountryId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Address -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied. OR <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's primary phone number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied. OR <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>HomePhoneCountryId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Address -&gt; Get Country List</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>HomePhoneNumber</strong></em></td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's home phone number.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>Alphabetic</em></td>\n<td>25</td>\n<td>Customer's first name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code>.</td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>Alphabetic</em></td>\n<td>30</td>\n<td>Customer's middle name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>Alphabetic</em></td>\n<td>25</td>\n<td>Customer's last name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code>.</td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-MM-dd</td>\n<td>Customer's birth date.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Customer's address, line 1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Customer's address, line 2.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indiciates the customer's postal/zip code.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates the customer's Country ID. Can be obtained using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the customer's Province ID. Can be obtained using the <strong>Parameter -&gt; Get Province List by Country</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the customer's City ID. Can be obtained using the <strong>Parameter -&gt; Get City List by Province</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td><em><strong>MailingAddressLine1</strong></em></td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer's mailing address line 1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingAddressLine2</strong></em></td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer's mailing address line 2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingPostalCode</strong></em></td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates the customer's mailing postal code.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingCountryId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates the customer's mailing Country ID. This can be obtained using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingProvinceId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the customers mailing Province ID. This can be obtained using the <strong>Parameter -&gt; Get Province List by Country</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingCityId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates customer's mailing City ID. This can be obtained using the <strong>Parameter -&gt; Get City List by Province</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingPoBox</strong></em></td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Indicates the customer's P.O. Box.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td>identificationMethodId</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>ID of the identification method.  <br />Use the <code>ID</code> value from the <strong>Parameter -&gt; Identification -&gt; Get Identification Method</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>identityTypeId</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>The ID number of the customer's type of identification.  <br />Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Type</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Dual Process Method\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification verification date.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Credit file\", \"Dual Process Method\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Customer's identification place of issue.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Dual Process Method\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfIssueId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates the Country ID of Issue. This can be obtained using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ProvinceOfIssueId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the Province ID of Issue. This can be obtained using the <strong>Parameter -&gt; Get Province List by Country</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityNumber</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>Customer's identification number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification expiration date.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>CreditAgencyId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td><strong>Indicates</strong> Name Canadian Credit Bureau or Third-party Vendor.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Credit file\".  <br />  <br />Use the <code>ID</code> value from the <strong>Parameter -&gt; CreditAgency -&gt; Get Credit Agency List</strong> API.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>CreditFileNumber</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Indicates Credit File Number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Credit file\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource1Name</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>indicates Name of Reliable Source #1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource2Name</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates Name of Reliable Source #2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource1Number</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Indicates the Number of Reliable Source #1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource2Number</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Indicates Number of Reliable Source #2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>Customer's corporate legal name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td>Corporate-Yes</td>\n</tr>\n<tr>\n<td>BusinessIdNumber</td>\n<td><em>Alphanumeric</em></td>\n<td>25</td>\n<td>Customer's corporate business ID number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>Customer's corporate business name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>Customer's corporate company name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>Alphanumeric</em></td>\n<td>30</td>\n<td>Customer's corporate registration name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>RetailName</td>\n<td><em>Alphanumeric</em></td>\n<td>30</td>\n<td>Customer's corporate retail name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>Alphabetic</em></td>\n<td>40</td>\n<td>The account name for the Customer.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution Branch</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>External bank account number of the customer.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>CustomerLimitProfileId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td></td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>OccupationId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>17</td>\n<td>Occupation ID. Can be obtained using the <strong>Parameter -&gt; Occupation -&gt; Get Occupation List</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>CanadianTaxResident</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the card holder is a Canadian Tax Resident.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>SIN</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>15</td>\n<td>Canadian Social Insurance Number.</td>\n<td>Conditional</td>\n<td>This value can be provided only if Canadian Tax Resident is True AND American Tax Resident is True or Foreign Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanTaxResident</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the card holder is an American Resident.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>TIN</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>15</td>\n<td>American Tax Identification Number.</td>\n<td>Conditional</td>\n<td>This value can be provided only if American Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanHasNoTIN</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the American has no Tax Identification Number.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Conditional</td>\n<td>This value can be set to true only if American Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanNoTinReasonId</strong></em></td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>Use the ID value from the <strong>Parameter -&gt; Tax Questionnaire -&gt; Get Reason List</strong> API.</td>\n<td>Conditional</td>\n<td>Required if American Tax Resident has No TIN is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanNoTinOtherReason</strong></em></td>\n<td><em>String</em></td>\n<td>60</td>\n<td><strong>Required</strong> if <strong>AmericanNoTinReasonId</strong> = \"Other Reason\".</td>\n<td>Conditional</td>\n<td>Required if AmericanNoTinReasonId = \"Other Reason\".</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignTaxResident</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the card holder is a Foreign Resident or not.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>FTIN</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>15</td>\n<td>Foreign Tax Identification Number.</td>\n<td>Conditional</td>\n<td>This value can only be provided if Foreign Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignHasNoFTIN</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates Foreign Resident has no Tax Identification Number.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Conditional</td>\n<td>This value can be set to True only if Foreign Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignNoFtinReasonId</strong></em></td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>Use the ID value from the <strong>Parameter -&gt; Tax Questionnaire -&gt; Get Reason List</strong> API.</td>\n<td>Conditional</td>\n<td>Required if Foreign tax resident has No FTIN = True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignNoFtinOtherReason</strong></em></td>\n<td><em>String</em></td>\n<td></td>\n<td><strong>Required</strong> if <strong>Foreign No Ftin Reason ID</strong> = \"Other Reason\".</td>\n<td>Conditional</td>\n<td>Required if Foreign tax resident No Ftin Reason ID = \"Other Reason\".</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"error-codes\">Error Codes</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateCustomerE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateCustomerE2</td>\n<td>Client Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE3</td>\n<td>Customer Number Is Invalid.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Interac Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>CreateCustomerE4</td>\n<td>Financial Institution ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE5</td>\n<td>Transit Number Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE6</td>\n<td>Interac Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE2</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerE1</td>\n<td>Only Logged-In Users Can Register.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE3</td>\n<td>Customer Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE4</td>\n<td>Client Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE5</td>\n<td>Must Be At Least One Program.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE6</td>\n<td>Must Be At Least One Account.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE12</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE11</td>\n<td>There is a customer with the same e-mail!</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE13</td>\n<td>Email Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE14</td>\n<td>Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE15</td>\n<td>Last Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE16</td>\n<td>Birth Date Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE17</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE18</td>\n<td>Business Id Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE19</td>\n<td>Business Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE20</td>\n<td>Company Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE21</td>\n<td>Registration Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE22</td>\n<td>Retail Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE23</td>\n<td>Phone Country Code Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE24</td>\n<td>Phone Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE25</td>\n<td>Identity Method Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE26</td>\n<td>Person Verifying Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE27</td>\n<td>Identity Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE28</td>\n<td>Identity Expiration Date Must Still Be Valid For The Next 30 Days.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE29</td>\n<td>Identity Type Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE8</td>\n<td>A Customer With This Account Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE10</td>\n<td>A Customer With This Business Name, Company Name, Or Email Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckPrimaryAccountE1</td>\n<td>Program Type Funding Account(s) Not Found. If You Wish To Add A New Customer, You Must Have A Funding Account For The(These) Program(s).</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Too Long.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Is Too Long. Please Enter a Number That Does Not Exceed Limits.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE2</td>\n<td>A Customer With This Customer Number Already Exists.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE3</td>\n<td>Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>AccountNumberFoundE1</td>\n<td>Each Customer Must Have Different External Accounts.</td>\n</tr>\n<tr>\n<td>ClientCustomerSaveCdicAccountE1</td>\n<td>CDIC Sub Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerSavePrepaidAccountE1</td>\n<td>Prepaid Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE1</td>\n<td>Program Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE2</td>\n<td>Payee Code Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE3</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE4</td>\n<td>Invalid Email Address.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE5</td>\n<td>Customer Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE6</td>\n<td>Customer Surname Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE7</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE8</td>\n<td>Customer Trade Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Customer Active Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interac ADR Record Creation Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Active Interac User Cannot Be Found.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interec Main User Other Record Delete Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Client Unique ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Email Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Auto Deposit Account ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Client Customer ID Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Generate Participant ID Method Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Create Customer Etransfer Operation Has Failed.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Active Interac User Cannot Be Found.</td>\n</tr>\n<tr>\n<td>CreateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.  <br />If the error persists, please contact API Support for assistance:<a href=\"https://mailto:apisupport@dcbank.ca\">apisupport@dcbank.ca</a></td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For More Valid Addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.  <br />If the error persists, please contact API Support for assistance:<a href=\"https://mailto:apisupport@dcbank.ca\">apisupport@dcbank.ca</a></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"kycscreeningerror04-error-list\"><strong>KycScreeningError04 Error List</strong></h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Error Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddressLine1</td>\n<td>Address Line One is required.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td>P.O. Box addresses are not allowed.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td>P.O. Box addresses are not allowed.</td>\n</tr>\n<tr>\n<td>City</td>\n<td>City is required.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td>Province is required.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country is required.</td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td>Post Code is required.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v2.0","Customer","CreateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a9aaed7d-a1c0-4388-bcbb-196a67e783a2","name":"Create New Customer V2","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  //\"customerNumber\": \"20492946\",\n  \"customerTypeCode\": \"P\",\n  \"email\": \"Emailer8@gmail.com\",\n \"interacEmail\": \"kalai.dhanabalan+15@dcbank.ca\",\n  \"mobilePhoneCountryId\":null,\n  \"mobilePhoneNumber\": null,\n  \"homePhoneCountryId\":38,\n  \"homePhoneNumber\": \"5678953423\",\n  \"firstName\": \"Greg\",\n  //\"middleName\": \"Olive\",\n \"lastName\": \"hiller\",\n  \"birthDate\": \"2025-08-20\",\n  \"IntendedUseId\":923166,\n  \"IsCustomerPep\":true,\n  \"addressLine1\": \"153 Evanspark Cir NW \",\n  //\"addressLine2\": \"PO BOX 6578\",\n  \"cityId\": 10107,\n  \"countryId\": 38,\n  \"provinceId\": 663,\n  \"postalCode\": \"T3P 0A7\",\n  \"PoBox\": \"1234587543290878\",\n  \"mailingAddressLine1\": \"736 Meridian Rd NE\",\n  //\"mailingAddressLine2\": \"\",\n  \"mailingCityId\": 10107,\n \"mailingCountryId\": 38,\n  \"mailingProvinceId\": \"663\",\n  \"mailingPostalCode\": \"T2A 2N7\",\n//\"mailingPoBox\": \"PO BOX\",\n  //\"occupationId\": \"25026\",\n//   \"identificationMethodId\":106682 ,\n//   \"identityTypeId\": 96279,\n//   \"identityVerificationDate\": \"2025-08-20\",\n//   \"identityPlaceOfIssue\": \"10093\",\n//   \"countryOfIssueId\": \"38\",\n//   \"provinceOfIssueId\": \"664\",\n//   \"identityNumber\":12345,\n//   \"identityExpireDate\": \"2025-08-20\",\n  //\"creditAgencyId\": 1086,\n  //\"creditFileNumber\": \"1234\",\n  //\"reliableSource1Name\": \"Ferickc\",\n  //\"reliableSource2Name\": \"Dravid\",\n  //\"reliableSource1Number\": \"11111\",\n // \"reliableSource2Number\": \"2222222\",\n \"legalName\": \"Warren Warew\",\n  \"businessIdNumber\": \"1434\",\n  \"businessName\": \"Real estate\",\n  \"companyName\": \"Vintage Villa\",\n  \"registrationName\": \"Housing Inc.\",\n \"retailName\": \"Show Homes\",\n  \"programList\": [\n    \"WALLET\"\n  ]\n//   \"accountName\": \"EFT\",\n//   \"financialInstitutionId\": 46,\n//   \"financialInstitutionBranchId\": 14829,\n//   \"accountNumber\": \"543564435\",\n//   \"applicantId\": 0,\n//    \"canadianTaxResident\": true,\n//   \"SIN\": \"12345657\",\n  //\"AmericanTaxResident\":true,\n//   \"TIN\": \"111111111\"\n  //\"AmericanHasNoTIN\": null,\n  //\"AmericanNoTinReasonId\": null,\n  //\"AmericanNoTinOtherReason\": null,\n//   \"ForeignTaxResident\": true,\n//    \"FTIN\": \"22222222222\",\n  //\"ForeignHasNoFTIN\": true,\n  //\"ForeignNoFtinReasonId\": null,\n  //\"ForeignNoFtinOtherReason\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v2.0/Customer/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 06 Nov 2025 20:01:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 20493644,\n        \"CustomerNumber\": \"10010002566\",\n        \"DcbCustomerNumber\": \"10010002566\",\n        \"CustomerName\": \"Greg hiller\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500000,\n        \"Email\": \"Emailer8@gmail.com\",\n        \"BirthDate\": \"2025-08-20T00:00:00\",\n        \"PhoneNumber\": null,\n        \"AddressLine1\": \"153 Evanspark Cir NW \",\n        \"AddressLine2\": null,\n        \"City\": \"Calgary\",\n        \"Province\": \"Alberta\",\n        \"Country\": \"Canada\",\n        \"ZipCode\": \"T3P 0A7\",\n        \"CustomerStatus\": \"Active\",\n        \"KycStatus\": \"In review\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"faa64061-3d65-45f1-bccc-2dce8b1fc053"},{"name":"Get Customer By ID","id":"8f424f8d-b6da-44ab-aace-8f54287d6a17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"21223","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/GetByCustomerId","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Customer by ID API retrieves the specific Customer's information using the CustomerId value.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Unique ID of the customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>Unique customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer Number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>Alphabetical</em></td>\n<td>Customer full name. First, middle, last.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>Alphabetical</em></td>\n<td>Type of customer. Personal or Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>Unique client ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>Alphanumeric</em></td>\n<td>Customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>Customer birthdate.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>Customer phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>Alphanumeric</em></td>\n<td>Customer address, line 1.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>Alphanumeric</em></td>\n<td>Customer address, line 2.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>Alphabetical</em></td>\n<td>Customer city of residence.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>Alphabetical</em></td>\n<td>Customer province of residence.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>Alphabetical</em></td>\n<td>Customer country of residence.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>Alphanumeric</em></td>\n<td>Customer zipcode of residence.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>Alphabetical</em></td>\n<td>Customer status. Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","GetByCustomerId"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8fca6153-bd71-4f11-9a69-b371ca5bce5e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"21223","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/GetByCustomerId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:37:38 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"315","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 21223,\n        \"CustomerNumber\": \"10600000021\",\n        \"CustomerName\": \"Craig  Test\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500034,\n        \"Email\": \"craig-test@example.ca\",\n        \"BirthDate\": null,\n        \"PhoneNumber\": \"+1 5555555555\",\n        \"AddressLine1\": null,\n        \"AddressLine2\": null,\n        \"City\": null,\n        \"Province\": null,\n        \"Country\": null,\n        \"ZipCode\": null,\n        \"CustomerStatus\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8f424f8d-b6da-44ab-aace-8f54287d6a17"},{"name":"Update Customer Information","id":"65a8af5b-b146-4e32-b55b-997208886122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerTypeCode\": \"C\",\r\n  \"customerId\": 20256137,\r\n  \"email\": \"sqlreport2@gmail.com\",\r\n  \"interacEmail\": \"\",\r\n  \"phoneCountryId\": 3,\r\n  \"Phonenumber\": 2347891237,\r\n  \"financialInstitutionId\": 46,\r\n  \"financialInstitutionBranchId\": 14829,\r\n  \"accountNumber\": 366427797,\r\n  \"programList\": [\r\n    \"WALLET\"\r\n  ],\r\n  \"legalName\": \"statement\",\r\n  \"businessIdNumber\": 4195,\r\n  \"businessName\": \"column\",\r\n  \"registrationName\": \"testing\",\r\n  \"retailName\": \"Retail\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/UpdateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Customer Information API is used to update general Customer information such as email address, phone number, and identification number. As well, the Update Customer Information API can be employed to add/remove services available to the Customer. For example, if the Client wants to add the Bill Payment service to a customer (which currently only has e-Transfer service). Please use this API rather than creating a second customer record.</p>\n<p><em>This endpoint was deprecated on December 1,2025 and will be retired on June 1,2026.Consumers are advised to migrate to the new v2 customer endpoints.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Use the <code>Id</code> value from the <strong>Customer -&gt; Search Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><code>P</code> Individual Customer  <br /><code>C</code> Corporate Customer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProgramList</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><code>BILL</code> Bill Payment  <br /><code>EFT</code> EFT Program  <br /><code>ETRANSFER</code> Interac e-Transfer Program  <br /><code>WALLET</code> Card and Account  <br /><code>CDIC</code> Account  <br /><code>CRDTRANSFER</code> Visa Direct</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer email address.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>ETRANSFER</code> and no phone number is supplied, or <strong>ProgramList</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer interac email address. <strong>Required</strong> if Program List contains <code>ETRANSFER</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneCountryId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>Id</code> value from the \"Parameters &gt; Address &gt; Get Country List\" endpoint.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>ProgramList</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's primary phone number.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>ProgramList</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>P</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>P</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>Date</em></td>\n<td>9</td>\n<td><strong>Required</strong> if <strong>ProgramList</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine1  <br />  <br /><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates Postal/Zip Code.  <br />  <br /><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Country ID. This can be obtained using the <strong>Parameter -&gt; Get Country List</strong> API.  <br />  <br /><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates Province ID. This can be obtained using the <strong>Parameter -&gt; Get Province List by Country</strong> API.  <br />  <br /><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates City ID. This can be obtained using the <strong>Parameter -&gt; Get City List by Province</strong> API.  <br />  <br /><strong>Required</strong> if **ProgramList  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentificationMethodID</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Method</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationTypeID</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Type</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationNo</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customer's identification number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentityExpirementDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification expiration date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessIdNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RetailName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>CustomerTypeCode</strong> contains <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The account name for the Customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> API.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>EFT</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution Branch</strong> API.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>EFT</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>External bank account number of the customer.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>EFT</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateCustomerE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>UpdateEtransferPayeeE3</td>\n<td>Payee Type Is Invalid.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Interac Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE4</td>\n<td>Financial Institution ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE5</td>\n<td>Transit Number Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE6</td>\n<td>Interac Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE2</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerE1</td>\n<td>Only Logged-In Users Can Register.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE3</td>\n<td>Customer Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE4</td>\n<td>Client Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE5</td>\n<td>Must Have At Least One Program.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE6</td>\n<td>Must Have At Least One Account.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE12</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE11</td>\n<td>A Customer With This Email Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE13</td>\n<td>Email Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE14</td>\n<td>Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE15</td>\n<td>Last Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE16</td>\n<td>Birth Date Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE17</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE18</td>\n<td>Business ID Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE19</td>\n<td>Business Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE20</td>\n<td>Company Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE21</td>\n<td>Registration Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE22</td>\n<td>Retail Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE23</td>\n<td>Phone Country Code Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE24</td>\n<td>Phone Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE25</td>\n<td>Identity Method Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE26</td>\n<td>Person Verifying Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE27</td>\n<td>Identity Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE28</td>\n<td>Identity Expiration Date Must Still Be Valid Within The Next 30 Days.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE29</td>\n<td>Identity Type Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE8</td>\n<td>A Customer With This Account Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE10</td>\n<td>A Customer With This Business Name, Company Name, Or Email Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckPrimaryAccountE1</td>\n<td>{ProgramType} Funding Account(s) Not Found. New Customers Require A Funding Account For This(These) Program(s).</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Exceeds Max Length.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Exceeds Max Length. Please Enter A Maximum Of {Number} Digits.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE2</td>\n<td>A Customer With This Customer Number Already Exists.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE3</td>\n<td>Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>AccountNumberFoundE1</td>\n<td>Each Customer Must Have A Different External Account.</td>\n</tr>\n<tr>\n<td>ClientCustomerSaveCdicAccountE1</td>\n<td>CDIC Sub Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerSavePrepaidAccountE1</td>\n<td>Prepaid Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE1</td>\n<td>Program Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE2</td>\n<td>Payee Code Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE3</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE4</td>\n<td>Invalid Email Address.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE5</td>\n<td>Customer Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE6</td>\n<td>Customer Surname Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE7</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE8</td>\n<td>Customer Trade Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Customer Active Operation Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interac ADR Record Creation Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Active Interac User Could Not Be Found.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interec Main User Other Record Delete Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Client Unique ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Email Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>AutoDeposit Account ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Client Customer ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Generate Participant ID Method Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Create Customer Etransfer Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Active Interac User Could Not Be Found.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address Verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For More Valid Addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>December 1st, 2025</td>\n<td>June 1st, 2026</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","UpdateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4f352238-3e22-4edf-b7db-5a4c5c51146e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"(Required) ","type":"text"},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\n    \"CustomerId\": 20338,\n    \"CustomerNumber\": \"10030000068\",\n    \"CustomerTypeCode\": \"P\",\n    \"Email\": \"slyviaplath@gmail.com\",\n    \"PhoneCountryId\": 38,\n    \"PhoneNumber\": \"5467358764\",\n    \"FirstName\": \"Slyvia\",\n    \"LastName\": \"Plath\",\n    \"BirthDate\": \"2020-01-08\",\n    \"IdentificationMethodId\": 2400,\n    \"VerifyingPersonId\": 24927,\n    \"IdentificationTypeId\": 96279,\n    \"IdentificationNo\": \"45647736\",\n    \"IdentityExpirementDate\": \"2022-11-17\",\n    \"LegalName\": \"\",\n    \"BusinessIdNumber\": \"\",\n    \"BusinessName\": \"\",\n    \"CompanyName\": \"\",\n    \"RegistrationName\": \"\",\n    \"RetailName\": \"\",\n    \"ProgramList\": [\n        \"BILL\",\n        \"WALLET\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/UpdateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"65a8af5b-b146-4e32-b55b-997208886122"},{"name":"Update Customer Information V2","id":"5ea351ae-2aa5-43fa-9218-201a44fdf1e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerId\":20626599,\r\n  //\"IntendedUseId\": null,\r\n    // \"IsCustomerPep\": false,\r\n    // \"email\": \"kalaiTester45@gmail.com\",\r\n    // \"interacEmail\": \"Interactest1@gmail.com\",\r\n    // \"mobilePhoneCountryId\":38 ,\r\n     //\"mobilePhoneNumber\": 5000000000\r\n    //  \"homePhoneCountryId\": 38,\r\n    //  \"homePhoneNumber\": 5875003000\r\n     //\"firstName\": \"Tron\",\r\n    //\"middleName\": \"Brad\",\r\n     //\"lastName\": \"Zen\",\r\n//     \"Gender\":\"F\",\r\n//    \"birthDate\": \"1987-05-11\",\r\n//      \"addressLine1\": \"736 Meridian Road NE\",\r\n//     \"addressLine2\": \"addressLine2\",\r\n//      \"cityId\": \"10107\",\r\n//      \"countryId\": \"38\",\r\n//       \"provinceId\": \"663\",\r\n//      \"postalCode\": \"T2A 2N7\",\r\n    // \"mailingAddressLine1\": \"736 Meridian Rd NE\",\r\n    // //\"mailingAddressLine2\": \"153 EvansparkCircle NW\",\r\n    // \"mailingCityId\": \"10107\",\r\n    // \"mailingCountryId\": 38,\r\n    // \"mailingProvinceId\": \"663\",\r\n    // \"mailingPostalCode\": \"T2A 2N7\"\r\n    //\"mailingPoBox\": \"POBox2345\",\r\n    // \"occupationId\": \"25026\",\r\n    // \"identificationMethodId\": 106682,\r\n    // \"identityTypeId\": 96279,\r\n    // \"identityVerificationDate\": \"2025-08-20\",\r\n    // \"identityPlaceOfIssue\": \"10093\",\r\n    // \"countryOfIssueId\": \"38\",\r\n    // \"provinceOfIssueId\": \"664\",\r\n    // \"identityNumber\": 12345,\r\n    // \"identityExpireDate\": \"2025-08-20\",\r\n    //\"creditAgencyId\": 1086,\r\n    //\"creditFileNumber\": \"1234\",\r\n    //\"reliableSource1Name\": \"Ferickc\",\r\n    //\"reliableSource2Name\": \"Dravid\",\r\n    //\"reliableSource1Number\": \"11111\",\r\n    //\"reliableSource2Number\": \"2222222\",\r\n      \"legalName\": \"Azure sen\",\r\n      \"businessIdNumber\": \"RT5654776\",\r\n      \"businessName\": \"Whirl Tech\",\r\n      \"companyName\": \"IVR Analysis\",\r\n      \"registrationName\": \"Skying Tech\",\r\n      \"retailName\": \"Gallon kg\",\r\n     \"programList\": [\r\n        \"WALLET\",\r\n    //     \"EFT\",\"ETRANSFER\"\r\n     ]\r\n    // \"accountName\": \"EFT\",\r\n    //  \"financialInstitutionId\": 46,\r\n    //  \"financialInstitutionBranchId\": 14829,\r\n    //   \"accountNumber\": \"090123678\",\r\n    // // \"applicantId\": 0,\r\n    //  //\"canadianTaxResident\": true,\r\n    //  \"SIN\": \"12345657\",\r\n    //  \"AmericanTaxResident\": true,\r\n    //  \"TIN\": \"987654321\",\r\n    //\"AmericanHasNoTIN\": null,\r\n    //\"AmericanNoTinReasonId\": null,\r\n    //\"AmericanNoTinOtherReason\": null,\r\n    //\"ForeignTaxResident\": true,\r\n    //\"FTIN\": \"22222222222\",\r\n    //\"ForeignHasNoFTIN\": false,\r\n    //\"ForeignNoFtinReasonId\": null,\r\n    //\"ForeignNoFtinOtherReason\": null\r\n}\r\n\r\n }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v2.0/Customer/UpdateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Customer Information API is used to update general Customer information such as email address, phone number, and identification number. As well, the Update Customer Information API can be employed to add/remove services available to the Customer. For example, if the Client wants to add the Bill Payment service to a customer (which currently only has e-Transfer service).<br />Please use this API rather than creating a second customer record.</p>\n<p><em><strong>Partial Update Rule:</strong></em></p>\n<p>Send only the fields that require updates; set all other fields to null.<br />null values indicate no change and existing values will be retained automatically.<br />Only non-null fields are updated by the endpoint.</p>\n<p><em><strong>New parameters introduced in V2.0 are highlighted in the table.</strong></em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n<th><strong>Condition</strong></th>\n<th>Required to Create card</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>The unique customer ID. Use the <code>ID</code> value from the <strong>Customer -&gt; Search Customer</strong> API.</td>\n<td>Required</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>IntendedUseId</strong></em></td>\n<td>Numeric</td>\n<td>7</td>\n<td>Identifier of the customer’s intended use or purpose of the account. Can be obtained using the <strong>Parameter -&gt; Intended Use -&gt; Get Intended Use List</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td><em><strong>IsCustomerPep</strong></em></td>\n<td>Boolean</td>\n<td></td>\n<td>Indicates whether the customer is a Politically Exposed Person (PEP)</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>ProgramList</td>\n<td><em>Alphabetic</em></td>\n<td>25</td>\n<td>Programs offered to customers:  <br /><code>BILL</code> - Bill Payment  <br /><code>EFT</code> - EFT Program  <br /><code>ETRANSFER</code> - Interac Etransfer Program  <br /><code>WALLET</code> - Card and Account  <br /><code>CDIC</code> - Account  <br /><code>CRDTRANSFER</code> - Visa Direct</td>\n<td>Optional</td>\n<td></td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Customer email address.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no phone number is supplied. OR <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Customer interac email address.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>MobilePhoneCountryId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Address -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied. OR <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's primary phone number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied. OR <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>HomePhoneCountryId</strong></em></td>\n<td>Numeric</td>\n<td>3</td>\n<td>Use the ID value from the Parameter -&gt; Address -&gt; Get Country List API.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>HomePhoneNumber</strong></em></td>\n<td>Numeric</td>\n<td>10</td>\n<td>Customer's home phone number.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>Alphabetic</em></td>\n<td>25</td>\n<td>Customer's first name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code>.</td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>Alphabetic</em></td>\n<td>30</td>\n<td>Customer's middle name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>Alphabetic</em></td>\n<td></td>\n<td>Customer's last name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code>.</td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's date of birth.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>WALLET</code> or <code>CDIC</code>.</td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Customer's address, line 1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Customer's address, line 2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Customer's postal/zip code.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates the customer's Country ID. Obtained using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the customer's Province ID. Obtained using the <strong>Parameter -&gt; Get Province List by Country</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the customer's City ID. Obtained using the <strong>Parameter -&gt; Get City List by Province</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if **Program List  <br />**contains <code>WALLET</code> or <code>CRDTRANSFER</code>.  <br />  <br /><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td>Individual/Corporate-Yes</td>\n</tr>\n<tr>\n<td><em><strong>MailingAddressLine1</strong></em></td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer's mailing address, line 1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingAddressLine2</strong></em></td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer's mailing address, line 2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingPostalCode</strong></em></td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates the customer's mailing postal code.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingCountryId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates the customer's mailing Country ID. Obtained using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingProvinceId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the customer's mailing Province ID. Find Parameter Get Province List by Country.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingCityId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the customer's mailing City ID. Obtained using the <strong>Parameter -&gt; Get City List by Province</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>MailingPoBox</strong></em></td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Indicates the customer's mailing P.O. Box.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if you add part of an address you need to add it all</td>\n<td></td>\n</tr>\n<tr>\n<td>identificationMethodId</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Identification -&gt; Get Identification Method</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td>identityTypeId</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Identification -&gt; Get Identification Type</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Dual Process Method\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification verification date.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Credit file\", \"Dual Process Method\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Customer's identification place of issue.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Dual Process Method\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfIssueId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Country Id of Issue. Obtained using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ProvinceOfIssueId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates Province Id of Issue. Obtained using the <strong>Parameter -&gt; Get Province List by Country</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityNumber</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>Customer's identification number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td>identityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification expiration date.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"In Person ID Verification\", \"Canada Post Verification\", or \"Digital ID Verification\".</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>CreditAgencyId</strong></em></td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td><strong>Indicates</strong> the name of the Canadian Credit Bureau or Third-party Vendor.  <br />  <br />Use the <code>ID</code> value from the <strong>Parameters -&gt; CreditAgency -&gt; Get Credit Agency List</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Credit file\".</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>CreditFileNumber</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Indicates Credit File Number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Credit file\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource1Name</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the name of the reliable source #1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource2Name</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the name of the reliable source #2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource1Number</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Indicates the number of the reliable source #1.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>ReliableSource2Number</td>\n<td><em>Alphanumeric</em></td>\n<td>50</td>\n<td>Indicates the number of the reliable source #2.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> when <strong>Identification Method ID</strong> is \"Dual Process Method\".</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>The customer's corporate legal name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td>Corporate-Yes</td>\n</tr>\n<tr>\n<td>BusinessIdNumber</td>\n<td><em>Alphanumeric</em></td>\n<td>25</td>\n<td>The customer's corporate business number.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>The customer's corporate business name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>The customer's corporate company name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>The customer's corporate registration name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>RetailName</td>\n<td><em>Alphanumeric</em></td>\n<td>40</td>\n<td>The customer's corporate retail name.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>Alphabetic</em></td>\n<td>40</td>\n<td>The account name for the Customer.</td>\n<td>Optional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution Branch</strong> API.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>External bank account number of the customer.</td>\n<td>Conditional</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>OccupationId</strong></em></td>\n<td><em>Numeric</em></td>\n<td><strong>17</strong></td>\n<td>Customer's occupation ID. Obtained using the <strong>Parameter -&gt; Occupation -&gt; Get Occupation List</strong> API.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>CanadianTaxResident</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the card holder is a Canadian resident or not.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>SIN</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>15</td>\n<td>Canadian Social Insurance Number.</td>\n<td>Conditional</td>\n<td>This value can be provided only if Canadian Tax Resident is True AND American Tax Resident is True or Foreign Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanTaxResident</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the card holder is an American resident or not.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>TIN</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>15</td>\n<td>American Tax Identification Number.</td>\n<td>Conditional</td>\n<td>This value can be provided only if American Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanHasNoTIN</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates the American resident has no Tax Identification Number.</td>\n<td>Conditional</td>\n<td>This value can be set to true only if American Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanNoTinReasonId</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td></td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Tax Questionnaire -&gt; Get Reason List</strong> API.</td>\n<td>Conditional</td>\n<td>Required if American Tax Resident has No TIN is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>AmericanNoTinOtherReason</strong></em></td>\n<td><em>String</em></td>\n<td>60</td>\n<td><strong>Required</strong> if <strong>American No Tin Reason ID</strong> = \"Other Reason\".</td>\n<td>Conditional</td>\n<td>Required if AmericanNoTinReasonId = \"Other Reason\".</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignTaxResident</strong></em></td>\n<td><em>Boolean</em></td>\n<td></td>\n<td>Indicates whether the card holder is a foreign resident or not.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n<td></td>\n<td>Individual-Yes</td>\n</tr>\n<tr>\n<td><em><strong>FTIN</strong></em></td>\n<td><em>Alphanumeric</em></td>\n<td>15</td>\n<td>Foreign Tax Identification Number.</td>\n<td>Conditional</td>\n<td>This value can only be provided if Foreign Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignHasNoFTIN</strong></em></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates that the foreign resident has no Tax Identification Number.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Conditional</td>\n<td>This value can be set to True only if Foreign Tax Resident is True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignNoFtinReasonId</strong></em></td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Tax Questionnaire -&gt; Get Reason List</strong> API.</td>\n<td>Conditional</td>\n<td>Required if Foreign tax resident has No FTIN = True.</td>\n<td></td>\n</tr>\n<tr>\n<td><em><strong>ForeignNoFtinOtherReason</strong></em></td>\n<td><em>String</em></td>\n<td>60</td>\n<td><strong>Required</strong> if <strong>Foreign No Ftin Reason ID</strong> = \"Other Reason\".</td>\n<td>Conditional</td>\n<td>Required if Foreign tax resident No Ftin Reason ID = \"Other Reason\".</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateCustomerE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>UpdateEtransferPayeeE3</td>\n<td>Payee Type Is Invalid.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Interac Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE4</td>\n<td>Financial Institution ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE5</td>\n<td>Transit Number Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE6</td>\n<td>Interac Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE2</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerE1</td>\n<td>Only Logged-In Users Can Register.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE3</td>\n<td>Customer Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE4</td>\n<td>Client Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE5</td>\n<td>Must Be At Least One Program.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE6</td>\n<td>Must Be At Least One Account.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE12</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE11</td>\n<td>A Customer With This Email Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE13</td>\n<td>Email Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE14</td>\n<td>Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE15</td>\n<td>Last Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE16</td>\n<td>Birth Date Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE17</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE18</td>\n<td>Business ID Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE19</td>\n<td>Business Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE20</td>\n<td>Company Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE21</td>\n<td>Registration Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE22</td>\n<td>Retail Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE23</td>\n<td>Phone Country Code Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE24</td>\n<td>Phone Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE25</td>\n<td>Identity Method Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE26</td>\n<td>Person Verifying Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE27</td>\n<td>Identity Type Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE28</td>\n<td>Identity Expiration Date Must Still Be Valid For The Next 30 Days.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE29</td>\n<td>Identity Type Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE8</td>\n<td>A Customer With This Account Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE10</td>\n<td>A Customer With This Business Name, Company Name, Or Email Information Already Exists.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckPrimaryAccountE1</td>\n<td>ProgramType Funding Account(s) Not Found. New Customers Require A Funding Account For This(These) Program(s).</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Is Too Long.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE1</td>\n<td>Customer Number Is Too Long. Please Enter a Number That Does Not Exceed Limits.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE2</td>\n<td>A Customer With This Customer Number Already Exists.</td>\n</tr>\n<tr>\n<td>SaveClientCustomerE3</td>\n<td>Customer Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>AccountNumberFoundE1</td>\n<td>Each Customer Must Have Different External Accounts.</td>\n</tr>\n<tr>\n<td>ClientCustomerSaveCdicAccountE1</td>\n<td>CDIC Sub Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerSavePrepaidAccountE1</td>\n<td>Prepaid Bank Account Could Not Be Created.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE1</td>\n<td>Program Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE2</td>\n<td>Payee Code Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE3</td>\n<td>Email Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE4</td>\n<td>Invalid Email Address.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE5</td>\n<td>Customer Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE6</td>\n<td>Customer Surname Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE7</td>\n<td>Company Legal Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE8</td>\n<td>Customer Trade Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Customer Active Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interac ADR Record Creation Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Active Interac User Cannot Be Found.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interec Main User Other Record Delete Operation Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Client Unique ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Email Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Auto Deposit Account ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Client Customer ID Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Generate Participant ID Method Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Create Customer Etransfer Operation Has Failed.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Active Interac User Not Found.</td>\n</tr>\n<tr>\n<td>UpdateCustomerE7</td>\n<td>Interac ADR Record Passivate Operation Has Failed.</td>\n</tr>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.  <br />If the error persists, please contact API Support for assistance:<a href=\"https://mailto:apisupport@dcbank.ca\">apisupport@dcbank.ca</a></td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For More Valid Addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.  <br />If the error persists, please contact API Support for assistance:<a href=\"https://mailto:apisupport@dcbank.ca\">apisupport@dcbank.ca</a></td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"kycscreeningerror04-error-list\"><strong>KycScreeningError04 Error List</strong></h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Error Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddressLine1</td>\n<td>Address Line One is required.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td>P.O. Box addresses are not allowed.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td>P.O. Box addresses are not allowed.</td>\n</tr>\n<tr>\n<td>City</td>\n<td>City is required.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td>Province is required.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country is required.</td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td>Post Code is required.</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"version\">Version</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v2.0</td>\n<td>November 2025</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v2.0","Customer","UpdateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"87b5ae0e-0c98-439a-b5bc-fd8079004c69","name":"Update Customer Information V2","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerId\": 20492798,\r\n  \"customerTypeCode\": \"P\",\r\n  \"email\": \"Emailer14@gmail.com\",\r\n \"interacEmail\": \"Interac+16@dcbank.ca\",\r\n  \"mobilePhoneCountryId\":null,\r\n  \"mobilePhoneNumber\": null,\r\n  \"homePhoneCountryId\":38,\r\n  \"homePhoneNumber\": \"5678953423\",\r\n  \"firstName\": \"Greg\",\r\n  //\"middleName\": \"Olive\",\r\n \"lastName\": \"Hiller\",\r\n  \"birthDate\": \"1998-05-05\",\r\n  \"IntendedUseId\":923166,\r\n  \"IsCustomerPep\":true,\r\n  \"addressLine1\": \"153 Evanspark Cir NW \",\r\n  //\"addressLine2\": \"PO BOX 6578\",\r\n  \"cityId\": 10107,\r\n  \"countryId\": 38,\r\n  \"provinceId\": 663,\r\n  \"postalCode\": \"T3P 0A7\",\r\n  \"mailingAddressLine1\": \"736 Meridian Rd NE\",\r\n  \"mailingAddressLine2\": \"\",\r\n  \"mailingCityId\": 10107,\r\n \"mailingCountryId\": 38,\r\n  \"mailingProvinceId\": \"663\",\r\n  \"mailingPostalCode\": \"T2A 2N7\",\r\n\"mailingPoBox\": \"PO BOX\",\r\n  \"occupationId\": \"25026\",\r\n  \"identificationMethodId\":107787 ,\r\n  \"identityTypeId\": 96279,\r\n  \"identityVerificationDate\": \"2025-08-20\",\r\n  \"identityPlaceOfIssue\": \"10093\",\r\n  \"countryOfIssueId\": \"\",\r\n  \"provinceOfIssueId\": \"\",\r\n  //\"identityNumber\":,\r\n  \"identityExpireDate\": \"2025-08-20\",\r\n  \"creditAgencyId\": 1086,\r\n  \"creditFileNumber\": \"1234\",\r\n  \"reliableSource1Name\": \"Ferick\",\r\n  \"reliableSource2Name\": \"Dravid\",\r\n  \"reliableSource1Number\": \"11111\",\r\n \"reliableSource2Number\": \"2222222\",\r\n \"legalName\": \"Warren Warew\",\r\n  \"businessIdNumber\": \"1434\",\r\n  \"businessName\": \"Real estate\",\r\n  \"companyName\": \"Vintage Villa\",\r\n  \"registrationName\": \"Housing Inc.\",\r\n \"retailName\": \"Show Homes\",\r\n  \"programList\": [\r\n    \"ETRANSFER\"\r\n    // \"EFT\",\r\n    // \"BILL\",\r\n    // \"WALLET\",\r\n    // \"CDIC\",\r\n    // \"CRD TRANSFER\"\r\n  ],\r\n//   \"accountName\": \"EFT\",\r\n//   \"financialInstitutionId\": 46,\r\n//   \"financialInstitutionBranchId\": 14829,\r\n//   \"accountNumber\": \"543564435\",\r\n  \"canadianTaxResident\": false,\r\n   \"SIN\": \"12345657\",\r\n   \"AmericanTaxResident\":false,\r\n  \"TIN\": \"111111111\",\r\n  \"AmericanHasNoTIN\": null,\r\n  \"AmericanNoTinReasonId\": null,\r\n  \"AmericanNoTinOtherReason\": null,\r\n   \"ForeignTaxResident\": false,\r\n    \"FTIN\": \"22222222222\",\r\n   \"ForeignHasNoFTIN\":false,\r\n  \"ForeignNoFtinReasonId\": null,\r\n  \"ForeignNoFtinOtherReason\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v2.0/Customer/UpdateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 10 Nov 2025 16:34:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"KycStatus\": \"Approved\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"5ea351ae-2aa5-43fa-9218-201a44fdf1e0"},{"name":"Get All Customer List","id":"588e1371-9957-43fc-987f-ccbc17088308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"file","file":{}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/GetAll","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Customer List API retrieves the list of the Client's Customers and displays the customers information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>Unique customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer Number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>Customer full name. First, middle, last.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>Type of customer. Personal or Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>Unique client ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>Customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The customers date of birth.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>Customer phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>Customer address, line 1.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>Customer address, line 2.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>Customer city of residence.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>Customer province of residence.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>Customer country of residence.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>Customer zipcode of residence.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>Customer status. Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","GetAll"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2993b568-f6f0-4c0c-bbb2-5ee3507592a4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Customer/GetAll"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n    \t{\n\t        \"CustomerId\": 12345,\n\t        \"CustomerNumber\": \"\",\n\t        \"CustomerName\": \"\",\n\t        \"CustomerTypeCode\": \"\",\n\t        \"UniqueClientId\": 12345,\n\t        \"Email\": \"\",\n\t        \"BirthDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"PhoneNumber\": \"\",\n\t        \"AddressLine1\": \"\",\n\t        \"AddressLine2\": \"\",\n\t        \"City\": \"\",\n\t        \"Province\": \"\",\n\t        \"Country\": \"\",\n\t        \"ZipCode\": \"\",\n\t        \"CustomerStatus\": \"\"\n    \t},\n    \t{\n\t        \"CustomerId\": 12345,\n\t        \"CustomerNumber\": \"\",\n\t        \"CustomerName\": \"\",\n\t        \"CustomerTypeCode\": \"\",\n\t        \"UniqueClientId\": 12345,\n\t        \"Email\": \"\",\n\t        \"BirthDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"PhoneNumber\": \"\",\n\t        \"AddressLine1\": \"\",\n\t        \"AddressLine2\": \"\",\n\t        \"City\": \"\",\n\t        \"Province\": \"\",\n\t        \"Country\": \"\",\n\t        \"ZipCode\": \"\",\n\t        \"CustomerStatus\": \"\"\n    \t},\n    \t{\n\t        \"CustomerId\": 12345,\n\t        \"CustomerNumber\": \"\",\n\t        \"CustomerName\": \"\",\n\t        \"CustomerTypeCode\": \"\",\n\t        \"UniqueClientId\": 12345,\n\t        \"Email\": \"\",\n\t        \"BirthDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"PhoneNumber\": \"\",\n\t        \"AddressLine1\": \"\",\n\t        \"AddressLine2\": \"\",\n\t        \"City\": \"\",\n\t        \"Province\": \"\",\n\t        \"Country\": \"\",\n\t        \"ZipCode\": \"\",\n\t        \"CustomerStatus\": \"\"\n    \t}\n\t],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"588e1371-9957-43fc-987f-ccbc17088308"},{"name":"Get Customer by Customer Number","id":"f45dedb3-7461-401d-9b89-5a5af5fd22ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"10600000021","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/GetByCustomerNumber","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Customer by Customer Number API retrieves the specific Customer information using the CustomerNumer value.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Unique customer Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>Unique customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer Number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>Customer full name. First, middle, last.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>Type of customer. Personal or Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>Unique client ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>Customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>Customer birthdate.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>Customer phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>Customer address, line 1.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>Customer address, line 2.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>Customer city of residence.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>Customer province of residence.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>Customer country of residence.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>Customer zipcode of residence.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>Customer status. Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","GetByCustomerNumber"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4e9e2155-2a9d-487c-8e73-0bcdc050b981","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"10600000021","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/GetByCustomerNumber"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 17:39:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"315","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 21223,\n        \"CustomerNumber\": \"10600000021\",\n        \"CustomerName\": \"Craig  Test\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500034,\n        \"Email\": \"craig-test@example.ca\",\n        \"BirthDate\": null,\n        \"PhoneNumber\": \"+1 5555555555\",\n        \"AddressLine1\": null,\n        \"AddressLine2\": null,\n        \"City\": null,\n        \"Province\": null,\n        \"Country\": null,\n        \"ZipCode\": null,\n        \"CustomerStatus\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f45dedb3-7461-401d-9b89-5a5af5fd22ad"},{"name":"Search Customer","id":"d3af598c-640b-4105-8017-a708c461bd78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    //\"CustomerNumber\": \"10010000974\",\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/SearchCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Customer API retrieves Customer details by submitting one or more of the request parameters listed below.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique number for customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates customer's full name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><code>P</code> Individual Customer  <br /><code>C</code> Corporate Customer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStatusCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><code>N</code> Active Customer  <br /><code>C</code> Inactive Customer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The begin date of when the customer was inserted.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date of when the customer was inserted.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Email address of the customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>13</td>\n<td>Phone number of the customer, using the following format \"+# ##########\"</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>Unique customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer Number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>Customer full name. First, middle, last.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>Type of customer. Personal or Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>Unique client ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>Customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>Customer birthdate.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>Customer phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>Customer address, line 1.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>Customer address, line 2.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>Customer city of residence.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>Customer province of residence.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>Customer country of residence.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>Customer zipcode of residence.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>Customer status. Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","SearchCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2c218601-a913-4194-ad49-b625dcf8f793","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"","description":"(Required) "},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"\",\r\n    \"CustomerName\": \"\",\r\n    \"CustomerTypeCode\": \"\",\r\n    \"CustomerStatusCode\": \"\",\r\n    \"BeginDate\": \"2020-03-20\",\r\n    \"EndDate\": \"2020-04-07\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/SearchCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"ErrorCode\": \"0\",\r\n  \"ErrorDescription\": \"Successfull\",\r\n  \"StackTrace\": null,\r\n  \"Item\": [\r\n    {\r\n      \"CustomerId\": 20490,\r\n      \"CustomerNumber\": \"10540000001\",\r\n      \"CustomerName\": \"Benjamin Lucas\",\r\n      \"CustomerTypeCode\": \"P\",\r\n      \"UniqueClientId\": 500033,\r\n      \"Email\": \"benjamin@gmail.com\",\r\n      \"BirthDate\": \"1999-01-01T00:00:00\",\r\n      \"PhoneNumber\": \"13333333333\",\r\n      \"AddressLine1\": \"E-2605 Battleford Rd\",\r\n      \"AddressLine2\": \"\",\r\n      \"City\": \"Mississauga\",\r\n      \"Province\": \"Ontario\",\r\n      \"Country\": \"Canada\",\r\n      \"ZipCode\": \"L5N 3S4\",\r\n      \"CustomerStatus\": \"Active\"\r\n    },\r\n    {\r\n      \"CustomerId\": 20491,\r\n      \"CustomerNumber\": \"10540000002\",\r\n      \"CustomerName\": \"Oliver Jackson\",\r\n      \"CustomerTypeCode\": \"P\",\r\n      \"UniqueClientId\": 500033,\r\n      \"Email\": \"oliver@gmail.com\",\r\n      \"BirthDate\": \"1999-01-01T00:00:00\",\r\n      \"PhoneNumber\": \"16666666666\",\r\n      \"AddressLine1\": \"E-35 Neville St\",\r\n      \"AddressLine2\": \"\",\r\n      \"City\": \"Fredericton\",\r\n      \"Province\": \"New Brunswick\",\r\n      \"Country\": \"Canada\",\r\n      \"ZipCode\": \"E3A 4T9\",\r\n      \"CustomerStatus\": \"Active\"\r\n    },\r\n    {\r\n      \"CustomerId\": 20492,\r\n      \"CustomerNumber\": \"10540000003\",\r\n      \"CustomerName\": \"Erica Roxanne\",\r\n      \"CustomerTypeCode\": \"P\",\r\n      \"UniqueClientId\": 500033,\r\n      \"Email\": \"erica@gmail.com\",\r\n      \"BirthDate\": \"1999-01-04T00:00:00\",\r\n      \"PhoneNumber\": \"13333333333\",\r\n      \"AddressLine1\": \"C-4828 46 St\",\r\n      \"AddressLine2\": \"\",\r\n      \"City\": \"Camrose\",\r\n      \"Province\": \"Alberta\",\r\n      \"Country\": \"Canada\",\r\n      \"ZipCode\": \"T4V 1G7\",\r\n      \"CustomerStatus\": \"Active\"\r\n    },\r\n    {\r\n      \"CustomerId\": 20499,\r\n      \"CustomerNumber\": \"10540000005\",\r\n      \"CustomerName\": \"Ahmet Aktas\",\r\n      \"CustomerTypeCode\": \"P\",\r\n      \"UniqueClientId\": 500033,\r\n      \"Email\": \"huydonikko@enayu.com\",\r\n      \"BirthDate\": \"1999-01-03T00:00:00\",\r\n      \"PhoneNumber\": \"13455343434\",\r\n      \"AddressLine1\": \"C-4611 45 Ave\",\r\n      \"AddressLine2\": \"\",\r\n      \"City\": \"Innisfail\",\r\n      \"Province\": \"Alberta\",\r\n      \"Country\": \"Canada\",\r\n      \"ZipCode\": \"T4G 1P5\",\r\n      \"CustomerStatus\": \"Active\"\r\n    }\r\n  ],\r\n  \"IsSucceeded\": true,\r\n  \"ErrorList\": [],\r\n  \"ParameterList\": []\r\n}"},{"id":"196bdafd-6200-4231-ba55-362aa32e1f2b","name":"Search Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10220000697\",\r\n    \"CustomerName\": \"API URL Testing\",\r\n    \"CustomerTypeCode\": \"P\",\r\n    \"CustomerStatusCode\": \"N\",\r\n    \"BeginDate\": \"2021-12-01\",\r\n    \"EndDate\": \"2021-12-03\",\r\n    \"Email\": \"\",\r\n    \"PhoneNumber\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/SearchCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Dec 2021 11:53:38 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"380","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 51359,\n            \"CustomerNumber\": \"10220000697\",\n            \"CustomerName\": \"API URL Testing\",\n            \"CustomerTypeCode\": \"P\",\n            \"UniqueClientId\": 500013,\n            \"Email\": \"bepih38632@slvlog.com\",\n            \"BirthDate\": \"1980-04-03T00:00:00\",\n            \"PhoneNumber\": \"\",\n            \"AddressLine1\": \"B-871 Ewert St\",\n            \"AddressLine2\": null,\n            \"City\": \"Prince George\",\n            \"Province\": \"British Columbia\",\n            \"Country\": \"Canada\",\n            \"ZipCode\": \"V2M 2P1\",\n            \"CustomerStatus\": \"Active\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d3af598c-640b-4105-8017-a708c461bd78"}],"id":"8888fee4-fc18-43ad-a0e1-e9273b05b05b","description":"<p>At DCBank, we refer to an End User (the customer of a DCBank Client) as a “Customer”. When Customer records are created, they are automatically linked to the DCBank Client.</p>\n<p>If DCBank Clients have the contractual ability, they can offer the same DCBank services to their Customers that they have access to. These services might include EFT, e-Transfer, Bill Payment, Card etc. And, if authorized by the Client to pass down any services, it is not necessary to create separate Customer records for each service. A single Customer may be enabled to employ multiple services with one instance.</p>\n","event":[{"listen":"prerequest","script":{"id":"efce0a6f-5108-4be3-9ac0-8f6975926ea2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"32ccb2e6-f3f2-4889-8588-2a60d975bef7","type":"text/javascript","exec":[""]}}],"_postman_id":"8888fee4-fc18-43ad-a0e1-e9273b05b05b","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Client","item":[{"name":"Account","item":[{"name":"Get All Account","id":"db6d9516-69ae-4f60-b651-ce8ceb67cb4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Account API is used in the DCBank Banking Platform to list all the Client's accounts.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier of the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>Name of the account.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>Number of the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Total account balance.</td>\n</tr>\n<tr>\n<td>AvailableBalance</td>\n<td><em>Decimal</em></td>\n<td>Account balance availble for use. Does not including pending balances.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>The account type.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account. Active or Inactive.</td>\n</tr>\n<tr>\n<td>Program</td>\n<td><em>String</em></td>\n<td>Account program type. For example: etransfer, bank account, etc.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","GetAllAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"86233c1e-7ceb-4c4e-93d3-ee59f170f61f","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Nov 2020 19:19:58 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.19.0","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 123456,\n            \"AccountName\": \"Account #1\",\n            \"AccountNumber\": 1234567890,\n            \"Balance\": 1000.50,\n            \"AvailableBalance\": 1000.50,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"e-Transfer\"\n        },\n        {\n            \"Id\": 789012,\n            \"AccountName\": \"Account #2\",\n            \"AccountNumber\": 9876543210,\n            \"Balance\": 2000.00,\n            \"AvailableBalance\": 2000.00,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"Bank Account\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"db6d9516-69ae-4f60-b651-ce8ceb67cb4e"},{"name":"Get All Customer Accounts","id":"b8f5b633-7182-4b69-a18b-2340d7175346","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10540000001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllCustomerAccounts","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Customer Accounts API is used in the DCBank Banking Platform to retrieve a specific Customer's account information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier of the account.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>AccountFullNumber</td>\n<td><em>Numeric</em></td>\n<td>Account number including the branch/transit number.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The full name of the customer who owns the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The account balance.</td>\n</tr>\n<tr>\n<td>PendingBalance</td>\n<td><em>Decimal</em></td>\n<td>Any funds pending clearing to/from the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","GetAllCustomerAccounts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"85ba27c2-f9c0-4f1c-9d08-304f67a2ab38","name":"Get All Customer Accounts","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10540000001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllCustomerAccounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 06:47:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"244","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 21035,\n            \"AccountNumber\": \"572752517\",\n            \"AccountFullNumber\": \"35210009572752517\",\n            \"AccountName\": \"Wallet Account\",\n            \"AccountOwnerName\": \"Benjamin Lucas\",\n            \"Balance\": 62,\n            \"PendingBalance\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b8f5b633-7182-4b69-a18b-2340d7175346"},{"name":"Get Security Balance","id":"696924ce-5f0e-41a9-a84c-957015a7da7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10540000001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetSecurityBalance","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Security Balance API is used in the DCBank Banking Platform to retrieve a specific Customer's security balance.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the security account.</td>\n</tr>\n<tr>\n<td>SecurityNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number of the security account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","GetSecurityBalance"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"17550f24-44f7-4a98-8e57-194d10e7fd82","name":"Get Security Balance","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10540000001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetSecurityBalance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 06:51:38 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"166","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"Balance\": 3000,\n        \"SecurityNumber\": \"548300581\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"696924ce-5f0e-41a9-a84c-957015a7da7b"},{"name":"Load Request","id":"5cadb65f-78b0-42ff-942b-ecd19e38ae9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  //\"accountNumber\":\r\n  \"amount\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/ProcessorFundsLoad","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LoadFundsOpE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>LoadFundsOpE2</td>\n<td>Transaction Amount Must Be Filled.</td>\n</tr>\n<tr>\n<td>LoadFundsOpE3</td>\n<td>Selected Source Account Definition Not Found.</td>\n</tr>\n<tr>\n<td>LoadFundsOpE4</td>\n<td>Your Account Is Not Allowed For This Type Of Transactions.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","ProcessorFundsLoad"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cadb65f-78b0-42ff-942b-ecd19e38ae9b"},{"name":"Get All Account V2","id":"aff3c996-5a5b-498e-954e-ab25072b27b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllAccountV2","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Account API is used in the DCBank Banking Platform to provide a list of all the Client's account information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UniqueClientID</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>A unique client ID is generated when creating customers using the <strong>Customer -&gt; Create Customer</strong> API.  <br />  <br />Value can be obtained using the <strong>Customer -&gt; Search Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-parameters\">Response Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>Account name.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>Account number.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Balance of account, including pending funds.</td>\n</tr>\n<tr>\n<td>AvailableBalance</td>\n<td><em>Decimal</em></td>\n<td>Balance available for use.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>Account type.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account. Active or Inactive.</td>\n</tr>\n<tr>\n<td>Program</td>\n<td><em>String</em></td>\n<td>Account program type.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetAllAccountV2_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetAllAccountV2_NotFound</td>\n<td>Client Not Found.</td>\n</tr>\n<tr>\n<td>GetAllAccountV2_InvalidUniqueClientId</td>\n<td>Requested UniqueClientId And Client API UniqueClientId Must Be The Same.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v2.0</td>\n<td>July 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","GetAllAccountV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3cbf7a16-9294-4044-a99c-c6e2ed47800b","name":"Get All Account V2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllAccountV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Apr 2024 16:12:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.3","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 2786,\n            \"AccountName\": \"EFT Funding\",\n            \"AccountNumber\": 230820888,\n            \"Balance\": 994330,\n            \"AvailableBalance\": 994330,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"EFT\"\n        },\n        {\n            \"Id\": 2787,\n            \"AccountName\": \"ETransfer Funding\",\n            \"AccountNumber\": 329971824,\n            \"Balance\": 999736.62,\n            \"AvailableBalance\": 999736.62,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"e-Transfer\"\n        },\n        {\n            \"Id\": 2788,\n            \"AccountName\": \"DDT Funding\",\n            \"AccountNumber\": 947178497,\n            \"Balance\": 1867767,\n            \"AvailableBalance\": 1867767,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"DDT\"\n        },\n        {\n            \"Id\": 2789,\n            \"AccountName\": \"CardTransfer Funding\",\n            \"AccountNumber\": 513444877,\n            \"Balance\": 993400,\n            \"AvailableBalance\": 993400,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"Card Transfer\"\n        },\n        {\n            \"Id\": 2815,\n            \"AccountName\": \"DDT CDIC Funding Account\",\n            \"AccountNumber\": 868209586,\n            \"Balance\": 1000000,\n            \"AvailableBalance\": 1000000,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"DDT - CDIC\"\n        },\n        {\n            \"Id\": 2814,\n            \"AccountName\": \"Corp Account\",\n            \"AccountNumber\": 187711411,\n            \"Balance\": 990720,\n            \"AvailableBalance\": 990720,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"Bank Account\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"aff3c996-5a5b-498e-954e-ab25072b27b4"}],"id":"56e4f750-05e5-45fd-90b0-3ffd5a36e455","_postman_id":"56e4f750-05e5-45fd-90b0-3ffd5a36e455","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","name":"Client","type":"folder"}}},{"name":"EFT Program","item":[{"name":"Get Client All Account","id":"d89cfd69-3d5d-45f5-bb1a-24ec6d7e2511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/EFT/GetClientAllAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Client All Account API is used in the DCBank Banking Platform to list all of the Client accounts associated with the EFT program. <em>NOTE: The information provided by these APIs does not relate to Client Customers (E.g. End users belonging to DCBank Clients).</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The account name.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Balance of the account.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>Type of account.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The account status. Active or Inactive.</td>\n</tr>\n<tr>\n<td>Program</td>\n<td><em>String</em></td>\n<td>Program associated with the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","GetClientAllAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"866e1750-770d-446f-baf4-ae38d5bc7dea","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/EFT/GetClientAllAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 19:06:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"262","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 21093,\n            \"AccountName\": \"EFT Program\",\n            \"Balance\": 226295,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"EFT\"\n        },\n        {\n            \"Id\": 21328,\n            \"AccountName\": \"Security Account\",\n            \"Balance\": 0,\n            \"Type\": \"Security Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"EFT\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d89cfd69-3d5d-45f5-bb1a-24ec6d7e2511"},{"name":"Get Client Main Account","id":"5b5d0a6e-a0ca-4de2-aa72-57bb0d4e3256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/EFT/GetClientMainAccount","description":"<h3 id=\"description\">Description</h3>\n<p>All EFT transactions performed by the Client on the DCBank Banking Platform are funded by the Client’s EFT Primary (Funding) account. The Get Client Main Account API is used to get the EFT Primary (Funding) Account Information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The account name.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","GetClientMainAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"aca234bd-2bd0-4bb3-a36c-cdd25c9ab61e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/EFT/GetClientMainAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 19:09:52 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"181","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AccountId\": 21093,\n        \"AccountName\": \"EFT Program\",\n        \"Balance\": 226295\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5b5d0a6e-a0ca-4de2-aa72-57bb0d4e3256"},{"name":"Get Client Transaction Limit","id":"24c29047-73e9-445b-9ae9-29908edabd5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/EFT/GetClientTransactionLimit","description":"<h3 id=\"description\">Description</h3>\n<p>In the DCBank Banking Platform, Daily Maximum Limits are defined for each Client. The Get Client Transaction Limit API retrieves the Daily Maximum Limit to determine what limits have been defined for their EFT program.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClientPerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The limit the client may use for transactions, per transaction.</td>\n</tr>\n<tr>\n<td>ClientDailyAvailableOutgoingLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The limit the client may use for transactions, daily outgoing.</td>\n</tr>\n<tr>\n<td>StorePerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The limit the client may use for transactions, per store.</td>\n</tr>\n<tr>\n<td>StoreDailyAvailableOutgoingLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The limit the client may use for transactions, daily outgoing.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","GetClientTransactionLimit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dad3099a-1ea0-4325-90fe-8b995dfbd8c7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/EFT/GetClientTransactionLimit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 19:08:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"195","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"ClientPerTransactionLimitCredit\": null,\n        \"ClientDailyAvailableOutgoingLimitCredit\": null,\n        \"StorePerTransactionLimitCredit\": null,\n        \"StoreDailyAvailableOutgoingLimitCredit\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"24c29047-73e9-445b-9ae9-29908edabd5f"}],"id":"64acf7fc-a661-4638-b6ce-dcb0d9f64b05","_postman_id":"64acf7fc-a661-4638-b6ce-dcb0d9f64b05","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","name":"Client","type":"folder"}}},{"name":"e-Transfer Program","item":[{"name":"Get Client All Account","id":"ce2eebd8-2db1-49a5-8d25-9eb01364781a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAllAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Client All Account API is used to list all of the Client Accounts associated with the e-Transfer program.</p>\n<p><i><b>NOTE:</b></i> <em>The information provided by this API does not relate to Customers (E.g. End users belonging to DCBank Clients).</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>Name of the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Account balance.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>Type of account.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>Status of the account. Active or Inactive.</td>\n</tr>\n<tr>\n<td>Program</td>\n<td><em>String</em></td>\n<td>Account program type.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetAllAccount_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetAllAccount_NotFound</td>\n<td>Client Not Found.</td>\n</tr>\n<tr>\n<td>GetAllAccount_InvalidUniqueClientId</td>\n<td>Requested UniqueClientId And Client API UniqueClientId Must Be The Same.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetClientAllAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"464c486d-3571-4a80-9c5d-42073c9d6336","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAllAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Mar 2020 19:19:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 23,\n            \"AccountName\": \"eTransfer Funding Account\",\n            \"Balance\": 1861911.82,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"e-Transfer\"\n        },\n        {\n            \"Id\": 25,\n            \"AccountName\": \"eTransfer Security Account\",\n            \"Balance\": 2000000,\n            \"Type\": \"Security Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"e-Transfer\"\n        },\n        {\n            \"Id\": 26,\n            \"AccountName\": \"e-Transfer Fee Account\",\n            \"Balance\": 2094105,\n            \"Type\": \"Fee Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"e-Transfer\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ce2eebd8-2db1-49a5-8d25-9eb01364781a"},{"name":"Get Client Main Account","id":"4f9dd669-cd6b-4e64-a24f-3c70fb32c707","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientMainAccount","description":"<h3 id=\"description\">Description</h3>\n<p>All e-Transfer transactions performed by Client’s on the DCBank Banking Platform are funded by the Client’s e-Transfer Primary (Funding) account. The Get Client Main Account API retrieve's the Client's e-Transfer Primary (Funding) Account Information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The account balance.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetClientMainAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"935a6f14-e849-412b-b9f6-1b6919ebdd66","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientMainAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n    \t\"AccountId\": 12345,\n    \t\"AccountName\": \"\",\n    \t\"Balance\": 123.00\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4f9dd669-cd6b-4e64-a24f-3c70fb32c707"},{"name":"Get Client Transaction Limit","id":"7f9de87d-88de-4591-94ee-ad94bab28c30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientTransactionLimit","description":"<h3 id=\"description\">Description</h3>\n<p>In the DCBank Banking Platform, Daily Maximum Limits are defined for each Client’s program. The Get Client Transaction Limit API retrieve's the Daily Maximum Limit that is currently defined on the Client's e-Transfer program.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClientPerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients limit per transaction.</td>\n</tr>\n<tr>\n<td>ClientDailyAvailableOutgoingLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients daily outgoing limit.</td>\n</tr>\n<tr>\n<td>ClientBulkPriorityPerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients bulk priority limit per transaction.</td>\n</tr>\n<tr>\n<td>ClientBulkRegularPerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients bulk regular limit per transaction.</td>\n</tr>\n<tr>\n<td>StorePerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients limit per store transaction.</td>\n</tr>\n<tr>\n<td>StoreDailyAvailableOutgoingLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients daily outgoing limit per store.</td>\n</tr>\n<tr>\n<td>StoreBulkPriorityPerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients bulk priority transaction limit per store.</td>\n</tr>\n<tr>\n<td>StoreBulkRegularPerTransactionLimitCredit</td>\n<td><em>Decimal</em></td>\n<td>The clients bulk regular transaction limit per store.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetLimitProfileE1</td>\n<td>Limit Profile Not Found. Client:{{UniqueClientID}} Program:{{ProgramID}}</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetClientTransactionLimit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"64310ccf-658f-4a38-b976-994c420d9242","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientTransactionLimit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Jul 2020 19:13:03 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"236","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"ClientPerTransactionLimitCredit\": 99999999,\n        \"ClientDailyAvailableOutgoingLimitCredit\": 99999999,\n        \"ClientBulkPriorityPerTransactionLimitCredit\": null,\n        \"ClientBulkRegularPerTransactionLimitCredit\": null,\n        \"StorePerTransactionLimitCredit\": null,\n        \"StoreDailyAvailableOutgoingLimitCredit\": null,\n        \"StoreBulkPriorityPerTransactionLimitCredit\": null,\n        \"StoreBulkRegularPerTransactionLimitCredit\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"7f9de87d-88de-4591-94ee-ad94bab28c30"}],"id":"f884a3c1-b9ff-4701-8b25-aad373033400","_postman_id":"f884a3c1-b9ff-4701-8b25-aad373033400","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","name":"Client","type":"folder"}}},{"name":"Bill Payment Program","item":[{"name":"Get Client All Account","id":"5c9b7b47-8339-4ef9-afeb-e9755540880f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetClientAllAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Client All Account API retrieve's a list of all the Client Accounts associated with the Bill Payment program.<br /><em>NOTE: The information provided by this API does not relate to Customers (E.g. End users belonging to DCBank Clients).</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier of the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The account name.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance in the account.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>The account type.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>Status of the account. Active or Inactive.</td>\n</tr>\n<tr>\n<td>Program</td>\n<td><em>String</em></td>\n<td>The program associated with the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetAllAccount_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetAllAccount_NotFound</td>\n<td>Client Not Found.</td>\n</tr>\n<tr>\n<td>GetAllAccount_InvalidUniqueClientId</td>\n<td>Requested UniqueClientId And Client API UniqueClientId Must Be The Same.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetClientAllAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c1685326-5ee5-409d-9301-7bfa797bbe27","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetClientAllAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n    \t{\n\t        \"Id\": 12345,\n\t        \"AccountName\": \"\",\n\t        \"Balance\": 123.00,\n\t        \"Type\": \"\",\n\t        \"AccountStatus\": \"\",\n\t        \"Program\": \"\"\n    \t},\n    \t{\n\t        \"Id\": 12345,\n\t        \"AccountName\": \"\",\n\t        \"Balance\": 123.00,\n\t        \"Type\": \"\",\n\t        \"AccountStatus\": \"\",\n\t        \"Program\": \"\"\n    \t},\n    \t{\n\t        \"Id\": 12345,\n\t        \"AccountName\": \"\",\n\t        \"Balance\": 123.00,\n\t        \"Type\": \"\",\n\t        \"AccountStatus\": \"\",\n\t        \"Program\": \"\"\n    \t}\n\t],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5c9b7b47-8339-4ef9-afeb-e9755540880f"},{"name":"Get Client Daily Transaction Limit","id":"b7b8262a-d150-4332-b15f-d5972e619ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetClientDailyTransactionLimit","description":"<h3 id=\"description\">Description</h3>\n<p>The DCBank Banking Platform contains daily transaction limits defined for each Client. The Get Client Daily Transaction Limit queries the limits that each Client can perform transactions within.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClientDailyAvailableCreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The daily amount limit in which the client may performance transaction with.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetClientDailyTransactionLimit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bb683cb1-ad55-47d3-85f8-96508d0ad16b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetClientDailyTransactionLimit"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n    \t\"ClientDailyAvailableCreditLimit\": 123.00\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b7b8262a-d150-4332-b15f-d5972e619ab2"},{"name":"Get Client Main Account","id":"f3be7df1-e97e-4ad1-9e35-3bbb491e2de0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetClientMainAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Client Main Account API retrieves the details of the Client's main Funding Account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetClientMainAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c4085f6f-beff-44fd-ad6a-1a50f68bbf60","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetClientMainAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n\t    \"AccountId\": 12345,\n\t    \"AccountName\": \"\",\n\t    \"Balance\": 123\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f3be7df1-e97e-4ad1-9e35-3bbb491e2de0"}],"id":"fdf64f87-38eb-4700-b1d7-4dae55ddb982","_postman_id":"fdf64f87-38eb-4700-b1d7-4dae55ddb982","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","name":"Client","type":"folder"}}},{"name":"Operations","item":[{"name":"Fee Account","item":[{"name":"Create Fee Designated Account","id":"8695c4e4-2ce1-4840-a40f-e430343ea7d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountNumber\": 1343462394\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FeeAccount/CreateFeeDesignatedAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The CreateFeeDesignated Account API takes in an existing account number that belongs to the client (not a customer of the client) and designates that account as the fee account; causing all transactions involving a fee with the client to withdraw from that account rather than the respective funding/corporate account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountNumber</td>\n<td><em>Long</em></td>\n<td></td>\n<td>The unique account number to be used for fee charges.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateFeeDesignatedAccountE01</td>\n<td>Request Is Null.</td>\n</tr>\n<tr>\n<td>CreateFeeDesignatedAccountE02</td>\n<td>Account Cannot Be Found.</td>\n</tr>\n<tr>\n<td>CreateFeeDesignatedAccountE03</td>\n<td>Trust Account Cannot Be Used As A Designated Fee Account.</td>\n</tr>\n<tr>\n<td>CreateFeeDesignatedAccountE04</td>\n<td>Designated Fee Account Cannot Belong To A Customer.</td>\n</tr>\n<tr>\n<td>CreateFeeDesignatedAccountE05</td>\n<td>Cannot Create A Designation Where One Already Exists. Consider Updating the Designated Fee Account.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FeeAccount","CreateFeeDesignatedAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8695c4e4-2ce1-4840-a40f-e430343ea7d0"},{"name":"Update Fee Designated Account","id":"95178331-01ef-499e-9ec7-de6ea085e7bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountNumber\": 285623674\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FeeAccount/UpdateFeeDesignateAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The UpdateFeeDesignationAccount API takes in an existing fee designated account number that belongs to the client (not a customer of the client) and designates that account as the new fee account; causing all transactions involving a fee with the client to withdraw from that account rather than the respective funding/corporate account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountNumber</td>\n<td><em>Long</em></td>\n<td></td>\n<td>The unique account number to be used for fee charges.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateFeeDesignatedAccountE01</td>\n<td>Request Is Null.</td>\n</tr>\n<tr>\n<td>UpdateFeeDesignatedAccountE02</td>\n<td>Account Cannot Be Found.</td>\n</tr>\n<tr>\n<td>UpdateFeeDesignatedAccountE03</td>\n<td>Trust Account Cannot Be Used As A Designated Fee Account.</td>\n</tr>\n<tr>\n<td>UpdateFeeDesignatedAccountE04</td>\n<td>Account Cannot Belong To A Customer.</td>\n</tr>\n<tr>\n<td>UpdateFeeDesignatedAccountE05</td>\n<td>Cannot Update A Designated Fee Account Where One Does Not Exist. Please Create A Designated Fee Account.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FeeAccount","UpdateFeeDesignateAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"95178331-01ef-499e-9ec7-de6ea085e7bd"},{"name":"Get Fee Designated Account","id":"627a9794-425a-493d-8e40-6f2fac3cbe67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/FeeAccount/GetDesignatedFeeAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The GetFeeDesignatedAccount API gets the current FeeDesignatedAccount. The item returned will be the current active AccountNumber, and will be 0 if there is not a valid FeeDesignatedAccount. IsSucceeded and other such response parameters will still show successful.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FeeAccount","GetDesignatedFeeAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"627a9794-425a-493d-8e40-6f2fac3cbe67"},{"name":"Delete Fee Designated Account","id":"fa38e400-bbf4-4ee9-b699-3636bbef8833","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/FeeAccount/DeleteFeeDesignatedAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The DeleteFeeDesignatedAccount API deletes the current FeeDesignatedAccount.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DeleteFeeDesignatedAccountE01</td>\n<td>No Fee Designation Account Exists To Delete.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FeeAccount","DeleteFeeDesignatedAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa38e400-bbf4-4ee9-b699-3636bbef8833"}],"id":"796e1581-f4b3-408b-9574-b8b1fb8bb458","_postman_id":"796e1581-f4b3-408b-9574-b8b1fb8bb458","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","name":"Client","type":"folder"}}}],"id":"3f90285b-f0ed-432f-a04d-6f37a586012b","_postman_id":"3f90285b-f0ed-432f-a04d-6f37a586012b","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","name":"Client","type":"folder"}}}],"id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03","description":"<p>APIs under this group are those that will be used when DCBank Clients want to see their own information stored on the DCBank Platform.  <em>NOTE: The information provided by these APIs does not relate to Client Customers (AKA, end users belonging to DCBank Clients).</em></p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"7042c915-0d93-4b11-8ad4-0b4b92576bc6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"47a5e240-0ffb-4de7-a32f-13b0a8d4e94e","type":"text/javascript","exec":[""]}}],"_postman_id":"c629c1e9-3d86-462e-9cf8-1a0226e76e03"},{"name":"Wallet ","item":[{"name":"Account","item":[{"name":"Add Wallet Account","id":"ec851d3f-9246-482f-a29c-e65a9536867b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10000000009\",\n    \"AccountOwnerName\": \"Test Account\",\n    \"AccountName\": \"Wallet Account\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/AddWalletAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>AddWalletAccount</em> endpoint is used for adding a sub-wallet account to a pre-existing customer.</p>\n<p>Sub-wallets are used for the funding of associated cards. Upon a successful call to <em>AddWalletAccount</em> the unique sub-wallet ID will be returned as the value of the \"Item\" key within the response body. This ID will be required for the use of other endpoints such as <em>CreateCard</em>.</p>\n<p>Customers that are eligible for sub-wallet creation are those that have been created using the <em>CreateCustomer</em> endpoint (and enrolled within the \"WALLET\" or \"LENDER\" program).</p>\n<p>The sub-wallet account created via <em>AddWalletAccount</em> is not directly accessible in your list of corporate accounts that are associated to your client profile (see <em>GetAllAccount</em> for quick access to the list of your corporate accounts). Instead, these wallets exists under, and contribute balance to, your conglomerated pooled wallet account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique customer number.  <br />This can be retrieved using the <strong>Get Wallet Customer</strong> API**.**</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the account owners name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates the account name.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AssignClientCustomerE13</td>\n<td>Customer Number Not Found For Wallet Program.</td>\n</tr>\n<tr>\n<td>RequestCustomerNumberNullCheck</td>\n<td>Customer Number Cannot Be Null.</td>\n</tr>\n<tr>\n<td>RequestAccountOwnerNameNullCheck</td>\n<td>Account Owner Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>RequestAccountNameNullCheck</td>\n<td>Account Name Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","AddWalletAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"99064991-807e-4db6-854f-6d6217c6848a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000001\",\n    \"AccountOwnerName\": \"Craig Whitby\",\n    \"AccountName\": \"My Personal Wallet\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/AddWalletAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 20818,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ec851d3f-9246-482f-a29c-e65a9536867b"},{"name":"Search Customer Account List","id":"5d76761e-b198-4151-92c1-2d751791f180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"1234567890\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/SearchCustomerAccountList","description":"<p>The <em>SearchCustomerAccountList</em> endpoint is used to retrieve a list of all sub-wallets related to a particular customer. Use the customers unique \"CustomerNumber\" returned during customer creation within your request.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Wallet Customer</strong> API**.**</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountList</td>\n<td><em>List</em></td>\n<td>List of accounts under the clients name, and the details of those accounts.</td>\n</tr>\n<tr>\n<td>AccountType</td>\n<td><em>String</em></td>\n<td>The type of account.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency of the account.</td>\n</tr>\n<tr>\n<td>InsertDateTime</td>\n<td><em>DateTime</em></td>\n<td>Date the account was created.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>Name of the account.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>FullAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>Full account number, includes the branch/transit of the bank.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Current balance in the account.</td>\n</tr>\n<tr>\n<td>PendingBalance</td>\n<td><em>Decimal</em></td>\n<td>Any funds pending clearing for the account.</td>\n</tr>\n<tr>\n<td>TotalBalance</td>\n<td><em>Decimal</em></td>\n<td>Total account balance, the balance + the pending balance.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>Status of the account. Active or Inactive.</td>\n</tr>\n<tr>\n<td>MinimumBalance</td>\n<td><em>Decimal</em></td>\n<td>Minimum allowable balance of the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SearchCustomerAccountList</td>\n<td>Customer Account List Empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","SearchCustomerAccountList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cfabb5c0-76cd-4d30-ab10-4fe340119b20","name":"Search Customer Account List","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10540000001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/SearchCustomerAccountList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 06:57:57 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"366","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AccountList\": [\n            {\n                \"AccountType\": \"Wallet Account\",\n                \"CurrencyCode\": \"CAD\",\n                \"InsertDateTime\": \"2020-03-26T18:17:31.067\",\n                \"AccountName\": \"Wallet Account\",\n                \"AccountNumber\": 572752517,\n                \"FullAccountNumber\": \"35210009572752517\",\n                \"Balance\": 62,\n                \"PendingBalance\": 0,\n                \"TotalBalance\": 62,\n                \"AccountStatus\": \"Active\",\n                \"MinimumBalance\": 0,\n                \"Amount\": 0\n            },\n            {\n                \"AccountType\": \"Security Number\",\n                \"CurrencyCode\": \"CAD\",\n                \"InsertDateTime\": \"2020-03-26T18:17:35.13\",\n                \"AccountName\": \"Security Number\",\n                \"AccountNumber\": 548300581,\n                \"FullAccountNumber\": \"35210009548300581\",\n                \"Balance\": 3000,\n                \"PendingBalance\": 0,\n                \"TotalBalance\": 3000,\n                \"AccountStatus\": \"Active\",\n                \"MinimumBalance\": 0,\n                \"Amount\": 0\n            }\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5d76761e-b198-4151-92c1-2d751791f180"},{"name":"Get Customer Wallet Ids","id":"fa394847-96f0-43ad-bde1-ccc39ebd4e0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10020081366\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCustomerWalletIds","description":"<p>The <em>GetCustomerWalletIds</em> endpoint is used to retrieve a list of all sub-wallets related to a particular customer. Use the customers unique \"CustomerNumber\" to retireve data related to the customers wallet accounts.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique customer number.  <br />This can be retrieved using the <strong>Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The numer of the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The full name of the account's owener.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetWalletAccountOpE2</td>\n<td>CustomerNumber cannot be empty!</td>\n</tr>\n<tr>\n<td>GetWalletAccountOpE3</td>\n<td>Customer Number Not Found For Wallet Program.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCustomerWalletIds"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"98b59205-5a37-4b51-9abd-a54675ec5c96","name":"Get Customer Wallet Ids","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"14050000026\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCustomerWalletIds"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 20 Aug 2024 16:59:36 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"AccountId\": 1705293,\n            \"AccountNumber\": 583684550,\n            \"AccountName\": \"Wallet Account\",\n            \"AccountOwnerName\": \"Tester one\"\n        },\n        {\n            \"AccountId\": 1705347,\n            \"AccountNumber\": 582960779,\n            \"AccountName\": \"Wallet Account\",\n            \"AccountOwnerName\": \"Tester One\"\n        },\n        {\n            \"AccountId\": 1770461,\n            \"AccountNumber\": 534200126,\n            \"AccountName\": \"Wallet Account\",\n            \"AccountOwnerName\": \"Tester\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"fa394847-96f0-43ad-bde1-ccc39ebd4e0f"},{"name":"Get External Accounts","id":"1b7e466f-d64a-410b-b979-58a41e187062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetAllExtrenalAccounts","description":"<h3 id=\"description\">Description</h3>\n<p>The Get External EFT Account API is to retrieve the specific EFT Customer Account. <em>Note</em> To get the Customer Number please call <strong>Get EFT Customer</strong></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique Customer Number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the financial institution.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the branch of the financial instutution.</td>\n</tr>\n<tr>\n<td>BankNumber</td>\n<td><em>Numeric</em></td>\n<td>The financial institution's unique identifier number.</td>\n</tr>\n<tr>\n<td>BranchNumber</td>\n<td><em>Numeric</em></td>\n<td>the financial institutions unique branch number.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetEftCustomerAccountE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EftClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","GetAllExtrenalAccounts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a8f1b2b8-2d77-4330-8ebe-7654f8b9f0e7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftCustomerAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerNumber\": \"12345571\",\n            \"AccountId\": 20044,\n            \"AccountName\": \"ABCBank EFT Account\",\n            \"FinancialInstitutionId\": 82,\n            \"FinancialInstitutionBranchId\": 8779,\n            \"BankNumber\": 618,\n            \"BranchNumber\": 7211,\n            \"AccountNumber\": \"346465789\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"1b7e466f-d64a-410b-b979-58a41e187062"}],"id":"bca78ba3-6f53-4c90-ac34-29856e4edd97","_postman_id":"bca78ba3-6f53-4c90-ac34-29856e4edd97","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"Card","item":[{"name":"Create Card","id":"22e2640d-7453-46ed-8ab3-abbd327897d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10020079217\",\n    \"ProductId\": 3,\n    \"EmbossName\": \"First Last\",\n    \"DefaultAccountId\": 112506,\n    \"CreditLimit\": 123,\n    \"HasCardUsageLimit\": true,\n    \"CardUsagePeriod\": 5,\n    \"CardUsageLimit\": 456,\n    \"Emboss4thLine\": \"Test Card\",\n    \"LimitUsageStartDate\": \"2022-03-28\",\n    \"LimitUsageEndDate\": \"2022-11-16\",\n    \"HasMCCRestriction\": true,\n    \"MCC\": [\n        \"0701\",\n        \"3000\",\n        \"3009\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Card API creates a new card for an existent customer.</p>\n<p>Use \"ProductId\" to link your card to a particular product which defines key information about the card including type of card (ex. prepaid, secure), bin range and more. The \"ProductId\" can be retrieved from the <em>CardProductList</em> endpoint. Note: Card products are created to fit your particular use case and as such are setup by our back office staff. Please consult our team for more details.</p>\n<p>\"DefaultAccount\" refers to the related sub-wallet account which has been previously created. Upon a successful call to <em>AddWalletAccount</em> the unique sub-wallet ID will be returned as the value of the \"Item\" key within the response body. This ID wil be used for the \"DefaultAccount\" value.</p>\n<p>You can restrict transactions based on Merchant Category Codes (MCCs). You can define up to five MCC codes. The MCC codes listed in the \"MCC\" list will specify the merchant categories allowed for transactions with your card. Ensure that the \"HasMCCRestriction\" key is set accordingly to true or false.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Wallet Program Customer -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td><code>ID</code> value from the <strong>Wallet -&gt; Card -&gt; Get Product List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EmbossName</td>\n<td><em>String</em></td>\n<td>21</td>\n<td><strong>Required</strong> if the card being created with a <code>IsNoNameProduct = true</code> card product.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DefaultAccountId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td><code>Item</code> value from the <strong>Wallet -&gt; Account -&gt; Add Wallet Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>HasCardUsageLimit</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True:</code> Card usage limit will be defined.  <br /><code>False:</code> No limit cardholder can use all balance in default account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardUsagePeriod</td>\n<td><em>Enum</em></td>\n<td></td>\n<td><code>1</code>-Daily: Assigned limit will be valid for one day and each day limit will be renewing  <br /><code>2</code>-Weekly: Assigned Limit will be valid 1 week and each week following of card creation will be renewing  <br /><code>3</code>-Monthly: Assigned Limit will be valid 1 month and limit renewal automated every month  <br /><code>4</code>-None: There will be start and end date input for assigned limit and limit will be valid between provided date range</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CardUsageLimit</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The defined limit for Card Usage Period.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>EmbossType</td>\n<td><em>Enum</em></td>\n<td>1</td>\n<td><strong>Instant:</strong> This option available only for print on demand (ICI) card program.  <br /><strong>PersoOffice:</strong> This is the default option for card plastic personalization.  <br />  <br /><strong>Required</strong> only for <strong>Instant</strong> card option. If no value is provided, default option will be PersoOffice.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InstantCardBranchCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> only if EmbossType = <strong>Instant</strong>. Enter value <strong>104</strong>, unless otherwise instructed by API Support.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Emboss4thLine</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>This option is available for Print on Demand Card Client. This value will be printing on card Plastic next row of Cardholder name.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CanadianTaxResident</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates that the customer is a valid Canadian Tax Resident.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The Social Insurance Number of the customer.  <br />  <br /><strong>Not required</strong> if the customer is ONLY a Canadian Tax Resident.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AmericanTaxResident</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates that the customer is a valid American Tax Resident.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TIN</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The Tax Insurance Number of the customer.  <br />  <br /><strong>Required</strong> if American Tax Resident is <code>True</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ForeignTaxResident</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates that the customer is a valid Foreign Tax Resident (not in US/CA).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OtherTIN</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The Other Tax Insurance Number of the customer.  <br />  <br /><strong>Required</strong> if Foreign Tax Resident is <code>True</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Long</em></td>\n<td>Unique Card ID.</td>\n</tr>\n<tr>\n<td>TokenCardNumber</td>\n<td><em>String</em></td>\n<td>This is a unique tokenized card number generated by the system.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateNewCardE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE2</td>\n<td>Usage Period Not Found.</td>\n</tr>\n<tr>\n<td>Null</td>\n<td>Your Card Request Has Already Been Sent. Please Try Again.</td>\n</tr>\n<tr>\n<td>CreateCardFatcaE01</td>\n<td>You Must Be A Valid Tax Resident.</td>\n</tr>\n<tr>\n<td>CreateCardFatcaE02</td>\n<td>American And Canadian Tax Residents Must Provide SIN and TIN.</td>\n</tr>\n<tr>\n<td>CreateCardFatcaE03</td>\n<td>Foreign And Canadian Tax Residents Must Provide SIN and OtherTIN.</td>\n</tr>\n<tr>\n<td>CreateCardFatcaE04</td>\n<td>American Tax Residents Must Provide TIN.</td>\n</tr>\n<tr>\n<td>CreateCardFatcaE05</td>\n<td>Foreign Tax Residents Must Provide OtherTIN.</td>\n</tr>\n<tr>\n<td>CreateCardFatcaE06</td>\n<td>You Must Be A Valid Canadian Tax Resident To Apply.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CreateCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8d8e3d6c-9fe0-4da2-8381-b58a2699afd6","name":"Create Card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"18820000452\",\n    \"ProductId\": 82,\n    \"EmbossName\": \"test transaction\",\n    \"DefaultAccountId\": 161297,\n    \"CreditLimit\": 390,\n    \"HasCardUsageLimit\": true,\n    \"CardUsagePeriod\": 5,\n    \"CardUsageLimit\": 570,\n    \"EmbossType\": \"Instant\",\n    \"InstantEmbossBranchId\": 3,\n    \"Emboss4thLine\": \"Test Instant\",\n    \"LimitUsageStartDate\": \"2023-03-28\",\n    \"LimitUsageEndDate\": \"2024-11-16\",\n    \"HasMCCRestriction\": true,\n    \"MCC\": [\n        \"0701\",\n        \"3000\",\n        \"3009\"\n    ],\n    \"HasTransactionRestriction\": true,\n    \"TransactionCodeId\" : [\n        10026,\n        10027,\n        10028\n    ],\n    \"CardImageCode\": \"BP002\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 14 Dec 2021 12:11:15 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"169","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 12216,\n        \"TokenCardNumber\": \"445500nkbcdv4969\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"1c6a1d47-4286-4adc-aa9a-a37d642a4bb0","name":"SUCCESS","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10220000452\",\n    \"ProductId\": 82,\n    \"EmbossName\": \"test transaction\",\n    \"DefaultAccountId\": 161297,\n    \"CreditLimit\": 390,\n    \"HasCardUsageLimit\": true,\n    \"CardUsagePeriod\": 5,\n    \"CardUsageLimit\": 570,\n    \"EmbossType\": \"Instant\",\n    \"InstantEmbossBranchId\": 3,\n    \"Emboss4thLine\": \"Test Instant\",\n    \"LimitUsageStartDate\": \"2022-03-28\",\n    \"LimitUsageEndDate\": \"2022-11-16\",\n    \"HasMCCRestriction\": true,\n    \"MCC\": [\n        \"0701\",\n        \"3000\",\n        \"3009\"\n    ],\n    \"HasTransactionRestriction\": true,\n    \"TransactionCodeId\" : [\n        10026,\n        10027,\n        10028\n    ],\n    \"CardImageCode\": \"BP002\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Dec 2021 13:52:31 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 12235,\n        \"TokenCardNumber\": \"421973bfehuy5715\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"22e2640d-7453-46ed-8ab3-abbd327897d6"},{"name":"Create Virtual Card","id":"37221a3d-71e9-44dc-88b9-d1ce35928dcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerNumber\": \"10220000707\",\r\n    \"defaultAccountId\": 163163,\r\n    \"rsaKeyId\": 10303,\r\n    \"productId\": 84,\r\n    \"embossName\": \"string\",\r\n    \"creditLimit\": 10,\r\n    \"hasCardUsageLimit\": true,\r\n    \"cardUsagePeriod\": 1,\r\n    \"cardUsageLimit\": 100\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateVirtualCard","description":"<h3 id=\"description\">Description</h3>\n<p>Create a virtual card for the specified customer and customer's wallet account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Wallet Program Customer -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DefaultAccountId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The Wallet Account ID returned to you when creating a customer's wallet account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaKeyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The RSAKeyID field represents a unique identifier for the RSA public key associated with a specific transaction or user. This key is used for encryption and secure communication between the client and our servers.  <br />  <br />Clients have two options for generating an RSA key:  <br />Client-Provided RSA Key  <br />Clients can generate their own RSA public key and provide it to our system.  <br />To use a client-generated RSA key, the client must enter the key into the <strong>Virtual CardKey Exchange</strong> API.  <br />System-Generated RSA Key.  <br />  <br />Alternatively, clients can opt for our system to generate an RSA key for them.  <br />The system-generated RSA key can be obtained using the <strong>Generate RSA Key</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the Card Product to use when creating the virtual card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EmbossName</td>\n<td><em>String</em></td>\n<td>21</td>\n<td>If the card product supports an Emboss Name then this field is required.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreditLimit</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The customer's credit limit for this virtual card.  <br /><strong>Required</strong> if the card product type is a <strong>Credit Card</strong> or <strong>Secure Card</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HasCardUsageLimit</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates if the customer's virtual card has any usage limits.  <br />  <br /><code>True</code> or <code>False</code> value.  <br />Default is <code>False</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardUsagePeriod</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><code>1</code> Daily  <br /><code>2</code> Weekly  <br /><code>3</code> Monthly  <br /><code>4</code> None</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardUsageLimit</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The usage limit amount for the set card period.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumer</td>\n<td><em>String</em></td>\n<td>The customer number the virtual card was created for.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The Id of the virtual card to use with other endpoints.</td>\n</tr>\n<tr>\n<td>EncryptedCardNumber</td>\n<td><em>Numeric</em></td>\n<td>The card number for this virtual card encrypted with the supplied public rsa key.</td>\n</tr>\n<tr>\n<td>EncryptedExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date for this virtual card encypted with the supplied public rsa key.</td>\n</tr>\n<tr>\n<td>EncryptedCVV2</td>\n<td><em>Numeric</em></td>\n<td>The CVV2 for this virtual card encrypted with the supplied public rsa key.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-erros\">Related Erros</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateNewCardE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE2</td>\n<td>Usage Period Not Found.</td>\n</tr>\n<tr>\n<td>01</td>\n<td>Card Number Not Found.</td>\n</tr>\n<tr>\n<td>02</td>\n<td>Expiry Date Not Found.</td>\n</tr>\n<tr>\n<td>03</td>\n<td>RSA Key Not Found.</td>\n</tr>\n<tr>\n<td>06</td>\n<td>Card Not Found E1.</td>\n</tr>\n<tr>\n<td>07</td>\n<td>Generate CVV2 Error.</td>\n</tr>\n<tr>\n<td>CreateNewCardE1</td>\n<td>Product Not Found.</td>\n</tr>\n<tr>\n<td>FindWalledAccountE1</td>\n<td>Wallet Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE3</td>\n<td>Emboss Name Must Be Filled.</td>\n</tr>\n<tr>\n<td>CreateNewCardRiskE1</td>\n<td>Settlement Risk Account Parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardRiskE2</td>\n<td>Settlement Risk Account Parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardRiskE2</td>\n<td>Wallet Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE31</td>\n<td>Credit Limit Must Be Greater Then 0.</td>\n</tr>\n<tr>\n<td>CreateNewCardE32</td>\n<td>Only CAD is Accepted For Credit Or Secure Card.</td>\n</tr>\n<tr>\n<td></td>\n<td>There Is Already An Active Card is LOS/LMS Module For This Lender Customer.</td>\n</tr>\n<tr>\n<td>CreateNewCardE4</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE5</td>\n<td>Customer Is Not A Prepaid Customer.</td>\n</tr>\n<tr>\n<td>CardNoGenE2</td>\n<td>BIN Range Profile Detail Could Not Found.</td>\n</tr>\n<tr>\n<td>CardNoGenE3</td>\n<td>Card Token Generation Error Occured.</td>\n</tr>\n<tr>\n<td>CardNoGenE4</td>\n<td>Card Token Generation Error Occured.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CreateVirtualCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"03c749b3-eea7-4e11-8f64-e0c79541d882","name":"Create Virtual Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerNumber\": \"10540000005\",\r\n    \"defaultAccountId\": 21045,\r\n    \"rsaKeyId\": 10303,\r\n    \"productId\": 19,\r\n    \"embossName\": \"string\",\r\n    \"creditLimit\": 10,\r\n    \"hasCardUsageLimit\": true,\r\n    \"cardUsagePeriod\": 1,\r\n    \"cardUsageLimit\": 100\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateVirtualCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 12:08:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1026","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 0,\n        \"CustomerNumber\": 10540000005,\n        \"CardId\": 12151,\n        \"EncryptedCardNumber\": \"N+rbDVzNqlQedF/M9blQd/p2V6q7/zKOB/zwf6vB6AaTOCk2Opfg42aeuazUA2BzBPQmHNMWjqW/lMev61rjioBa7tqGi9AxDcRd8NB123COblkn1NS9B4VEfKgwJGVU5mcQvyQLJkRj4oG0FbwPxzt8QzQ4mWV1fFFWZjYNdgjXNdLV0hleHX721Ci7iRptVhi0cQBpreqIuaYUM6zd3NDx+HpQDWsGpW8IrFaj+v51H6D4x+lqMc7dVUN+OzghoKsBEQ5LPKzM955mdIsxIHbv7cd3VEGcOXXBPV0z/FUpq+tjRhs+KcFOqABiI4NldSNFCOQEmKPwB3JygMa7bA==\",\n        \"EncryptedExpiryDate\": \"fJTi0P115Rh8vYd70slhM+pmemdi8U+OKUTkkkJnTZPTeQVM5UnfexvE8zIFXXtCiZDpG3+3rh++iaXamU+ItdAhIaqVQKRaPZdXgK6199g4+Tv9znb/1wFZOpsb0BLv8H0IpfmpaRnrkoJF35vc7HD2uZ/qU+mcBTG+7EvlfUMEpbUDdhHKlzYbhoALuGduei+PQsZ9uEWbsuyMYpU/Phdj0ixix5Jcc3SoWncfeU5yx0/MAvAgvbnOXo8xSvPDkU4XCn01zzyXhH+fJakGUiAR5iCHKsA1SAh+n4XcWUCDmY/EhoWYzkBmWJ3Q0BA4m7r+aBJCVttKngO0O5diSQ==\",\n        \"EncryptedCVV2\": \"eYkdfyRRmptLHCFkj29oZWJrTPDXL5LitZap5SOjudclcFkTonXDuYsyt7TdsavKtMktaHeMI5KhtsEzD8bB/LV8rnWbWEllezqf7yVGF00SwQ+21WANyXJInLALf8kv9ojuz0ZRWj+Fwavwph4cLhpGLyqjJm5z972JcAvF8IxyNJEgTqXaksQ4hcpPZPF5aEqWnRUX2uRvfrgx4UAJgMunTz+po8Oc0hyIlUi4KbtV9RNgKN2CLl3dd7cMHhweKZwTIP1G4rILNdqnvL7woDyMH6o/j2fid4bZ2+K4ajvC4DqVP0Vf3E5jp+iqAKMV5c7mZfD5V6GWlE5mCSHU9Q==\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"37221a3d-71e9-44dc-88b9-d1ce35928dcf"},{"name":"Create Supplementary Card","id":"1468ef05-fdaf-42bc-a8ce-1a33541f0b37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"mainCardId\": 13170,\n  \"customerNumber\": \"10300007264\",\n  \"productId\": 30,\n  \"embossName\": \"Postal Test2\",\n  \"hasCardUsageLimit\": true,\n  \"cardUsagePeriod\": 2,\n  \"cardUsageLimit\": 100,\n  \"EmbossType\": \"Instant\",\n  \"InstantEmbossBranchId\": 3,\n  \"Emboss4thLine\": \"Test Instant\",\n  \"ZipCode\": \"Z2Y5V3\",\n  \"NickName\": \"NickName\"\n  }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateSupplementaryCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Supplementary Card API creates supplementary information for the specific Customer. The main card may be either virtual or physical.<br /><b>Note:</b> public enum CardUsagePeriod { Daily = 1, Weekly = 2, Monthly = 3, None = 4 }</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Wallet Program Customer -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DefaultAccountId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The Wallet Account ID returned to you when creating a customer's wallet account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaKeyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the public rsa key to use for encrypting the returned PCI data.  <br />A public RSA key can be obtained using the <strong>Virtual Card Key Exchange</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the Card Product to use when creating the virtual card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EmbossName</td>\n<td><em>String</em></td>\n<td>21</td>\n<td>If the card product supports an Emboss Name then this field is required.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreditLimit</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The customer's credit limit for this virtual card.  <br /><strong>Required</strong> if the card product type is a <strong>Credit Card</strong> or <strong>Secure Card</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HasCardUsageLimit</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates if the customer's virtual card has any usage limits.  <br />  <br /><code>True</code> or <code>False</code> value.  <br />Default is <code>False</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardUsagePeriod</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><code>1</code> Daily  <br /><code>2</code> Weekly  <br /><code>3</code> Monthly  <br /><code>4</code> None</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardUsageLimit</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The usage limit amount for the set card period.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NickName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Card Nick Name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>If a postal/zip code is provided for a secondary card, all transactions for this secondary card will be validated ussing this postal/zip code. If no postal/zip code is provided the primary cards information will be used to validate a transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Phonenumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the PhoneNumber attached to the card.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>Unique card indentifier.</td>\n</tr>\n<tr>\n<td>TokenCardNumber</td>\n<td><em>String</em></td>\n<td>Tokenized card number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateNewCardE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE2</td>\n<td>Usage Period Not Found.</td>\n</tr>\n<tr>\n<td>01</td>\n<td>Card Number Not Found.</td>\n</tr>\n<tr>\n<td>02</td>\n<td>Expiry Date Not Found.</td>\n</tr>\n<tr>\n<td>03</td>\n<td>RSA Key Not Found.</td>\n</tr>\n<tr>\n<td>06</td>\n<td>Card Not Found E1.</td>\n</tr>\n<tr>\n<td>07</td>\n<td>Generate CVV2 Error.</td>\n</tr>\n<tr>\n<td>CreateSuppCardE4</td>\n<td>Product Not Found.</td>\n</tr>\n<tr>\n<td>FindWalledAccountE1</td>\n<td>Wallet Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE3</td>\n<td>Emboss Name Must Be Filled.</td>\n</tr>\n<tr>\n<td>CreateNewCardRiskE1</td>\n<td>Settlement Risk Account Parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardRiskE2</td>\n<td>Settlement Risk Account Parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardRiskE2</td>\n<td>Wallet Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE31</td>\n<td>Credit Limit Must Be Greater Then 0.</td>\n</tr>\n<tr>\n<td>CreateNewCardE32</td>\n<td>Only CAD Is Accepted For Credit Or Secure Card.</td>\n</tr>\n<tr>\n<td></td>\n<td>There Is Already An Active Card In LOS/LMS Module For This Lender Customer.</td>\n</tr>\n<tr>\n<td>CreateNewCardE4</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateNewCardE5</td>\n<td>Customer Is Not Prepaid Customer.</td>\n</tr>\n<tr>\n<td>CardNoGenE2</td>\n<td>BIN Range Profile Detail Could Not Found.</td>\n</tr>\n<tr>\n<td>CardNoGenE3</td>\n<td>Card Token Generation Error Occured.</td>\n</tr>\n<tr>\n<td>CardNoGenE4</td>\n<td>Card Token Generation Error Occured.</td>\n</tr>\n<tr>\n<td>CreateCardNickNameError</td>\n<td>Nick Name Length Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>CreateCardPostalCodeError</td>\n<td>Zip Code Length Cannot Exceed 10 Characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CreateSupplementaryCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"55b5d38d-6619-4d4a-a71f-f9b6b6e4f5db","name":"Create Supplementary Card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"mainCardId\": 13170,\n  \"customerNumber\": \"10300007264\",\n  \"productId\": 30,\n  \"embossName\": \"Martin Luther\",\n  \"hasCardUsageLimit\": true,\n  \"cardUsagePeriod\": 2,\n  \"cardUsageLimit\": 100,\n  \"EmbossType\": \"Instant\",\n  \"InstantEmbossBranchId\": 3,\n  \"Emboss4thLine\": \"Test Instant\",\n  \"ZipCode\": \"Z2Y5V3\",\n  \"NickName\": \"NickName\"\n  }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateSupplementaryCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 07:37:19 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"172","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 12131,\n        \"TokenCardNumber\": \"400379ivhjgi0687\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"1468ef05-fdaf-42bc-a8ce-1a33541f0b37"},{"name":"Create Supplementary  Virtual Card","id":"53498b5c-8cfd-40b0-91b2-21468a975a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mainCardId\": 71651,\n    \"customerNumber\": \"10020000031\",\n    \"productId\": 3,\n    \"embossName\": \"Patrick Test\",\n    \"HasCardUsageLimit\": false,\n    \"LimitUsagePeriod\": 1,\n    \"LimitUsageStartDate\": null,\n    \"LimitUsageEndDate\": null,\n    \"CardUsageLimit\": 89.00,\n    \"rsaKeyId\": 10444,\n    \"ClientReference\": \"202404241\",\n    \"Ref1\": null,\n    \"Ref2\": null,\n    \"Ref3\": null,\n    \"Ref4\": null,\n    \"Ref5\": null,\n    \"HasMCCRestriction\": false,\n    \"MCC\": null,\n\t\"HasMCCGroupRestriction\": false,\n\t\"MccGroupId\": 0,\n\t\"NickName\": null,\n\t\"ZipCode\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateSupplementaryVCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Supplementary Card API creates a Supplementary Card linked to a Client's main card.</p>\n<p>The main card may be either virtual or physical.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MainCardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>For a supplementary card, the Client will need to generate the main card ID from the <em><strong>Create Card</strong></em> API.  <br />  <br />All future Supplementary Virtual Card requests need to have a main card ID to link the supplementary card with the main card.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>This unique ID for each main card will be provided in the response of the <em><strong>Create Customer</strong></em> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Product ID is a unique ID generated by DCBank for Clients. Clients can see their assigned Product IDs by sending a request using the <strong>Card Product List</strong> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>EmbossName</td>\n<td><em>String</em></td>\n<td>75</td>\n<td>Cardholder Name.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>HasCardUsageLimit</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True:</code> If a client wants to assign a limit, this needs to be <code>true</code>. The <strong>CardUsageLimit</strong> Field should be included if this field is <code>true</code>.  <br />  <br /><code>False:</code> If this value is <code>false</code>, this supplementary card will be able to use the overall available balance of the main card.  <br />  <br /><code>False</code> is assumed if no value is entered in the <strong>HasCardUsageLimit</strong> field. The <strong>CardUsageLimit</strong> field will be ignored.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardUsagePeriod</td>\n<td><em>Enum</em></td>\n<td>1</td>\n<td><code>1</code> Daily -Assigned limit cardholder can use card limit, and limit renewal is for up to one day.  <br />  <br /><code>2</code> Weekly -Assigned limit cardholder can use the card for the next 7 days and limit renewal is automatic for up to a week.  <br />  <br /><code>3</code> Monthly -Assigned limit cardholder can use the card for the next 30 days, and limit renewal is automatic for up to a month.  <br />  <br /><code>4</code> None  <br />  <br /><code>5</code> Date Range - If this option is selected, <strong>LimitUsageStartDate</strong> and <strong>LimitUsageEndDate</strong> have to be provided for the assigned limit. For this case, the limit will be valid between this date range and automatic renewal will happen.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>LimitUsagePeriod</td>\n<td><em>Enum</em></td>\n<td>-</td>\n<td>Daily = <code>1</code>,  <br />Weekly = <code>2</code>, Monthly = <code>3</code>, Date Range = <code>5</code>.  <br />  <br />If Limit Usage Period = <code>5</code>, <strong>LimitUsageStartDate</strong> and <strong>LimitUsageEndDate</strong> have to be provided.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>LimitUsageStartDate</td>\n<td><em>DateTime</em></td>\n<td>YYYY-MM-DD  <br />or  <br />YYYY-MM-DD HH:MM</td>\n<td>Cardholder can start using the assigned limit on this date.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>LimitUsageEndDate</td>\n<td><em>DateTime</em></td>\n<td>YYYY-MM-DD  <br />or  <br />YYYY-MM-DD HH:MM</td>\n<td>This is the end date that the cardholder can use the limit. After this date, the cardholder cannot use the available limit even if there is still an available limit on the card.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CardUsageLimit</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Limit assigned for the cardholder to use from the main card. The available balance is based on a defined date range or usage period. If the <strong>HasCardUsageLimit</strong> field is <code>true</code>, a value must be entered for the <strong>CardUsageLimit</strong>.  <br />  <br />Zero and negative values cannot be entered.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>rsaKeyID</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>The RSAKeyID field represents a unique identifier for the RSA public key associated with a specific transaction or user. This key is used for encryption and secure communication between the client and our servers.  <br />  <br />Clients have two options for generating an RSA key:  <br />Client-Provided RSA Key  <br />Clients can generate their own RSA public key and provide it to our system.  <br />To use a client-generated RSA key, the client must enter the key into the <strong>Virtual CardKey Exchange</strong> API.  <br />System-Generated RSA Key.  <br />  <br />Alternatively, clients can opt for our system to generate an RSA key for them.  <br />The system-generated RSA key can be obtained using the <strong>Generate RSA Key</strong> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>This field can be used to store data about a card. The system will be holding this reference in the database linked with the card ID for Clients to use this unique key for their search.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HasMCCRestriction</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True:</code> If <code>true</code>, this card can only use the assigned limit for merchants in MCC list. The <strong>MCC</strong> field must have a value.  <br />  <br /><code>False:</code> If <code>false</code>, there is no need to provide an MCC list. If no value is entered in the <strong>HasMCCRestriction</strong> field. <code>False</code> is assumed. The <strong>MCC</strong> field will be ignored.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MCC</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Each card can have max 5 MCC's provided in the list. Cardholder can only use their card at defined MCC merchants.  <br />  <br />To view all defined MCCs in the system, use the <strong>Get MCC List</strong> API.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that hold values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that hold values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that hold values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that hold values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that hold values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HasMCCGroupRestriction</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True:</code> If <code>true</code>, this card cannot use the assigned limit for the defined MCC group. The <strong>MccGroupId</strong> field must have a value.  <br />  <br /><code>False:</code> If <code>false</code>, there is no need to provide an MCC group. If no value is entered in the <strong>HasMCCGroupRestriction</strong> field. <code>False</code> is assumed. The <strong>MccGroupId</strong> field will be ignored.</td>\n<td>required</td>\n</tr>\n<tr>\n<td>MccGroupId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Each card can have 1 MCC group permission provided in the list. Cardholder can use their card only at defined MCC group merchants and cannot use the card at other MCC groups.  <br />  <br />To view all defined MCC groups in the system, use the Get All Mcc Group API.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Nickname</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Card Nick Name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>If a postal/zip code is provided for a secondary card, all transactions for this secondary card will be validated ussing this postal/zip code. If no postal/zip code is provided the primary cards information will be used to validate a transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the PhoneNumber added on Card.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EncryptedCardNumber</td>\n<td><em>Numeric</em></td>\n<td>Secure card number.</td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>Expiry date of the card.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>ID of the card.</td>\n</tr>\n<tr>\n<td>LimitUsageStartDate</td>\n<td><em>DateTime</em></td>\n<td>Start date the card may be used.</td>\n</tr>\n<tr>\n<td>LimitUsageEndDate</td>\n<td><em>DateTime</em></td>\n<td>End date the card may be used.</td>\n</tr>\n<tr>\n<td>CardCurrency</td>\n<td><em>String</em></td>\n<td>Currency of card.</td>\n</tr>\n<tr>\n<td>CardLimit</td>\n<td><em>Decimal</em></td>\n<td>Limit of the card.</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>Client reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateSupplementaryVCardOpE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE3</td>\n<td>Usage Period Not Found.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE4</td>\n<td>RSA Key Not Found.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE5</td>\n<td>Import Public Key From Pem String Not Found.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE6</td>\n<td>MCC Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE7</td>\n<td>MCC Number Cannot Exceed 5.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE8</td>\n<td>MCC Was Not Found.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE9</td>\n<td>Start Date Cannot Be Greater Than End Date.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE10</td>\n<td>Limit Usage Start Date And End Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE11</td>\n<td>Incorrect Client Reference Number.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE12</td>\n<td>Incorrect Ref1 Number.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE13</td>\n<td>Incorrect Ref2 Number.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE14</td>\n<td>Incorrect Ref3 Number.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE15</td>\n<td>Incorrect Ref4 Number.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE16</td>\n<td>Incorrect Ref5 Number.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE17</td>\n<td>Emboss Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE18</td>\n<td>Emboss Name Length Cannot Exceed 75 Characters.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE19</td>\n<td>Check Card Usage Limit.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE20</td>\n<td>Start Date Cannot Be Earlier Than Current Date.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE21</td>\n<td>End Date Cannot Be Earlier Than Current Date.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE22</td>\n<td>RSA Key ID Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE23</td>\n<td>MCC Group ID Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateSupplementaryVCardOpE24</td>\n<td>MCC Group Cannot Be Found.</td>\n</tr>\n<tr>\n<td>CreateCardNickNameError</td>\n<td>Nick Name Length Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>CreateCardPostalCodeError</td>\n<td>Zip Code Length Cannot Exceed 10 Characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Depreaction Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>March 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CreateSupplementaryVCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d35b23ee-4989-4f24-b0ef-bedf9a5c0b53","name":"Create Supplementary  Virtual Card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"mainCardId\": 11197,\n\"customerNumber\": \"10180000002\",\n  \"productId\": 5,\n  \"embossName\": \"Gary Starr\",\n  \"HasCardUsageLimit\": true,\n  \"LimitUsagePeriod\": 3,\n  \"LimitUsageStartDate\": \"2022-11-22\",\n  \"LimitUsageEndDate\": \"2023-02-22\",\n  \"CardUsageLimit\": 100,\n  \"rsaKeyId\": 10896,\n  \"ClientReference\": \"1231abc321\",\n  \"Ref1\": \"213ewq\",\n  \"Ref2\": \"456asd\",\n  \"Ref3\": \"zxc546\",\n  \"Ref4\": \"789uio\",\n  \"Ref5\": \"vbn456\",\n  \"HasMCCRestriction\": true,\n  \"NickName\": \"NickName\",\n  \"ZipCode\": \"T2V5B5\",\n  \"MCC\": [\n    \"0701\",\n    \"3000\",\n    \"3009\"\n  ]\n\n}\n","options":{"raw":{"language":"json"}}},"url":"https://mrcapisandbox.dcbank.ca/integrationapi/v1.0/Wallet/CreateSupplementaryVCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Nov 2022 19:10:25 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.21.6","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 11202,\n        \"CardCurrency\": \"CAD\",\n        \"CardLimit\": 100,\n        \"ClientReference\": \"1231abc321\",\n        \"LimitUsageStartDate\": \"2022-11-02\",\n        \"LimitUsageEndDate\": \"2025-05-02\",\n        \"ExpiryDate\": \"2026-11-02\",\n        \"EncryptedCardNumber\": \"WhPxYEo4aTlL7/idcAMHXQU6uTibFotBkTF/6rXeJ9otWYsL99D0JJXMp2i1MuRNyVAJlzkwtBTAFxAOtfNYH7Zp5jAxqlXo/XVTlnAjGFVPHtzc0aP73xTmMHZ2WIT+99HzZ1UCDNv6DZ7hLoDUv0/eyBkRekTbGH6EPUOdkr50ICC49c8UGijNWfHGwjn7BO0Ose45SieM1fPz3HiCWBMJXxBhWRD6f65csMzO+7G8E3Z3bSYn0P3xLPHpO4cH9jry/kG3ejUIZdrb0o8ll8rskk+F5/BVlPFZOymzgNwAmSD0QF/nSHvL/eIEDGcE3Sov738NCfloAoeVqFnf1A==\",\n        \"EncryptedExpiryDate\": \"bDuG+Cnebf6fdoT91j6xu+fjKEmstOpUzkw5eQhUT6+ymVr+AIdJBb5QjiNowX4aqhd+BTmvg2WawacoKH8a+FuZTnlzkTOgSBK2+zwm1I5wVRQ/n7I9d6NSnafW/tLA8+FYM3h7untuUvnyIfKjLrXWKyH+SMB8QH/4ZYRK1tSAoQtYCMcOdgyYqDp72gtJZ1kMJr31yPaZYsnXqjYBvP7JGOGOGoxT1GyqUglhrFuuU3qijjXBPwJbJ9DqT3CuDvi0HfTvrL4+nU7HTDRcmHJdJ17t8DQ6FJwRPt6lVBcLMIBGiznKJYdTvXKnka7IffJ0L6fSrn7cvoep3w2jOg==\",\n        \"EncryptedCVV2\": \"acQQ045QZbCMsfyPin8s7HvqhSEpPsUGWdNqJrQ3caNXai7JCdIzRdEZo1cF8vSsJ4vI4ZJ5LjbfJKPyRe2RnGG3SGM7wnijqecMoMjnaX1NckQ+r9GYS1H5Zc2Jb+PSVVfyyE/g8tcc1EzsCWXkIcT1xHe98z6a8Xd6Ph/ohWR0VZ22n2L3D8BSaMVWLm6y9EwL6Cp5j1o30r7PGt0gzaeTTZfVuR+1B3L6G1p0ZBPCAYjkbyvRsnX95+cW2ohHNge6rss0c+aRXU2e9Lo6El8c2qKxz5oKQaAV6cTErJtgEIQ6rapxrwK1DOn1Xp4Z4mYLWBW+AArz4L6opQiiAQ==\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"53498b5c-8cfd-40b0-91b2-21468a975a32"},{"name":"Card Status List","id":"3a5d178d-9508-4f9a-9123-2be54203c545","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardStatusList","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Staus List API retrieves a list of every status a card can have.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique card ID.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>Alphabetic</em></td>\n<td>Status code of the card.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>Alphabetic</em></td>\n<td>Description of the status code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardStatusList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8d4de4b4-fa83-4aa2-af8e-30199196cf79","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardStatusList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 1,\n            \"Code\": \"A\",\n            \"ResponseCode\": \"00\",\n            \"Description\": \"Active\"\n        },\n        {\n            \"Id\": 2,\n            \"Code\": \"T\",\n            \"ResponseCode\": \"05\",\n            \"Description\": \"Temporarily Closed\"\n        },\n        {\n            \"Id\": 3,\n            \"Code\": \"W\",\n            \"ResponseCode\": \"05\",\n            \"Description\": \"Waiting for Activation \"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3a5d178d-9508-4f9a-9123-2be54203c545"},{"name":"Card Detail","id":"856e8311-2f05-4389-878c-4fe0de1d0d4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"CardId\": 10001\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardDetail","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Detail API retrieves the details of the Card that belongs to a specific Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates Unique Card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>Alphabetic</em></td>\n<td>The name of the card owner.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>Numeric</em></td>\n<td>The number of the card.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance on the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardDetail"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0094c14b-4edc-47e3-905b-53fc3c4a4c38","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"CardId\": 10001\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardDetail"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n            \"Id\": 10001,\n            \"Name\": \"Demi Lovato\",\n            \"CardNumber\": \"400379******5345\",\n            \"Balance\": 13700.38\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"856e8311-2f05-4389-878c-4fe0de1d0d4b"},{"name":"Get Card Summary","id":"81ea2dc1-f290-474f-94e1-c9630c22860c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10180000052\",\r\n  \"cardNumber\": \"511695******8636\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardSummary","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Card Summary API retrieves the details of the Card that belongs to a specific Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>Indicates the Masked Card Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AvailableCreditLimit</td>\n<td><em>Decimal</em></td>\n<td>Credit limit available for use.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Balance of funds on the card.</td>\n</tr>\n<tr>\n<td>CreditLimit</td>\n<td><em>Decimal</em></td>\n<td>Credit limit of the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CardGetE1</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardGetE2</td>\n<td>Card Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardSummary"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9a2df128-2c23-485a-b124-db525d8c4adc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10180000052\",\r\n  \"cardNumber\": \"511695******8636\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardSummary"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AvailableCreditLimit\": 0,\n        \"Balance\": 0,\n        \"CreditLimit\": 0\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"81ea2dc1-f290-474f-94e1-c9630c22860c"},{"name":"Card Product List","id":"8781dcee-f414-4d00-ae5f-d6ba8d7b65c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardProductList","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Product List API retrieves a list of the products the Client has.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>Unique product identifier.</td>\n</tr>\n<tr>\n<td>ProductName</td>\n<td><em>String</em></td>\n<td>Name of the product.</td>\n</tr>\n<tr>\n<td>IsNoNameProduct</td>\n<td><em>Boolean</em></td>\n<td>True or False value.</td>\n</tr>\n<tr>\n<td>NoNameEmbossName</td>\n<td><em>String</em></td>\n<td>No name is embossed.</td>\n</tr>\n<tr>\n<td>ProfileName</td>\n<td><em>String</em></td>\n<td>Name of the product profile.</td>\n</tr>\n<tr>\n<td>PlasticCode</td>\n<td><em>Integer</em></td>\n<td>Card code.</td>\n</tr>\n<tr>\n<td>PlasticName</td>\n<td><em>String</em></td>\n<td>Card name.</td>\n</tr>\n<tr>\n<td>ProductBrandName</td>\n<td><em>String</em></td>\n<td>Name of the brand of the product.</td>\n</tr>\n<tr>\n<td>AutoRenewCard</td>\n<td><em>Boolean</em></td>\n<td>True or False value.</td>\n</tr>\n<tr>\n<td>AutoRenewalPeriodMonth</td>\n<td><em>Integer</em></td>\n<td>Number of month if auto renenal is True.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardProductList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0ff95379-bb7e-4cae-92ca-c466928a7a16","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardProductList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 1,\n            \"ProductName\": \"Hope Visa Credit Card\",\n            \"IsNoNameProduct\": false,\n            \"NoNameEmbossName\": \"\",\n            \"ProfileName\": \" Bin Range Profile\",\n            \"PlasticCode\": \"010\",\n            \"PlasticName\": \"Refresh EMV Dual Interface\",\n            \"ProductBrandName\": \"Visa\",\n            \"AutoRenewCard\": false,\n            \"AutoRenewalPeriodMonth\": 0\n        },\n        {\n            \"Id\": 1,\n            \"ProductName\": \"Hope Visa  Magnetic Card\",\n            \"IsNoNameProduct\": false,\n            \"NoNameEmbossName\": \"\",\n            \"ProfileName\": \" Bin Range Profile\",\n            \"PlasticCode\": \"013\",\n            \"PlasticName\": \" Visa Mag – Prepaid\",\n            \"ProductBrandName\": \"Visa\",\n            \"AutoRenewCard\": false,\n            \"AutoRenewalPeriodMonth\": 0\n        },\n        {\n            \"Id\": 1,\n            \"ProductName\": \"Hope Mastercard Ria Magnetic Card\",\n            \"IsNoNameProduct\": false,\n            \"NoNameEmbossName\": \"\",\n            \"ProfileName\": \"Ria Mastercard Bin Range Profile\",\n            \"PlasticCode\": \"014\",\n            \"PlasticName\": \"RIA Financial - MC MAG - Prepaid\",\n            \"ProductBrandName\": \"Mastercard\",\n            \"AutoRenewCard\": false,\n            \"AutoRenewalPeriodMonth\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8781dcee-f414-4d00-ae5f-d6ba8d7b65c7"},{"name":"Update Card Status","id":"9f8dbb17-671b-4310-9936-5e0105dc0343","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"CardId\": 10001,\n    \"CardStatusId\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateCardStatus","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Card Status can be used to change the status of a customer card.<br /><b>Note:</b> Cards listed as Closed or Fraud cannot have their status changed.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Unique Card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List V2</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardStatusId</td>\n<td><em>Integer</em>/<em>String</em></td>\n<td>2</td>\n<td>A unique ID for the card status.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Status List</strong> API.  <br />  <br /><code>1 or A</code> - Active  <br /><code>2 or T</code> - Temporarily Closed  <br /><code>3 or W</code> - Waiting Activation  <br /><code>4 or L</code> - Lost  <br /><code>5 or S</code> - Stolen  <br /><code>6 or O</code> - Other  <br /><code>7 or F</code> - Fraud  <br /><code>8 or C</code> -Customer Request  <br /><code>9 or K</code> - Closed</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>No Customer Matches The Number Provided.</td>\n</tr>\n<tr>\n<td>UpdateCardStatusOpE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE1</td>\n<td>No Card Matching The Provided Card ID.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE2</td>\n<td>The Card Status ID Provided Does Not Exist.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE3</td>\n<td>Card Status Cannot Be Changed.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE4</td>\n<td>The Card Already Has The Provided Status.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","UpdateCardStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d2c1489d-e305-4221-a256-da4f476977e0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"CardId\": 10001,\n    \"CardStatusId\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateCardStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9f8dbb17-671b-4310-9936-5e0105dc0343"},{"name":"Request Card Replacement","id":"80ebbdd3-305d-47a1-b9a4-10626f7c78b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10030000136\",\n    \"CardId\": 604564,\n    \"IssuingReasonTypeId\": 91104,\n    \"ProductId\": 206,\n    \"EmbossName\": \"Replacement card\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/RequestCardReplacement","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint can be used to request a card replacement for a customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique card Identifier.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IssuingReasonTypeId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Issuing Reason Type identifier.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Card Replacement Issue Types</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Integer</em></td>\n<td>7</td>\n<td>Product type ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Product List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EmbossName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>The emboss name written on Card.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>No Customer Matching The Number Provided.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE2</td>\n<td>Issuing reason Type ID Does Not Exist.</td>\n</tr>\n<tr>\n<td>RenewCardE1</td>\n<td>No Card Was Found For This Customer.</td>\n</tr>\n<tr>\n<td>RenewCardE2</td>\n<td>Main Card Must Have An Emboss Name.</td>\n</tr>\n<tr>\n<td>RenewCardE3</td>\n<td>Card Has Already Been Requested.</td>\n</tr>\n<tr>\n<td>RenewCardE4</td>\n<td>Card Replacement Restricted For This Customer.</td>\n</tr>\n<tr>\n<td>RenewCardE5</td>\n<td>Card Replacement Restricted For This Customer.</td>\n</tr>\n<tr>\n<td>RenewCardE6</td>\n<td>Product ID Does Not Exist.</td>\n</tr>\n<tr>\n<td>RenewCardE7</td>\n<td>Product Must Be Named For This Card.</td>\n</tr>\n<tr>\n<td>RenewCardE8</td>\n<td>Emboss Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>RenewCardE81</td>\n<td>No Old Card Was Found For This Customer.</td>\n</tr>\n<tr>\n<td>RenewCardE82</td>\n<td>Product Type Cannot Be Changed During A Replacement.</td>\n</tr>\n<tr>\n<td>RenewCardE9</td>\n<td>No Customer Matching The Number Provided.</td>\n</tr>\n<tr>\n<td>RenewCardE10</td>\n<td>Customer Does Not Belong To A Prepaid Program.</td>\n</tr>\n<tr>\n<td>RenewCardE11</td>\n<td>Card Number Could Not Be Generated For This Product.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","RequestCardReplacement"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c01a3e94-a6a1-4fc3-852c-27c4bc0cfe94","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"CardId\": 10001,\n    \"IssuingReasonTypeId\": 91106,\n    \"ProductId\": 1,\n    \"EmbossName\": \"Demi Lovato\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/RequestCardReplacement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"80ebbdd3-305d-47a1-b9a4-10626f7c78b8"},{"name":"Get Card Replacements","id":"5b446bfa-66ce-4b52-aa2d-c2f8d945b305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardReplacements","description":"<h3 id=\"description\">Description</h3>\n<p>Retrieves a list of previous card replacements made for a specific customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>Numeric</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>EmbossStatus</td>\n<td><em>String</em></td>\n<td>Card replacement status.</td>\n</tr>\n<tr>\n<td>CardIssuingReason</td>\n<td><em>String</em></td>\n<td>Reason for the card/replacement.</td>\n</tr>\n<tr>\n<td>EmbossName</td>\n<td><em>String</em></td>\n<td>Name to be embossed on the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardReplacements"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"337130e2-294c-4d41-8673-f9f047f3eec6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardReplacements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 16:28:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"MaskedCardNumber\": \"400379******5345\",\n            \"EmbossStatus\": \"Waiting\",\n            \"CardIssuingReason\": \"New\",\n            \"EmbossName\": \"Demi Lovato\"\n        },\n        {\n            \"MaskedCardNumber\": \"400379******1525\",\n            \"EmbossStatus\": \"Waiting\",\n            \"CardIssuingReason\": \"New\",\n            \"EmbossName\": \"demi lovato\"\n        },\n        {\n            \"MaskedCardNumber\": \"400379******6498\",\n            \"EmbossStatus\": \"Waiting\",\n            \"CardIssuingReason\": \"New\",\n            \"EmbossName\": \"testst\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5b446bfa-66ce-4b52-aa2d-c2f8d945b305"},{"name":"Get Card Replacement Issue Types","id":"f92d6da6-d4e7-46d1-90f3-533ba16ae7e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardReplacementIssueTypes","description":"<h3 id=\"description\">Description</h3>\n<p>Retrieves a list of issue types available for client customers.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>String</em></td>\n<td>The replacement type code.</td>\n</tr>\n<tr>\n<td>Value</td>\n<td><em>String</em></td>\n<td>The value of the replacement type code.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the replacement type code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardReplacementIssueTypes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b5e984d3-2bbb-4c67-817c-3787ea7ab3c5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardReplacementIssueTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 91106,\n            \"Code\": \"CardIssuingReasonType\",\n            \"Value\": \"A\",\n            \"Description\": \"Automatic Renewal\"\n        },\n        {\n            \"Id\": 91104,\n            \"Code\": \"CardIssuingReasonType\",\n            \"Value\": \"C\",\n            \"Description\": \"Invalid To Chip\"\n        },\n        {\n            \"Id\": 91103,\n            \"Code\": \"CardIssuingReasonType\",\n            \"Value\": \"D\",\n            \"Description\": \"Damage on magnetic\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f92d6da6-d4e7-46d1-90f3-533ba16ae7e8"},{"name":"Get Total Available Card Limit","id":"a507caba-3f5c-4fe1-b0b8-78384e423c48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetTotalAvailableCardLimit","description":"<h3 id=\"description\">Description</h3>\n<p>Retrieves the available card limits for a specific customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetTotalAvailableCardLimit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bb89e263-6998-4e74-91e0-07a6e26c86fc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetTotalAvailableCardLimit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 5.0,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a507caba-3f5c-4fe1-b0b8-78384e423c48"},{"name":"Get Specific Card Limit","id":"b1afae4a-dc76-4e37-b11c-c5c51e31f80a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10180000052\",\r\n  \"CardNumber\": \"511695******8636\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetSpecificCardLimit","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Specific Card Limit API retrieves the card limit for the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>16</td>\n<td>Indicates the Masked Card Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>ClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>GetSpecificCardLimitOpE2</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n<tr>\n<td>GetSpecificCardLimitOpE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>GetSpecificCardLimitOpE3</td>\n<td>Card Is Not Yours.</td>\n</tr>\n<tr>\n<td>GetSpecificCardLimitOpE4</td>\n<td>Card Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>SysError</td>\n<td>UnKnown Error Occurred</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetSpecificCardLimit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2b89f0df-b677-47da-af35-3cb58829f8c8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10180000052\",\n    \"CardNumber\": \"511695******8636\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetSpecificCardLimit"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 123.00,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b1afae4a-dc76-4e37-b11c-c5c51e31f80a"},{"name":"Get Total Product Balance","id":"fcbac2e9-4086-4ea0-98fc-a07617c85fae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetTotalProductBalance","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Total Product Balance API retrieves the total balance for the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetTotalProductBalance"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"90f287b0-8b51-4990-b06c-8459688fcdca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetTotalProductBalance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 5042,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"fcbac2e9-4086-4ea0-98fc-a07617c85fae"},{"name":"Get All Product Balance","id":"256addda-d4cc-45e4-b9ae-9ad0363c0f3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetAllProductBalance","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Product Balance API retrieves the balance for the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProductId</td>\n<td><em>Integer</em></td>\n<td>Unique identifier for the product.</td>\n</tr>\n<tr>\n<td>ProductCode</td>\n<td><em>String</em></td>\n<td>Type code of the product.</td>\n</tr>\n<tr>\n<td>ProductName</td>\n<td><em>String</em></td>\n<td>Name of the product.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>Balance available for use.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetAllProductBalance"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"65ac5931-e53d-4dc3-bcba-95f2595025e3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetAllProductBalance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"ProductId\": 102,\n            \"ProductCode\": \"C\",\n            \"ProductName\": \"Credit Card\",\n            \"Balance\": 5042\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"256addda-d4cc-45e4-b9ae-9ad0363c0f3d"},{"name":"Activate Card","id":"398f22d2-70a5-4b97-a9d8-ad977d767cbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\",\n    \"LastFourDigits\": \"0910\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/ActivateCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Activate Card API activates the card belonging to the specified customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LastFourDigits</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Last Four Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>ActivateCardOpE1</td>\n<td>Card Not Found.</td>\n</tr>\n<tr>\n<td>ActivateCardOpE2</td>\n<td>Card Status Not Found.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE1</td>\n<td>Card Not Found.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE2</td>\n<td>Card Status Definition Not Found.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE3</td>\n<td>This Card Status Is Not Allowed To Be Changed.</td>\n</tr>\n<tr>\n<td>UpdCardStatusE4</td>\n<td>The Card Already {{CardStatus}}.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","ActivateCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1043e21b-fdfe-430d-bcbc-a0e497ca7b1f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\",\n    \"LastFourDigits\": \"0910\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/ActivateCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"398f22d2-70a5-4b97-a9d8-ad977d767cbd"},{"name":"Cancel Card","id":"aa4a83cb-c7cb-4d4a-8865-4b5024d170d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\",\n    \"LastFourDigits\": \"1234\",\n    \"ReasonCode\": 3\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CancelCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Card API cancels the card of the specified customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LastFourDigits</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Last 4-Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.  <br />  <br />Last Four Digits is <em>only</em> <em><strong>required</strong></em> <em>if Card Token Number is not in the request.</em></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ReasonCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>Indicates the reason of card cancellation.  <br />  <br /><code>1</code> - Active  <br /><code>2</code> - Temporarily Closed  <br /><code>3</code> - Waiting for Activation  <br /><code>4</code> - Lost  <br /><code>5</code> - Stolen  <br /><code>6</code> - Other  <br /><code>7</code> - Fraud  <br /><code>8</code> - Customer Request  <br /><code>9</code> - Closed</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>16</td>\n<td>Indicates the cards token number.  <br />  <br />Card Token Number is <em>only</em> <em><strong>required</strong></em> <em>if LastFourDigits are not in the request.</em></td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CancelCardDemandId</td>\n<td><em>Integer</em></td>\n<td>ID of the reason for cancelling card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CancelCardOpE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CancelCardOpE2</td>\n<td>Reason Code Must Be Between 1-9.</td>\n</tr>\n<tr>\n<td>CancelCardOpE3</td>\n<td>Last Four Digits Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CancelCardOpE4</td>\n<td>Last Four Digits Must Be 4 Characters/Numbers.</td>\n</tr>\n<tr>\n<td>CancelCardOpE5</td>\n<td>Card Not Found.</td>\n</tr>\n<tr>\n<td>CancelCardOpE6</td>\n<td>Card Statuts Is Already {{CardStatus}}.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CancelCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4c2c6e92-3f77-4474-9526-5ad790a2a22d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\",\n    \"ReasonCode\": \"3\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CancelCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CancelCardDemandId\": 2\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"aa4a83cb-c7cb-4d4a-8865-4b5024d170d5"},{"name":"Get CVV","id":"d9c2296a-a3c4-4593-a394-c820e407ec2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 12345,\r\n    \"RsaKeyId\": 12345\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCvv","description":"<h3 id=\"description\">Description</h3>\n<p>The Get CVV API is designed to retriever the Card Verification Value (CVV) for a specified card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaKeyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique RSA key ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EncCvv</td>\n<td><em>String</em></td>\n<td>The encrypted CVV of the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetCvv_PublicKeyInvalid</td>\n<td>Public RSA Key Is Invalid.</td>\n</tr>\n<tr>\n<td>GetCvv_PublicKeyNotFound</td>\n<td>Public RSA Key not found for supplied RsaKeyId.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCvv"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1d80cc25-b96b-4ff8-8df5-29f49945163f","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"CardId\": 12345,\n    \"RsaKeyId\": 12345\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/ActivateCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"EncCvv\": \"11jh1kj2h31jhg1jh2g3jkjman,mandads98i987ixcz==\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d9c2296a-a3c4-4593-a394-c820e407ec2c"},{"name":"Virtual Card Key Exchange","id":"6456c7c4-9f0d-4602-b348-7be7f84f0da4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"RsaPublicKeyPEM\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/VirtualCardKeyExchange","description":"<h4 id=\"description\">Description</h4>\n<p>Allows client's to supply a public RSA key in PEM format. We will encypt specific PCI data using this public key.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RsaPublicKeyPEM</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The public RSA Key you wish us to use for encyption.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-parameters\">Response Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RsaKeyId</td>\n<td><em>Numeric</em></td>\n<td>The ID value to supply to other endpoints which require us to encrypt response fields.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"related-errors\">Related Errors</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"version\">Version</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","VirtualCardKeyExchange"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3ff34d3e-981c-44eb-9c0a-289ded49e25f","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"RsaPublicKeyPEM\": \"-----BEGIN PUBLIC KEY-----\\nMIIBIjANBgkqhkiG9w0BAQEFAOACAQ8AMIIBCgKCAQEAw0seBlIo8k9GOoz3jjFv\\nGcbeiWH/6xHrqDEUPRxgvG2fxqnu407hYRy1eBdcqdfnhCmYUL/6YyMeieAchUdPsV\\n6ohlMkbkQUodj+rmK5F3jUCfsND2rHPjJD1o+Atwy+9G+izONWNGmKi1qxCTx2Rw\\nZBHq4v2n/U50bogb+nOilyJAJZPJjfBfrlLoe8Jy8PpnxB8k2NEK/Ai2SDEzr1Gd\\n3uaI986G/CVcPFfkxEmCxxQJmwWza0NhOfhiMHilfdJMGOg5EO5OcCY4yoK8q7tF+7\\nwRD5n9YTinUVN5v/cs4/YbVY9UZk3rpflzYGvMk1jR+t1ZkXgprQjnZ4jerKdc8VEK\\n0QIDAQAB\\n-----END PUBLIC KEY-----\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/VirtualCardKeyExchange"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 Jul 2021 15:40:03 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"143","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=eb78f7ba04d8ab4eb16cd014fc8117fb; Path=/; SameSite=None; Secure","enabled":true},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=eb78f7ba04d8ab4eb16cd014fc8117fb; Path=/","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=95ac7dcf9461529d29b0fd4f8948800859760b2524c6dc464a332758656f426d;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=95ac7dcf9461529d29b0fd4f8948800859760b2524c6dc464a332758656f426d;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"RsaKeyId\": 10303\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"6456c7c4-9f0d-4602-b348-7be7f84f0da4"},{"name":"Insert Or Update Card Reference Fields","id":"915d6847-f74f-4670-8479-5f8315c02bf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 23995,\r\n    \"ClientCardReference\": \"ClientCardReference\",\r\n    \"Ref1\": \"Ref1\",\r\n    \"Ref2\": \"Ref2\",\r\n    \"Ref3\": \"Ref3\",\r\n    \"Ref4\": \"Ref4\",\r\n    \"Ref5\": \"Ref5\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/InsertOrUpdateCardReferenceFields","description":"<p>Insert Or Update Card Reference API enables users to update reference fields for created Virtual Supplementary cards.</p>\n<p>The user can update the initial value of fields or insert new values to empty reference fields.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>Indicates Unique Card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientCardReference</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>Unique card identifier.</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>Alphanumeric</em></td>\n<td>The unique client reference number.</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>Alphanumeric</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>Alphanumeric</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>Alphanumeric</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>Alphanumeric</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>Alphanumeric</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE2</td>\n<td>Card ID Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE3</td>\n<td>Client Card Reference Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE4</td>\n<td>Ref1 Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE5</td>\n<td>Ref2 Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE6</td>\n<td>Ref3 Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE7</td>\n<td>Ref4 Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE8</td>\n<td>Ref5 Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE9</td>\n<td>Card Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","InsertOrUpdateCardReferenceFields"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"186dfa0b-39db-434a-8c42-88167e5ad348","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 23964,\r\n    \"ClientCardReference\": \"ClientCardReference\",\r\n    \"Ref1\": \"Ref1\",\r\n    \"Ref2\": \"Ref2\",\r\n    \"Ref3\": \"Ref3\",\r\n    \"Ref4\": \"Ref4\",\r\n    \"Ref5\": \"Ref5\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/InsertOrUpdateCardReferenceFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Oct 2022 21:02:23 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 23964,\n        \"ClientCardReference\": \"ClientCardReference\",\n        \"Ref1\": \"Ref1\",\n        \"Ref2\": \"Ref2\",\n        \"Ref3\": \"Ref3\",\n        \"Ref4\": \"Ref4\",\n        \"Ref5\": \"Ref5\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"915d6847-f74f-4670-8479-5f8315c02bf4"},{"name":"Update Prepaid Card Limit","id":"da26c26d-2731-426d-9089-2df4f56fcc5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CardId\": 23571,\r\n  \"CardLimit\":200,\r\n  \"LimitStartDate\" : \"2021-11-16\",\r\n  \"LimitEndDate\" : \"2022-11-17\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdatePrepaidCardLimitV2","description":"<h4 id=\"description\">Description</h4>\n<p>Update Prepaid Card Limit enables a client to update a card's Limit, LimitStartDate, and LimitEndDate</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Card ID from specific client. This information can be obtained in the response of the <strong>Create Card</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardLimit</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The limit defined in this field is the maximum amount cardholder can use during a date range.  <br />(<strong>Limit Start Date</strong> to <strong>Limit End Date</strong>).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LimitStartDate</td>\n<td><em>DateTime</em></td>\n<td>YYYY-MM-DD</td>\n<td>The date cardholder is able to start using amount defined in the <strong>CardLimit</strong> field.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LimitEndDate</td>\n<td><em>DateTime</em></td>\n<td>YYYY-MM-DD</td>\n<td>This is the end date for the cardholder to use defined <strong>CardLimit</strong>. The limit <strong>will not be valid</strong> after this date.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CardLimit</td>\n<td><em>Decimal</em></td>\n<td>The maximum amount the cardholder can use during a date range.</td>\n</tr>\n<tr>\n<td>LimitStartDate</td>\n<td><em>DateTime</em></td>\n<td>The date cardholder is able to start using amount defined in the <strong>CardLimit</strong> field.</td>\n</tr>\n<tr>\n<td>LimitEndDate</td>\n<td><em>DateTime</em></td>\n<td>This is the end date for the cardholder to use defined <strong>CardLimit</strong>. The limit <strong>will not be valid</strong> after this date.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdatePrepaidCardLimitOpE1</td>\n<td>Card Cannot Be Found.</td>\n</tr>\n<tr>\n<td>UpdatePrepaidCardLimitOpE5</td>\n<td>Start Date Cannot Be Greater Than The End Date.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","UpdatePrepaidCardLimitV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a2313ef0-ddfa-4e09-a69d-a0dfb1487958","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CardId\": 23571,\r\n  \"CardLimit\":100,\r\n  \"LimitStartDate\" : \"2021-11-16\",\r\n  \"LimitEndDate\" : \"2022-11-17\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdatePrepaidCardLimitV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Mar 2022 16:43:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"190","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 23571,\n        \"CardLimit\": 100,\n        \"LimitStartDate\": \"2021-11-16T00:00:00\",\n        \"LimitEndDate\": \"2022-11-17T00:00:00\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"da26c26d-2731-426d-9089-2df4f56fcc5d"},{"name":"Update Virtual Card Expire Date","id":"59a985e1-a664-4b4e-bf75-f45510e77faf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": \"12246\",\r\n    \"ExpiryDate\": \"2028-04-18\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateVirtualCardExpiryDateV2","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Virtual Card Expire Date API updates the card expiry date.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>YYYY-MM-DD</td>\n<td>Expiry date of the card.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateVirtualCardExpiryDateOpE1</td>\n<td>Card Could Not Be Found.</td>\n</tr>\n<tr>\n<td>UpdateVirtualCardExpiryDateOpE2</td>\n<td>Expiry Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateVirtualCardExpiryDateOpE3</td>\n<td>Expiry Date Cannot Be Less Than Current Date.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","UpdateVirtualCardExpiryDateV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"17c58d5c-6153-45f4-abfb-864ca6cfe258","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 23571,\r\n    \"ExpiryDate\": \"2025-03-25\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateVirtualCardExpiryDateV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Mar 2022 16:45:07 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"158","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"ExpiryDate\": \"2025-03-25T00:00:00\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"59a985e1-a664-4b4e-bf75-f45510e77faf"},{"name":"Update Pin Retry Count","id":"3ae10251-57f7-4b35-843b-00ed35bbe2f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CardId\": 21702,\r\n  \"CardStatusId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdatePinRetryCount","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardStatusId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The card status identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdCardStatusE1</td>\n<td>Card Not Found.</td>\n</tr>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","UpdatePinRetryCount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a2691576-40c8-4f76-9970-0af45cc20b7d","name":"Update Pin Retry Count","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CardId\": 21702,\r\n  \"CardStatusId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdatePinRetryCount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Feb 2022 12:36:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"127","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3ae10251-57f7-4b35-843b-00ed35bbe2f7"},{"name":"Update Cvv Retry Count","id":"48b5c6f7-0eb3-4468-a91d-7c5ae7b10c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CardId\": 21702,\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateCvvRetryCount","description":"<h3 id=\"description\">Description</h3>\n<p>The Update CVV Retry Count API is designed to reset or modify the number of failed CVV entry attempts associated with a specified card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardStatusId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unqiue card status identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdCardStatusE1</td>\n<td>Card Not Found.</td>\n</tr>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","UpdateCvvRetryCount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a099ce44-6220-4d9a-9f5c-76b7ad5ad9ea","name":"Update Cvv Retry Count","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CardId\": 21702,\r\n  \"CardStatusId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateCvvRetryCount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Feb 2022 12:36:51 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"127","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"48b5c6f7-0eb3-4468-a91d-7c5ae7b10c54"},{"name":"Create Virtual Card With MCC","id":"8a574dd2-b5ad-4e40-84bf-1409b04f7f72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerNumber\": \"12940000044\",\r\n    \"defaultAccountId\": 163730,\r\n    \"rsaKeyId\": 10303,\r\n    \"productId\": 85,\r\n    \"embossName\": \"string\",\r\n    \"creditLimit\": 10,\r\n    \"hasCardUsageLimit\": true,\r\n    \"cardUsagePeriod\": 1,\r\n    \"cardUsageLimit\": 100,\r\n    \"HasMCCRestriction\" : true,\r\n    \"MCC\": [\r\n        \"3048\",\r\n        \"3049\",\r\n        \"3050\",\r\n        \"3051\",\r\n        \"3052\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateVirtualCardWithMcc","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The customers unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>defaultAccountId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The default ID of the account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>rsaKeyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The RSA Key ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>productId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The product ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>embossName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The name embossed on the card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>creditLimit</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The credit limit of the card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>hasCardUsageLimit</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates with a <code>True</code> or <code>False</code> value whether the card has usgae limits or not.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>cardUsagePeriod</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The card uage period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>cardUsageLimit</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The card uage limit if applicable.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HasMCCRestriction</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>A <code>True</code> or <code>False</code> value indicating whether there are MCC restrictions placed on the card or not.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MCC</td>\n<td><em>Array</em></td>\n<td>-</td>\n<td>A list of approved MCCs.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The customers unique identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customers unique customer number.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>EncryptedCardNumber</td>\n<td><em>String</em></td>\n<td>The encrypted card number.</td>\n</tr>\n<tr>\n<td>EncryptedExpiryDate</td>\n<td><em>String</em></td>\n<td>The encrypted expiry date.</td>\n</tr>\n<tr>\n<td>EncryptedCVV2</td>\n<td><em>String</em></td>\n<td>The encrypted CVV.</td>\n</tr>\n<tr>\n<td>MCC</td>\n<td><em>Array</em></td>\n<td>A list of MCC groups on the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateNewCardWithMCCOpE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CreateVirtualCardWithMcc"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1b190c52-55bd-4458-a7f3-d335f69f22fb","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerNumber\": \"12940000044\",\r\n    \"defaultAccountId\": 163730,\r\n    \"rsaKeyId\": 10303,\r\n    \"productId\": 85,\r\n    \"embossName\": \"string\",\r\n    \"creditLimit\": 10,\r\n    \"hasCardUsageLimit\": true,\r\n    \"cardUsagePeriod\": 1,\r\n    \"cardUsageLimit\": 100,\r\n    \"HasMCCRestriction\" : true,\r\n    \"MCC\": [\r\n        \"3048\",\r\n        \"3049\",\r\n        \"3050\",\r\n        \"3051\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CreateVirtualCardWithMcc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Mar 2022 13:44:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 0,\n        \"CustomerNumber\": 12940000044,\n        \"CardId\": 23591,\n        \"EncryptedCardNumber\": \"Mpn1kEdnjD33XUS5Wy8FifenEoszWieYEwOSou5qRpOBeYxd88hQ6Pes47KRRZG8qApVvmd7o+LUSDF3had8DfusbnGzeAyaV9hjFOQU9ZGXBONXTp6pSugTNA+B+qtOKJt9qJ9HyXJohJhnWKv8FshSA/Q2abn3GeamsMqNo25ZRCW/LcBT4J/QNAg5FuxL9z7uuW8qAclZjG9+CzkUD5f34TyLM57Koe822IekuqyRyvYNAZRV1D6mky8oQ5VP38+mnuHl5BcljsuiKkMG3upt1FU9gGYzn8EdP5CN85x5lzPFAkv4pCzIieiii3swWYC2jVz7DBQyIiSU62owlw==\",\n        \"EncryptedExpiryDate\": \"KKNSNpnmw2X+Rcei+PbYQKBq/ZKc3q8SVi6nFPrdXf3i2RPpgzlo67+MuzNtXPZ3MV7tFhYoWKIh2HOeY+071UOvAOUYvz3YtXOL7WvNJA/J+3KSMGvcKmNlgFeIcAspTrb/pZs1plBT6hLLX2/iTbns4E4fHHOejFNT+i4vcQLp0Nxr3p9BOsHUl9YmA4quXhhuVEkbMlDAqe7vQDh1iN0rnytJVJfFp/4tbkHTufywHs32dC5Jv6KNERsMTthgSHROMppRgLVVhLn4n9liTa3te1xtpOGRjN/WFKMW5ee0hzeiJxE/Ieu4AqA3/pL5kGuWe5ZXWsJBkKZLG7EueQ==\",\n        \"EncryptedCVV2\": null,\n        \"MCC\": [\n            \"3048\",\n            \"3049\",\n            \"3050\",\n            \"3051\"\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8a574dd2-b5ad-4e40-84bf-1409b04f7f72"},{"name":"Card Mcc Group Insert","id":"9079e024-8530-41f5-92fc-b9151b58f5e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 10944,\r\n    \"GroupId\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardMccGroupInsertOrUpdate","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Mcc Group Insert API adds MCC group permission to the specific card ID. A Card can have only one MCC group. The same group cannot be added to a card twice.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>GroupId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>MCC Group ID.  <br />This ID can be obtained using the <strong>Get All MCC Group</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier for the card.</td>\n</tr>\n<tr>\n<td>GroupId</td>\n<td><em>Numeric</em></td>\n<td>The unique MCC group identifier.</td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>The tokenzied number of the card.</td>\n</tr>\n<tr>\n<td>GroupName</td>\n<td><em>String</em></td>\n<td>The MCC group name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CardMccGroupInsertOpE1</td>\n<td>Card Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardMccGroupInsertOpE2</td>\n<td>MCC Group Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardMccGroupInsertOpE3</td>\n<td>MCC Group Is Already Added To This Card.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardMccGroupInsertOrUpdate"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1f3d03a8-4805-46b4-945e-f3783958160c","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 11491,\r\n    \"GroupId\": 5\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardMccGroupInsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jan 2023 14:42:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 11491,\n        \"GroupId\": 5,\n        \"GroupName\": \"Digital\",\n        \"CardTokenNumber\": \"430400odpmgo7081\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9079e024-8530-41f5-92fc-b9151b58f5e4"},{"name":"Get All Mcc Group","id":"85d206af-c688-4d2c-a299-1385ed6457c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetAllMccGroup","description":"<h3 id=\"description\">Description</h3>\n<p>Retrieves MCC Groups available for <strong>/Wallet/CardMccGroupInsert</strong> API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>The ID of the MCC group.</td>\n</tr>\n<tr>\n<td>GroupName</td>\n<td><em>String</em></td>\n<td>The name of the MCC Group.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetAllMccGroup"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"416a9fbd-a069-4a83-9362-0de1a8c3f83c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetAllMccGroup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 17 Jan 2023 12:35:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 1,\n            \"GroupName\": \"Airlines\"\n        },\n        {\n            \"Id\": 2,\n            \"GroupName\": \"AUTOMOTIVE\"\n        },\n        {\n            \"Id\": 3,\n            \"GroupName\": \"Car Rental\"\n        },\n        {\n            \"Id\": 4,\n            \"GroupName\": \"Cash\"\n        },\n        {\n            \"Id\": 5,\n            \"GroupName\": \"Digital\"\n        },\n        {\n            \"Id\": 6,\n            \"GroupName\": \"Foods and Drinks\"\n        },\n        {\n            \"Id\": 7,\n            \"GroupName\": \"Fuel and Gas\"\n        },\n        {\n            \"Id\": 8,\n            \"GroupName\": \"Game\"\n        },\n        {\n            \"Id\": 9,\n            \"GroupName\": \"Health\"\n        },\n        {\n            \"Id\": 10,\n            \"GroupName\": \"Hotel\"\n        },\n        {\n            \"Id\": 11,\n            \"GroupName\": \"Insurance\"\n        },\n        {\n            \"Id\": 12,\n            \"GroupName\": \"Money Transfer\"\n        },\n        {\n            \"Id\": 13,\n            \"GroupName\": \"Other\"\n        },\n        {\n            \"Id\": 14,\n            \"GroupName\": \"Stores\"\n        },\n        {\n            \"Id\": 15,\n            \"GroupName\": \"Transportation\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"85d206af-c688-4d2c-a299-1385ed6457c9"},{"name":"Get MCC List","id":"e11f7ccc-5f49-435d-829c-b01e47e0f51b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": null,\r\n    \"name\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetMccList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get MCC List API returns all registered MCC codes and names. If a code or name is entered, it returns the matching MCC. Otherwise, it returns all MCC.</p>\n<p>Request Parameters</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>MCC unique code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>name</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>MCC name.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Code</td>\n<td><em>Integer</em></td>\n<td>The unique MCC code.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The MCC name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetMccList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2b6aadcf-e50b-4fb4-94c9-10f16e1c9c5a","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": null,\r\n    \"name\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetMccList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Mar 2022 13:27:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Code\": \"0701\",\n            \"Name\": \"POSTAGE TRANSACTION CHARGE\"\n        },\n        {\n            \"Code\": \"0742\",\n            \"Name\": \"VETERINARY SERVICES\"\n        },\n        {\n            \"Code\": \"0763\",\n            \"Name\": \"AGRICULTURAL COOPERATIVES\"\n        },\n        {\n            \"Code\": \"0780\",\n            \"Name\": \"LANDSCAPE AND HORTICULTURAL SERVICES\"\n        },\n        {\n            \"Code\": \"1520\",\n            \"Name\": \"GENERAL CONTRACTORS - RESIDENTIAL BUILDINGS\"\n        },\n        {\n            \"Code\": \"1711\",\n            \"Name\": \"A/C, HEATING OR PLUMBING CONTRACTORS - SALES & INSTALLATION\"\n        },\n        {\n            \"Code\": \"1731\",\n            \"Name\": \"ELECTRICAL CONTRACTORS\"\n        },\n        {\n            \"Code\": \"1740\",\n            \"Name\": \"MASONRY, STONEWORK, TILE SETTING, PLASTERING\"\n        },\n        {\n            \"Code\": \"1750\",\n            \"Name\": \"CARPENTRY\"\n        },\n        {\n            \"Code\": \"1761\",\n            \"Name\": \"ROOFING, SHEET METAL WORK, OR SIDING -- CONTRACTORS\"\n        },\n        {\n            \"Code\": \"1771\",\n            \"Name\": \"CONTRACTORS -- CONCRETE WORK\"\n        },\n        {\n            \"Code\": \"1799\",\n            \"Name\": \"SPECIAL TRADE CONTRACTORS\"\n        },\n        {\n            \"Code\": \"2741\",\n            \"Name\": \"MISCELLANEOUS PUBLISHING AND PRINTING\"\n        },\n        {\n            \"Code\": \"2742\",\n            \"Name\": \"SPECIALTY CLEANING, POLISHING AND SANITATION PREPS\"\n        },\n        {\n            \"Code\": \"2791\",\n            \"Name\": \"TYPESETTING, PLATE MAKING AND RELATED SERVICES\"\n        },\n        {\n            \"Code\": \"3000\",\n            \"Name\": \"UNITED AIRLINES\"\n        },\n        {\n            \"Code\": \"3001\",\n            \"Name\": \"AMERICAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3002\",\n            \"Name\": \"PAN AMERICAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3003\",\n            \"Name\": \"EUROFLY AIRLINES\"\n        },\n        {\n            \"Code\": \"3004\",\n            \"Name\": \"DRAGON AIRLINES\"\n        },\n        {\n            \"Code\": \"3005\",\n            \"Name\": \"BRITISH AIRWAYS\"\n        },\n        {\n            \"Code\": \"3006\",\n            \"Name\": \"JAPAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3007\",\n            \"Name\": \"AIR FRANCE\"\n        },\n        {\n            \"Code\": \"3008\",\n            \"Name\": \"LUFTHANSA\"\n        },\n        {\n            \"Code\": \"3009\",\n            \"Name\": \"AIR CANADA\"\n        },\n        {\n            \"Code\": \"3010\",\n            \"Name\": \"KLM ROYAL DUTCH AIRLINES\"\n        },\n        {\n            \"Code\": \"3011\",\n            \"Name\": \"AEROFLOT\"\n        },\n        {\n            \"Code\": \"3012\",\n            \"Name\": \"QANTAS AIRLINES\"\n        },\n        {\n            \"Code\": \"3013\",\n            \"Name\": \"ALITALIA\"\n        },\n        {\n            \"Code\": \"3014\",\n            \"Name\": \"SAUDI ARABIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3015\",\n            \"Name\": \"SWISS INTERNATIONAL AIRLINES\"\n        },\n        {\n            \"Code\": \"3016\",\n            \"Name\": \"SAS SCANDINAVIAN AIRLINESYSTEM\"\n        },\n        {\n            \"Code\": \"3017\",\n            \"Name\": \"SOUTH AFRICAN AIRWAYS\"\n        },\n        {\n            \"Code\": \"3018\",\n            \"Name\": \"VARIG BRASIL AIRLINES\"\n        },\n        {\n            \"Code\": \"3019\",\n            \"Name\": \"GERMANWINGS\"\n        },\n        {\n            \"Code\": \"3020\",\n            \"Name\": \"AIR INDIA\"\n        },\n        {\n            \"Code\": \"3021\",\n            \"Name\": \"AIR ALGERIE\"\n        },\n        {\n            \"Code\": \"3022\",\n            \"Name\": \"PHILIPPINE AIRLINES\"\n        },\n        {\n            \"Code\": \"3023\",\n            \"Name\": \"MEXICANA\"\n        },\n        {\n            \"Code\": \"3024\",\n            \"Name\": \"PAKISTAN INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3025\",\n            \"Name\": \"AIR NEW ZEALAND LTD INT\"\n        },\n        {\n            \"Code\": \"3026\",\n            \"Name\": \"EMIRATES AIRLINES\"\n        },\n        {\n            \"Code\": \"3027\",\n            \"Name\": \"UNION DE TRANSPORTS AERIENS\"\n        },\n        {\n            \"Code\": \"3028\",\n            \"Name\": \"AIR MALTA\"\n        },\n        {\n            \"Code\": \"3029\",\n            \"Name\": \"SN BRUSSELS AIRLINES\"\n        },\n        {\n            \"Code\": \"3030\",\n            \"Name\": \"AEROLINEAS ARGENTINAS\"\n        },\n        {\n            \"Code\": \"3031\",\n            \"Name\": \"OLYMPIC AIRWAYS\"\n        },\n        {\n            \"Code\": \"3032\",\n            \"Name\": \"EL AL AIRLINES\"\n        },\n        {\n            \"Code\": \"3033\",\n            \"Name\": \"ANSETT AIRLINES\"\n        },\n        {\n            \"Code\": \"3034\",\n            \"Name\": \"ETIHAD AIRWAYS / ETIHADAIR\"\n        },\n        {\n            \"Code\": \"3035\",\n            \"Name\": \"TAP PORTUGAL\"\n        },\n        {\n            \"Code\": \"3036\",\n            \"Name\": \"VASP BRASIL\"\n        },\n        {\n            \"Code\": \"3037\",\n            \"Name\": \"EGYPTAIR\"\n        },\n        {\n            \"Code\": \"3038\",\n            \"Name\": \"KUWAIT AIRWAYS\"\n        },\n        {\n            \"Code\": \"3039\",\n            \"Name\": \"AVIANCA\"\n        },\n        {\n            \"Code\": \"3040\",\n            \"Name\": \"GULF AIR\"\n        },\n        {\n            \"Code\": \"3041\",\n            \"Name\": \"BALKAN BULGARIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3042\",\n            \"Name\": \"FINNAIR\"\n        },\n        {\n            \"Code\": \"3043\",\n            \"Name\": \"AERLINGUS\"\n        },\n        {\n            \"Code\": \"3044\",\n            \"Name\": \"AIRLANKA\"\n        },\n        {\n            \"Code\": \"3045\",\n            \"Name\": \"NIGERIA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3046\",\n            \"Name\": \"CRUZERIO DO SUL\"\n        },\n        {\n            \"Code\": \"3047\",\n            \"Name\": \"TURKISH AIRLINES\"\n        },\n        {\n            \"Code\": \"3048\",\n            \"Name\": \"ROYAL AIR MAROC\"\n        },\n        {\n            \"Code\": \"3049\",\n            \"Name\": \"TUNIS AIR\"\n        },\n        {\n            \"Code\": \"3050\",\n            \"Name\": \"ICELAND AIR\"\n        },\n        {\n            \"Code\": \"3051\",\n            \"Name\": \"AUSTRIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3052\",\n            \"Name\": \"LAN CHILE AIR\"\n        },\n        {\n            \"Code\": \"3053\",\n            \"Name\": \"AVIACO SPAIN\"\n        },\n        {\n            \"Code\": \"3054\",\n            \"Name\": \"LADECO CHILE\"\n        },\n        {\n            \"Code\": \"3055\",\n            \"Name\": \"LAB BOLIVIA\"\n        },\n        {\n            \"Code\": \"3056\",\n            \"Name\": \"JET AIR\"\n        },\n        {\n            \"Code\": \"3057\",\n            \"Name\": \"VIRGIN AMERICA\"\n        },\n        {\n            \"Code\": \"3058\",\n            \"Name\": \"DELTA AIR LINES\"\n        },\n        {\n            \"Code\": \"3059\",\n            \"Name\": \"DBA AIRLINES\"\n        },\n        {\n            \"Code\": \"3060\",\n            \"Name\": \"NORTHWEST AIRLINES\"\n        },\n        {\n            \"Code\": \"3061\",\n            \"Name\": \"CONTINENTAL\"\n        },\n        {\n            \"Code\": \"3062\",\n            \"Name\": \"HAPAQ LLOYD EXPRESS\"\n        },\n        {\n            \"Code\": \"3063\",\n            \"Name\": \"U.S. AIRWAYS\"\n        },\n        {\n            \"Code\": \"3064\",\n            \"Name\": \"ADRIA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3065\",\n            \"Name\": \"AIR INTER\"\n        },\n        {\n            \"Code\": \"3066\",\n            \"Name\": \"SOUTHWEST AIRLINES\"\n        },\n        {\n            \"Code\": \"3067\",\n            \"Name\": \"VANGUARD AIRLINES\"\n        },\n        {\n            \"Code\": \"3068\",\n            \"Name\": \"AIRSTANA\"\n        },\n        {\n            \"Code\": \"3069\",\n            \"Name\": \"SUNCOUNTYAIR\"\n        },\n        {\n            \"Code\": \"3071\",\n            \"Name\": \"AIR BRITISH COLUMBIA\"\n        },\n        {\n            \"Code\": \"3072\",\n            \"Name\": \"AIR BRITISH COLUMBIA\"\n        },\n        {\n            \"Code\": \"3075\",\n            \"Name\": \"SINGAPORE AIRLINES\"\n        },\n        {\n            \"Code\": \"3076\",\n            \"Name\": \"AEROMEXICO\"\n        },\n        {\n            \"Code\": \"3077\",\n            \"Name\": \"THAI AIRWAYS\"\n        },\n        {\n            \"Code\": \"3078\",\n            \"Name\": \"CHINA AIRLINES\"\n        },\n        {\n            \"Code\": \"3079\",\n            \"Name\": \"JETSTAR AIRWAYS\"\n        },\n        {\n            \"Code\": \"3081\",\n            \"Name\": \"NORDAIR\"\n        },\n        {\n            \"Code\": \"3082\",\n            \"Name\": \"KOREAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3083\",\n            \"Name\": \"AIR AFRIQUE\"\n        },\n        {\n            \"Code\": \"3084\",\n            \"Name\": \"EVA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3085\",\n            \"Name\": \"MIDWEST EXPRESS AIRLINES\"\n        },\n        {\n            \"Code\": \"3086\",\n            \"Name\": \"CARNIVALAIR\"\n        },\n        {\n            \"Code\": \"3087\",\n            \"Name\": \"METRO AIRLINES\"\n        },\n        {\n            \"Code\": \"3088\",\n            \"Name\": \"CROATIA AIR\"\n        },\n        {\n            \"Code\": \"3089\",\n            \"Name\": \"TRANSAERO\"\n        },\n        {\n            \"Code\": \"3090\",\n            \"Name\": \"UNI AIRWAYS\"\n        },\n        {\n            \"Code\": \"3094\",\n            \"Name\": \"ZAMBIA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3096\",\n            \"Name\": \"AIR ZIMBABWE\"\n        },\n        {\n            \"Code\": \"3097\",\n            \"Name\": \"SPANAIR\"\n        },\n        {\n            \"Code\": \"3098\",\n            \"Name\": \"ASIANA AIRLINES\"\n        },\n        {\n            \"Code\": \"3099\",\n            \"Name\": \"CATHAY PASIFIC\"\n        },\n        {\n            \"Code\": \"3100\",\n            \"Name\": \"MALAYSIAN AIRLINE SYSTEM\"\n        },\n        {\n            \"Code\": \"3102\",\n            \"Name\": \"IBERIA\"\n        },\n        {\n            \"Code\": \"3103\",\n            \"Name\": \"GARUDA INDONESIA\"\n        },\n        {\n            \"Code\": \"3106\",\n            \"Name\": \"BRAATHENS S.A.F.E. NORWAY\"\n        },\n        {\n            \"Code\": \"3110\",\n            \"Name\": \"WINGS AIRWAYS\"\n        },\n        {\n            \"Code\": \"3111\",\n            \"Name\": \"BRITISH MIDLAND\"\n        },\n        {\n            \"Code\": \"3112\",\n            \"Name\": \"WINDWARD ISLAND\"\n        },\n        {\n            \"Code\": \"3115\",\n            \"Name\": \"TOWERAIR\"\n        },\n        {\n            \"Code\": \"3117\",\n            \"Name\": \"VENEZOLANA INT DE AVIACION\"\n        },\n        {\n            \"Code\": \"3118\",\n            \"Name\": \"VALLEY AIRLINES\"\n        },\n        {\n            \"Code\": \"3125\",\n            \"Name\": \"TAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3126\",\n            \"Name\": \"TALAIR PTY LTD.\"\n        },\n        {\n            \"Code\": \"3127\",\n            \"Name\": \"TACA INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3129\",\n            \"Name\": \"SURINAM AIRWAYS\"\n        },\n        {\n            \"Code\": \"3130\",\n            \"Name\": \"SUNWORLD INTERNATIONAL AIRWAYS\"\n        },\n        {\n            \"Code\": \"3131\",\n            \"Name\": \"VLM AIRLINES\"\n        },\n        {\n            \"Code\": \"3132\",\n            \"Name\": \"FRONTIER AIRLINES\"\n        },\n        {\n            \"Code\": \"3133\",\n            \"Name\": \"SUNBELT AIRLINES\"\n        },\n        {\n            \"Code\": \"3135\",\n            \"Name\": \"SUDAN AIRWAYS\"\n        },\n        {\n            \"Code\": \"3136\",\n            \"Name\": \"QATAR AIRWAYS COMPANY W.L.L.\"\n        },\n        {\n            \"Code\": \"3137\",\n            \"Name\": \"SINGLETON\"\n        },\n        {\n            \"Code\": \"3138\",\n            \"Name\": \"SIMMONS AIRLINES\"\n        },\n        {\n            \"Code\": \"3143\",\n            \"Name\": \"SCENIC AIRLINES\"\n        },\n        {\n            \"Code\": \"3144\",\n            \"Name\": \"VIRGIN ATLANTIC\"\n        },\n        {\n            \"Code\": \"3145\",\n            \"Name\": \"SAN JUAN\"\n        },\n        {\n            \"Code\": \"3146\",\n            \"Name\": \"LUXAIR\"\n        },\n        {\n            \"Code\": \"3148\",\n            \"Name\": \"AIR LITTORAL S.A.\"\n        },\n        {\n            \"Code\": \"3151\",\n            \"Name\": \"AIR ZAIRE\"\n        },\n        {\n            \"Code\": \"3154\",\n            \"Name\": \"PRINCEVILLE\"\n        },\n        {\n            \"Code\": \"3156\",\n            \"Name\": \"GO FLY LTD\"\n        },\n        {\n            \"Code\": \"3159\",\n            \"Name\": \"PROVINCETOWN-BOSTON AIRWAYS\"\n        },\n        {\n            \"Code\": \"3161\",\n            \"Name\": \"ALL NIPPON AIRWAYS\"\n        },\n        {\n            \"Code\": \"3164\",\n            \"Name\": \"NORONT AIR\"\n        },\n        {\n            \"Code\": \"3165\",\n            \"Name\": \"NEW YORK HELICOPTER\"\n        },\n        {\n            \"Code\": \"3167\",\n            \"Name\": \"AERO CONTINENTE\"\n        },\n        {\n            \"Code\": \"3170\",\n            \"Name\": \"MOUNT COOK\"\n        },\n        {\n            \"Code\": \"3171\",\n            \"Name\": \"CANADIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3172\",\n            \"Name\": \"NATION AIR\"\n        },\n        {\n            \"Code\": \"3174\",\n            \"Name\": \"JETBLUE AIRWAYS\"\n        },\n        {\n            \"Code\": \"3175\",\n            \"Name\": \"MIDDLE EAST AIR\"\n        },\n        {\n            \"Code\": \"3176\",\n            \"Name\": \"METROFLIGHT AIRLINES\"\n        },\n        {\n            \"Code\": \"3177\",\n            \"Name\": \"AIRTRAN AIRWAYS\"\n        },\n        {\n            \"Code\": \"3178\",\n            \"Name\": \"MESA AIR\"\n        },\n        {\n            \"Code\": \"3180\",\n            \"Name\": \"WESTJET AIRLINES\"\n        },\n        {\n            \"Code\": \"3181\",\n            \"Name\": \"MALEV HUNGARIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3182\",\n            \"Name\": \"LOT POLISH AIRLINES\"\n        },\n        {\n            \"Code\": \"3183\",\n            \"Name\": \"OMAN AVIATION SERVICES\"\n        },\n        {\n            \"Code\": \"3184\",\n            \"Name\": \"LIAT\"\n        },\n        {\n            \"Code\": \"3185\",\n            \"Name\": \"LAV LINEA AEROPOSTAL VENEZOLAN\"\n        },\n        {\n            \"Code\": \"3186\",\n            \"Name\": \"LAP LINEAS AEREAS PARAGUAYAS\"\n        },\n        {\n            \"Code\": \"3187\",\n            \"Name\": \"LACSA COSTA RICA\"\n        },\n        {\n            \"Code\": \"3188\",\n            \"Name\": \"VIRGIN EXPRESS\"\n        },\n        {\n            \"Code\": \"3190\",\n            \"Name\": \"JUGOSLAV AIR\"\n        },\n        {\n            \"Code\": \"3191\",\n            \"Name\": \"ISLAND AIRLINES\"\n        },\n        {\n            \"Code\": \"3192\",\n            \"Name\": \"IRAN AIR\"\n        },\n        {\n            \"Code\": \"3193\",\n            \"Name\": \"INDIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3196\",\n            \"Name\": \"HAWAIIAN AIR\"\n        },\n        {\n            \"Code\": \"3197\",\n            \"Name\": \"HAVASU AIRLINES\"\n        },\n        {\n            \"Code\": \"3200\",\n            \"Name\": \"GUYANA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3203\",\n            \"Name\": \"GOLDEN PASIFIC AIR\"\n        },\n        {\n            \"Code\": \"3204\",\n            \"Name\": \"FREEDOM AIRLINES\"\n        },\n        {\n            \"Code\": \"3206\",\n            \"Name\": \"CHINA EASTERN AIRLINES\"\n        },\n        {\n            \"Code\": \"3211\",\n            \"Name\": \"NORWEGIAN AIR SHUTTLE\"\n        },\n        {\n            \"Code\": \"3212\",\n            \"Name\": \"DOMINICANA DE AVIACION\"\n        },\n        {\n            \"Code\": \"3213\",\n            \"Name\": \"MALMO AVIATION\"\n        },\n        {\n            \"Code\": \"3215\",\n            \"Name\": \"DAN AIR SERVICES\"\n        },\n        {\n            \"Code\": \"3216\",\n            \"Name\": \"CUMBERLAND AIRLINES\"\n        },\n        {\n            \"Code\": \"3217\",\n            \"Name\": \"CSA CESKOSLOVENSKE AEROLINIE\"\n        },\n        {\n            \"Code\": \"3218\",\n            \"Name\": \"CROWN AIR\"\n        },\n        {\n            \"Code\": \"3219\",\n            \"Name\": \"COMPANIA PANAMENA DE AVIACION\"\n        },\n        {\n            \"Code\": \"3220\",\n            \"Name\": \"COMPANIA FAUCETT\"\n        },\n        {\n            \"Code\": \"3221\",\n            \"Name\": \"TRANSPORTES AEROS MILITARES\"\n        },\n        {\n            \"Code\": \"3222\",\n            \"Name\": \"COMMAND AIRWAYS\"\n        },\n        {\n            \"Code\": \"3223\",\n            \"Name\": \"COMAIR\"\n        },\n        {\n            \"Code\": \"3226\",\n            \"Name\": \"SKYWAYS\"\n        },\n        {\n            \"Code\": \"3228\",\n            \"Name\": \"CAYMAN AIRWAYS\"\n        },\n        {\n            \"Code\": \"3229\",\n            \"Name\": \"SAETA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3231\",\n            \"Name\": \"SAHSA HONDURAS\"\n        },\n        {\n            \"Code\": \"3233\",\n            \"Name\": \"CAPITOL AIR\"\n        },\n        {\n            \"Code\": \"3234\",\n            \"Name\": \"CARIBBEAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3235\",\n            \"Name\": \"BROCKWAY AIR\"\n        },\n        {\n            \"Code\": \"3236\",\n            \"Name\": \"AIR ARABIA AIRLINE\"\n        },\n        {\n            \"Code\": \"3238\",\n            \"Name\": \"BEMIDJI AVIATION\"\n        },\n        {\n            \"Code\": \"3239\",\n            \"Name\": \"BAR HARBOR AIRLINES\"\n        },\n        {\n            \"Code\": \"3240\",\n            \"Name\": \"BAHAMASAIR\"\n        },\n        {\n            \"Code\": \"3241\",\n            \"Name\": \"AVIATECA GUATEMALA\"\n        },\n        {\n            \"Code\": \"3242\",\n            \"Name\": \"AVENSA\"\n        },\n        {\n            \"Code\": \"3243\",\n            \"Name\": \"AUSTRIAN AIR SERVICE\"\n        },\n        {\n            \"Code\": \"3245\",\n            \"Name\": \"EASYJET\"\n        },\n        {\n            \"Code\": \"3246\",\n            \"Name\": \"RYANAIR\"\n        },\n        {\n            \"Code\": \"3247\",\n            \"Name\": \"GOL AIRLINES\"\n        },\n        {\n            \"Code\": \"3248\",\n            \"Name\": \"TAM AIRLINES\"\n        },\n        {\n            \"Code\": \"3251\",\n            \"Name\": \"ALOHA AIRLINES\"\n        },\n        {\n            \"Code\": \"3252\",\n            \"Name\": \"ALM ANTILEAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3253\",\n            \"Name\": \"AMERICA WEST\"\n        },\n        {\n            \"Code\": \"3254\",\n            \"Name\": \"U.S.AIR SHUTTLE\"\n        },\n        {\n            \"Code\": \"3256\",\n            \"Name\": \"ALASKA AIRLINES INC\"\n        },\n        {\n            \"Code\": \"3259\",\n            \"Name\": \"AMERICAN TRANS AIR\"\n        },\n        {\n            \"Code\": \"3260\",\n            \"Name\": \"SPIRIT AIRLINES\"\n        },\n        {\n            \"Code\": \"3261\",\n            \"Name\": \"AIR CHINA\"\n        },\n        {\n            \"Code\": \"3262\",\n            \"Name\": \"RENO AIR\"\n        },\n        {\n            \"Code\": \"3263\",\n            \"Name\": \"AERO SERVICIO CARABOBO\"\n        },\n        {\n            \"Code\": \"3266\",\n            \"Name\": \"AIR SEYCHELLES\"\n        },\n        {\n            \"Code\": \"3267\",\n            \"Name\": \"AIR PANAMA INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3280\",\n            \"Name\": \"AIR JAMAICA\"\n        },\n        {\n            \"Code\": \"3282\",\n            \"Name\": \"AIR DJIBOUTI\"\n        },\n        {\n            \"Code\": \"3284\",\n            \"Name\": \"AERO VIRGIN ISLANDS\"\n        },\n        {\n            \"Code\": \"3285\",\n            \"Name\": \"AERO PERU\"\n        },\n        {\n            \"Code\": \"3286\",\n            \"Name\": \"AERO NICARAGUENSES\"\n        },\n        {\n            \"Code\": \"3287\",\n            \"Name\": \"AERO COACH AVIATION\"\n        },\n        {\n            \"Code\": \"3292\",\n            \"Name\": \"CYPRUS AIRWAYS\"\n        },\n        {\n            \"Code\": \"3293\",\n            \"Name\": \"ECUATORIANA\"\n        },\n        {\n            \"Code\": \"3294\",\n            \"Name\": \"ETHIOPIAN AIRLINES\"\n        },\n        {\n            \"Code\": \"3295\",\n            \"Name\": \"KENYA AIRWAYS\"\n        },\n        {\n            \"Code\": \"3296\",\n            \"Name\": \"AIR BERLIN\"\n        },\n        {\n            \"Code\": \"3297\",\n            \"Name\": \"TAROM ROMANIAN AIR TRANSPORT\"\n        },\n        {\n            \"Code\": \"3298\",\n            \"Name\": \"AIR MAURITIUS\"\n        },\n        {\n            \"Code\": \"3299\",\n            \"Name\": \"WIDEROES FLYVESELSKAP\"\n        },\n        {\n            \"Code\": \"3301\",\n            \"Name\": \"WIZZ AIRLINES\"\n        },\n        {\n            \"Code\": \"3351\",\n            \"Name\": \"AFFILIATED AUTO RENTAL\"\n        },\n        {\n            \"Code\": \"3352\",\n            \"Name\": \"AMERICAN INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3353\",\n            \"Name\": \"BROOKS RENT A CARE\"\n        },\n        {\n            \"Code\": \"3354\",\n            \"Name\": \"ACTION AUTO RENTAL\"\n        },\n        {\n            \"Code\": \"3355\",\n            \"Name\": \"SIXT CAR RENTAL\"\n        },\n        {\n            \"Code\": \"3357\",\n            \"Name\": \"HERTZ RENT A CARE\"\n        },\n        {\n            \"Code\": \"3359\",\n            \"Name\": \"PAYLESS CAR RENTAL\"\n        },\n        {\n            \"Code\": \"3360\",\n            \"Name\": \"SNAPPY CAR RENTAL\"\n        },\n        {\n            \"Code\": \"3361\",\n            \"Name\": \"AIRWAYS RENT A CARE\"\n        },\n        {\n            \"Code\": \"3362\",\n            \"Name\": \"ALTRA AUTO RENTAL\"\n        },\n        {\n            \"Code\": \"3364\",\n            \"Name\": \"AGENCY RENT A CARE\"\n        },\n        {\n            \"Code\": \"3366\",\n            \"Name\": \"BUDGET RENT A CARE\"\n        },\n        {\n            \"Code\": \"3368\",\n            \"Name\": \"HOLIDAY RENT A CARE\"\n        },\n        {\n            \"Code\": \"3370\",\n            \"Name\": \"RENT A WRECK\"\n        },\n        {\n            \"Code\": \"3374\",\n            \"Name\": \"ACCENT RENT A CAR\"\n        },\n        {\n            \"Code\": \"3376\",\n            \"Name\": \"AJAX RENT A CAR\"\n        },\n        {\n            \"Code\": \"3380\",\n            \"Name\": \"TRIANGLE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3381\",\n            \"Name\": \"EUROP CAR\"\n        },\n        {\n            \"Code\": \"3385\",\n            \"Name\": \"TROPICAL RENT A CAR\"\n        },\n        {\n            \"Code\": \"3386\",\n            \"Name\": \"SHOWCASE RENTAL CARS\"\n        },\n        {\n            \"Code\": \"3387\",\n            \"Name\": \"ALAMO RENT A CAR\"\n        },\n        {\n            \"Code\": \"3388\",\n            \"Name\": \"MERCHANTS RENT A CAR\"\n        },\n        {\n            \"Code\": \"3389\",\n            \"Name\": \"AVIS RENT A CAR\"\n        },\n        {\n            \"Code\": \"3390\",\n            \"Name\": \"DOLLAR RENT A CAR\"\n        },\n        {\n            \"Code\": \"3391\",\n            \"Name\": \"EUROPE BY CAR\"\n        },\n        {\n            \"Code\": \"3393\",\n            \"Name\": \"NATIONAL CAR RENTAL\"\n        },\n        {\n            \"Code\": \"3394\",\n            \"Name\": \"KEMWELL GROUP RENT A CAR\"\n        },\n        {\n            \"Code\": \"3395\",\n            \"Name\": \"THRIFTY CAR RENTAL\"\n        },\n        {\n            \"Code\": \"3396\",\n            \"Name\": \"TILDEN RENT A CAR\"\n        },\n        {\n            \"Code\": \"3398\",\n            \"Name\": \"ECONO CAR RENT A CAR\"\n        },\n        {\n            \"Code\": \"3400\",\n            \"Name\": \"AUTO HOST CAR RENTAL\"\n        },\n        {\n            \"Code\": \"3401\",\n            \"Name\": \"ALL ISLAND RENT A CAR\"\n        },\n        {\n            \"Code\": \"3405\",\n            \"Name\": \"ENTERPRISE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3409\",\n            \"Name\": \"GENERAL RENT A CAR\"\n        },\n        {\n            \"Code\": \"3410\",\n            \"Name\": \"RENT A CAR\"\n        },\n        {\n            \"Code\": \"3412\",\n            \"Name\": \"A1 RENT A CAR\"\n        },\n        {\n            \"Code\": \"3414\",\n            \"Name\": \"GODFREY NATIONAL\"\n        },\n        {\n            \"Code\": \"3420\",\n            \"Name\": \"ANSA INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3421\",\n            \"Name\": \"ALLSTATE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3423\",\n            \"Name\": \"AVCAR RENT A CAR\"\n        },\n        {\n            \"Code\": \"3425\",\n            \"Name\": \"AUTOMATE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3427\",\n            \"Name\": \"AVON RENT A CAR\"\n        },\n        {\n            \"Code\": \"3428\",\n            \"Name\": \"CAREY RENT A CAR\"\n        },\n        {\n            \"Code\": \"3429\",\n            \"Name\": \"INSURANCE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3430\",\n            \"Name\": \"MAJOR RENT A CAR\"\n        },\n        {\n            \"Code\": \"3431\",\n            \"Name\": \"REPLACEMENT RENT A CAR\"\n        },\n        {\n            \"Code\": \"3432\",\n            \"Name\": \"RESERVE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3433\",\n            \"Name\": \"UGLY DUCKLING RENT A CAR\"\n        },\n        {\n            \"Code\": \"3434\",\n            \"Name\": \"USA RENT A CAR\"\n        },\n        {\n            \"Code\": \"3435\",\n            \"Name\": \"VALUE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3436\",\n            \"Name\": \"AUTOHANSA RENT A CAR\"\n        },\n        {\n            \"Code\": \"3437\",\n            \"Name\": \"CITE\"\n        },\n        {\n            \"Code\": \"3438\",\n            \"Name\": \"INTERENT RENT A CAR\"\n        },\n        {\n            \"Code\": \"3439\",\n            \"Name\": \"MILLEVILLE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3441\",\n            \"Name\": \"ADVANTAGE RENT A CAR\"\n        },\n        {\n            \"Code\": \"3501\",\n            \"Name\": \"HOLIDAY INNS\"\n        },\n        {\n            \"Code\": \"3502\",\n            \"Name\": \"BEST WESTERN HOTELS\"\n        },\n        {\n            \"Code\": \"3503\",\n            \"Name\": \"SHERATON HOTELS\"\n        },\n        {\n            \"Code\": \"3504\",\n            \"Name\": \"HILTON HOTELS\"\n        },\n        {\n            \"Code\": \"3505\",\n            \"Name\": \"FORTE HOTELS\"\n        },\n        {\n            \"Code\": \"3506\",\n            \"Name\": \"GOLDEN TULIP HOTELS\"\n        },\n        {\n            \"Code\": \"3507\",\n            \"Name\": \"FRIENDSHIP INNS\"\n        },\n        {\n            \"Code\": \"3508\",\n            \"Name\": \"QUALITY INNS\"\n        },\n        {\n            \"Code\": \"3509\",\n            \"Name\": \"MARRIOTT\"\n        },\n        {\n            \"Code\": \"3510\",\n            \"Name\": \"DAYS INNS\"\n        },\n        {\n            \"Code\": \"3511\",\n            \"Name\": \"ARABELLA HOTELS\"\n        },\n        {\n            \"Code\": \"3512\",\n            \"Name\": \"INTERCONTINENTAL HOTELS\"\n        },\n        {\n            \"Code\": \"3513\",\n            \"Name\": \"WESTIN HOTELS\"\n        },\n        {\n            \"Code\": \"3514\",\n            \"Name\": \"AMERISUITES\"\n        },\n        {\n            \"Code\": \"3515\",\n            \"Name\": \"RODEWAY INNS\"\n        },\n        {\n            \"Code\": \"3516\",\n            \"Name\": \"LAQUINTA INNS\"\n        },\n        {\n            \"Code\": \"3517\",\n            \"Name\": \"AMERICANA HOTELS\"\n        },\n        {\n            \"Code\": \"3518\",\n            \"Name\": \"SOL HOTELS\"\n        },\n        {\n            \"Code\": \"3519\",\n            \"Name\": \"PULLMAN INTERNATIONAL HOTELS\"\n        },\n        {\n            \"Code\": \"3520\",\n            \"Name\": \"MERIDIEN HOTELS\"\n        },\n        {\n            \"Code\": \"3521\",\n            \"Name\": \"ROYAL LAHAINA RESORTS\"\n        },\n        {\n            \"Code\": \"3522\",\n            \"Name\": \"TOKYO HOTEL\"\n        },\n        {\n            \"Code\": \"3523\",\n            \"Name\": \"PENINSULA HOTELS\"\n        },\n        {\n            \"Code\": \"3524\",\n            \"Name\": \"WELCOM GROUP HOTELS\"\n        },\n        {\n            \"Code\": \"3525\",\n            \"Name\": \"DUNFEY HOTELS\"\n        },\n        {\n            \"Code\": \"3526\",\n            \"Name\": \"PRINCE HOTELS\"\n        },\n        {\n            \"Code\": \"3527\",\n            \"Name\": \"DOWNTOWNER PASSPORT\"\n        },\n        {\n            \"Code\": \"3528\",\n            \"Name\": \"RED LION INNS\"\n        },\n        {\n            \"Code\": \"3529\",\n            \"Name\": \"CANADIAN PACIFIC HOTELS\"\n        },\n        {\n            \"Code\": \"3530\",\n            \"Name\": \"RENAISSANCE HOTELS\"\n        },\n        {\n            \"Code\": \"3531\",\n            \"Name\": \"KAUAI COCONUT BEACH RESORT\"\n        },\n        {\n            \"Code\": \"3532\",\n            \"Name\": \"ROYAL KONA RESORT\"\n        },\n        {\n            \"Code\": \"3533\",\n            \"Name\": \"HOTEL IBIS\"\n        },\n        {\n            \"Code\": \"3534\",\n            \"Name\": \"SOUTHERN PACIFIC HOTEL\"\n        },\n        {\n            \"Code\": \"3535\",\n            \"Name\": \"HILTON INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3536\",\n            \"Name\": \"AMFAC HOTELS\"\n        },\n        {\n            \"Code\": \"3537\",\n            \"Name\": \"ANA HOTELS\"\n        },\n        {\n            \"Code\": \"3538\",\n            \"Name\": \"CONCORDE HOTELS\"\n        },\n        {\n            \"Code\": \"3539\",\n            \"Name\": \"SUMMERFIELD SUITES HOTEL\"\n        },\n        {\n            \"Code\": \"3540\",\n            \"Name\": \"IBEROTEL HOTELS\"\n        },\n        {\n            \"Code\": \"3541\",\n            \"Name\": \"HOTEL OKURA\"\n        },\n        {\n            \"Code\": \"3542\",\n            \"Name\": \"ROYAL HOTELS\"\n        },\n        {\n            \"Code\": \"3543\",\n            \"Name\": \"FOUR SEASONS HOTELS\"\n        },\n        {\n            \"Code\": \"3544\",\n            \"Name\": \"CIGA HOTELS\"\n        },\n        {\n            \"Code\": \"3545\",\n            \"Name\": \"SHANGRI-LA INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3546\",\n            \"Name\": \"SIERRA SUITES HOTEL\"\n        },\n        {\n            \"Code\": \"3547\",\n            \"Name\": \"BREAKERS RESORT THE\"\n        },\n        {\n            \"Code\": \"3548\",\n            \"Name\": \"HOTELS MELIA\"\n        },\n        {\n            \"Code\": \"3549\",\n            \"Name\": \"AUBERGE DES GOVERNEURES\"\n        },\n        {\n            \"Code\": \"3550\",\n            \"Name\": \"REGAL 8 INNS\"\n        },\n        {\n            \"Code\": \"3551\",\n            \"Name\": \"MIRAGE HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3552\",\n            \"Name\": \"COAST HOTEL\"\n        },\n        {\n            \"Code\": \"3553\",\n            \"Name\": \"PARK INN BY RADISSON\"\n        },\n        {\n            \"Code\": \"3554\",\n            \"Name\": \"PINEHURST RESORT\"\n        },\n        {\n            \"Code\": \"3555\",\n            \"Name\": \"TREASURE ISLAND HOTEL\"\n        },\n        {\n            \"Code\": \"3556\",\n            \"Name\": \"BARTON CREEK RESORT\"\n        },\n        {\n            \"Code\": \"3557\",\n            \"Name\": \"MANHATTAN EAST SUITE HOTEL\"\n        },\n        {\n            \"Code\": \"3558\",\n            \"Name\": \"JOLLY HOTELS\"\n        },\n        {\n            \"Code\": \"3559\",\n            \"Name\": \"CANDLEWOOD SUITES\"\n        },\n        {\n            \"Code\": \"3560\",\n            \"Name\": \"ALADDIN RESORT AND CASINO\"\n        },\n        {\n            \"Code\": \"3561\",\n            \"Name\": \"GOLDEN NUGGET\"\n        },\n        {\n            \"Code\": \"3562\",\n            \"Name\": \"COMFORT INNS\"\n        },\n        {\n            \"Code\": \"3563\",\n            \"Name\": \"JOURNEYS END MOTELS\"\n        },\n        {\n            \"Code\": \"3564\",\n            \"Name\": \"SAM S TOWN HOTEL\"\n        },\n        {\n            \"Code\": \"3565\",\n            \"Name\": \"RELAX INNS\"\n        },\n        {\n            \"Code\": \"3566\",\n            \"Name\": \"GARDEN PLACE HOTEL\"\n        },\n        {\n            \"Code\": \"3567\",\n            \"Name\": \"SOHO GRAND HOTEL\"\n        },\n        {\n            \"Code\": \"3568\",\n            \"Name\": \"LADBROKE HOTELS\"\n        },\n        {\n            \"Code\": \"3569\",\n            \"Name\": \"TRIBECA GRAND HOTEL\"\n        },\n        {\n            \"Code\": \"3570\",\n            \"Name\": \"FORUM HOTELS\"\n        },\n        {\n            \"Code\": \"3571\",\n            \"Name\": \"GRAND WAILEA RESORT\"\n        },\n        {\n            \"Code\": \"3572\",\n            \"Name\": \"MIYAKO HOTEL\"\n        },\n        {\n            \"Code\": \"3573\",\n            \"Name\": \"SANDMAN HOTELS\"\n        },\n        {\n            \"Code\": \"3574\",\n            \"Name\": \"VENTURE INN\"\n        },\n        {\n            \"Code\": \"3575\",\n            \"Name\": \"VAGABOND HOTELS\"\n        },\n        {\n            \"Code\": \"3576\",\n            \"Name\": \"LA QUINTA RESORT\"\n        },\n        {\n            \"Code\": \"3577\",\n            \"Name\": \"MANDARIN ORIENTAL HOTELS\"\n        },\n        {\n            \"Code\": \"3578\",\n            \"Name\": \"FRANKENMUTH BAVARIAN\"\n        },\n        {\n            \"Code\": \"3579\",\n            \"Name\": \"MERCURE\"\n        },\n        {\n            \"Code\": \"3580\",\n            \"Name\": \"HOTEL DEL CORONADO\"\n        },\n        {\n            \"Code\": \"3581\",\n            \"Name\": \"DELTA HOTELS\"\n        },\n        {\n            \"Code\": \"3582\",\n            \"Name\": \"CALIFORNIA HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3583\",\n            \"Name\": \"RADISSON BLU\"\n        },\n        {\n            \"Code\": \"3584\",\n            \"Name\": \"PRINCESS HOTELS INT.\"\n        },\n        {\n            \"Code\": \"3585\",\n            \"Name\": \"HUNGAR HOTELS\"\n        },\n        {\n            \"Code\": \"3586\",\n            \"Name\": \"SOKOS HOTEL\"\n        },\n        {\n            \"Code\": \"3587\",\n            \"Name\": \"DORAL HOTELS\"\n        },\n        {\n            \"Code\": \"3588\",\n            \"Name\": \"HELMSLEY HOTELS\"\n        },\n        {\n            \"Code\": \"3589\",\n            \"Name\": \"DORAL GOLF RESORT\"\n        },\n        {\n            \"Code\": \"3590\",\n            \"Name\": \"FAIRMONT HOTELS\"\n        },\n        {\n            \"Code\": \"3591\",\n            \"Name\": \"SONEST HOTELS\"\n        },\n        {\n            \"Code\": \"3592\",\n            \"Name\": \"OMNI HOTELS\"\n        },\n        {\n            \"Code\": \"3593\",\n            \"Name\": \"CUNARD HOTELS\"\n        },\n        {\n            \"Code\": \"3594\",\n            \"Name\": \"ARIZONA BILTMORE\"\n        },\n        {\n            \"Code\": \"3595\",\n            \"Name\": \"HOSPITALITY INNS\"\n        },\n        {\n            \"Code\": \"3596\",\n            \"Name\": \"WYNN LAS VEGAS\"\n        },\n        {\n            \"Code\": \"3597\",\n            \"Name\": \"RIVERSIDE RESORT HOTEL AND CAS\"\n        },\n        {\n            \"Code\": \"3598\",\n            \"Name\": \"REGENT INTERNATIONAL HOTEL\"\n        },\n        {\n            \"Code\": \"3599\",\n            \"Name\": \"PANNONIA HOTELS\"\n        },\n        {\n            \"Code\": \"3600\",\n            \"Name\": \"SADDLEBROOK RESORT TAMPA\"\n        },\n        {\n            \"Code\": \"3601\",\n            \"Name\": \"TRADE WINDS RESORTS\"\n        },\n        {\n            \"Code\": \"3602\",\n            \"Name\": \"HUDSON HOTEL\"\n        },\n        {\n            \"Code\": \"3603\",\n            \"Name\": \"NOAH S HOTEL\"\n        },\n        {\n            \"Code\": \"3604\",\n            \"Name\": \"HILTON GARDEN INN\"\n        },\n        {\n            \"Code\": \"3605\",\n            \"Name\": \"JURYS DOYLE HOTEL\"\n        },\n        {\n            \"Code\": \"3606\",\n            \"Name\": \"JEFFERSON HOTEL\"\n        },\n        {\n            \"Code\": \"3607\",\n            \"Name\": \"FONTAINEBLEAU RESORTS\"\n        },\n        {\n            \"Code\": \"3608\",\n            \"Name\": \"GAYLORD OPRYLAND\"\n        },\n        {\n            \"Code\": \"3609\",\n            \"Name\": \"GAYLORD PALMS\"\n        },\n        {\n            \"Code\": \"3610\",\n            \"Name\": \"GAYLORD TEXAN\"\n        },\n        {\n            \"Code\": \"3611\",\n            \"Name\": \"C MON INN\"\n        },\n        {\n            \"Code\": \"3612\",\n            \"Name\": \"MOVENPICK HOTELS\"\n        },\n        {\n            \"Code\": \"3613\",\n            \"Name\": \"MICROTEL INN AND SUITES\"\n        },\n        {\n            \"Code\": \"3614\",\n            \"Name\": \"AMERICIN\"\n        },\n        {\n            \"Code\": \"3615\",\n            \"Name\": \"TRAVELODGE\"\n        },\n        {\n            \"Code\": \"3616\",\n            \"Name\": \"HERMITAGE HOTEL\"\n        },\n        {\n            \"Code\": \"3617\",\n            \"Name\": \"AMERICA S BEST VALUE INN\"\n        },\n        {\n            \"Code\": \"3618\",\n            \"Name\": \"GREAT WOLF\"\n        },\n        {\n            \"Code\": \"3619\",\n            \"Name\": \"ALOFT\"\n        },\n        {\n            \"Code\": \"3620\",\n            \"Name\": \"BINION S HORSESHOE CLUB\"\n        },\n        {\n            \"Code\": \"3621\",\n            \"Name\": \"EXTENDED STAY\"\n        },\n        {\n            \"Code\": \"3622\",\n            \"Name\": \"MERLIN HOTEL GROUP\"\n        },\n        {\n            \"Code\": \"3623\",\n            \"Name\": \"DORINT HOTELS\"\n        },\n        {\n            \"Code\": \"3624\",\n            \"Name\": \"LADY LUCK HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3625\",\n            \"Name\": \"HOTEL UNIVERSALE\"\n        },\n        {\n            \"Code\": \"3626\",\n            \"Name\": \"STUDIO PLUS\"\n        },\n        {\n            \"Code\": \"3627\",\n            \"Name\": \"EXTENDED STAY AMERICA\"\n        },\n        {\n            \"Code\": \"3628\",\n            \"Name\": \"EXCALIBUR HOTEL\"\n        },\n        {\n            \"Code\": \"3629\",\n            \"Name\": \"DAN HOTELS\"\n        },\n        {\n            \"Code\": \"3630\",\n            \"Name\": \"EXTENDED STAY DELUXE\"\n        },\n        {\n            \"Code\": \"3631\",\n            \"Name\": \"SLEEP INNS\"\n        },\n        {\n            \"Code\": \"3632\",\n            \"Name\": \"PHOENICIAN\"\n        },\n        {\n            \"Code\": \"3633\",\n            \"Name\": \"RANK HOTELS\"\n        },\n        {\n            \"Code\": \"3634\",\n            \"Name\": \"SWISSOTEL\"\n        },\n        {\n            \"Code\": \"3635\",\n            \"Name\": \"RESO HOTELS\"\n        },\n        {\n            \"Code\": \"3636\",\n            \"Name\": \"SAROVA HOTELS\"\n        },\n        {\n            \"Code\": \"3637\",\n            \"Name\": \"RAMADA\"\n        },\n        {\n            \"Code\": \"3638\",\n            \"Name\": \"HOWARD JOHNSON\"\n        },\n        {\n            \"Code\": \"3639\",\n            \"Name\": \"MOUNT CHARLOTTE THISTLE\"\n        },\n        {\n            \"Code\": \"3640\",\n            \"Name\": \"HYATT\"\n        },\n        {\n            \"Code\": \"3641\",\n            \"Name\": \"SOFITEL HOTELS\"\n        },\n        {\n            \"Code\": \"3642\",\n            \"Name\": \"NOVOTEL HOTELS\"\n        },\n        {\n            \"Code\": \"3643\",\n            \"Name\": \"STEIGENBERGER HOTELS\"\n        },\n        {\n            \"Code\": \"3644\",\n            \"Name\": \"ECONOLODGES\"\n        },\n        {\n            \"Code\": \"3645\",\n            \"Name\": \"QUEENS MOAT HOUSES\"\n        },\n        {\n            \"Code\": \"3646\",\n            \"Name\": \"SWALLOW HOTELS\"\n        },\n        {\n            \"Code\": \"3647\",\n            \"Name\": \"HUSA HOTELS\"\n        },\n        {\n            \"Code\": \"3648\",\n            \"Name\": \"DE VERA HOTELS\"\n        },\n        {\n            \"Code\": \"3649\",\n            \"Name\": \"RADISSON\"\n        },\n        {\n            \"Code\": \"3650\",\n            \"Name\": \"RED ROOF INNS\"\n        },\n        {\n            \"Code\": \"3651\",\n            \"Name\": \"IMPERIAL LONDON HOTELS\"\n        },\n        {\n            \"Code\": \"3652\",\n            \"Name\": \"EMBASSY HOTELS\"\n        },\n        {\n            \"Code\": \"3653\",\n            \"Name\": \"PENTA HOTELS\"\n        },\n        {\n            \"Code\": \"3654\",\n            \"Name\": \"LOEWS HOTELS\"\n        },\n        {\n            \"Code\": \"3655\",\n            \"Name\": \"SCANDIC HOTELS\"\n        },\n        {\n            \"Code\": \"3656\",\n            \"Name\": \"SARA HOTELS\"\n        },\n        {\n            \"Code\": \"3657\",\n            \"Name\": \"OBEROI HOTELS\"\n        },\n        {\n            \"Code\": \"3658\",\n            \"Name\": \"NEW OTANI HOTELS\"\n        },\n        {\n            \"Code\": \"3659\",\n            \"Name\": \"TAJ HOTELS INTERNATIONAL\"\n        },\n        {\n            \"Code\": \"3660\",\n            \"Name\": \"KNIGHTS INN\"\n        },\n        {\n            \"Code\": \"3661\",\n            \"Name\": \"METROPOLE HOTELS\"\n        },\n        {\n            \"Code\": \"3662\",\n            \"Name\": \"CIRCUS CIRCUS HOTEL\"\n        },\n        {\n            \"Code\": \"3663\",\n            \"Name\": \"HOTELES EL PRESIDENTE\"\n        },\n        {\n            \"Code\": \"3664\",\n            \"Name\": \"FLAG INNS\"\n        },\n        {\n            \"Code\": \"3665\",\n            \"Name\": \"HAMPTON INN HOTELS\"\n        },\n        {\n            \"Code\": \"3666\",\n            \"Name\": \"STAKIS HOTELS\"\n        },\n        {\n            \"Code\": \"3667\",\n            \"Name\": \"LUXOR HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3668\",\n            \"Name\": \"MARITIM HOTELS\"\n        },\n        {\n            \"Code\": \"3669\",\n            \"Name\": \"ELDORADO HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3670\",\n            \"Name\": \"ARCADE HOTELS\"\n        },\n        {\n            \"Code\": \"3671\",\n            \"Name\": \"ARCTIA HOTELS\"\n        },\n        {\n            \"Code\": \"3672\",\n            \"Name\": \"CAMPANILE HOTELS\"\n        },\n        {\n            \"Code\": \"3673\",\n            \"Name\": \"IBUSZ HOTELS\"\n        },\n        {\n            \"Code\": \"3674\",\n            \"Name\": \"RANTASIPI HOTELS\"\n        },\n        {\n            \"Code\": \"3675\",\n            \"Name\": \"INTERHOTEL CEDOK\"\n        },\n        {\n            \"Code\": \"3676\",\n            \"Name\": \"MONTE CARLO HOTEL\"\n        },\n        {\n            \"Code\": \"3677\",\n            \"Name\": \"CLIMAT DE FRANCE HOTELS\"\n        },\n        {\n            \"Code\": \"3678\",\n            \"Name\": \"CUMULUS HOTELS\"\n        },\n        {\n            \"Code\": \"3679\",\n            \"Name\": \"SILVER LEGACY HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3680\",\n            \"Name\": \"HOTELS OTHAN\"\n        },\n        {\n            \"Code\": \"3681\",\n            \"Name\": \"ADAMS MARK HOTELS\"\n        },\n        {\n            \"Code\": \"3682\",\n            \"Name\": \"SAHARA HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3683\",\n            \"Name\": \"BRADBURY SUITES\"\n        },\n        {\n            \"Code\": \"3684\",\n            \"Name\": \"BUDGET HOSTS INNS\"\n        },\n        {\n            \"Code\": \"3685\",\n            \"Name\": \"MUHTELIF OTELLER\"\n        },\n        {\n            \"Code\": \"3686\",\n            \"Name\": \"SUISSE CHALET\"\n        },\n        {\n            \"Code\": \"3687\",\n            \"Name\": \"MUHTELIF OTELLER\"\n        },\n        {\n            \"Code\": \"3688\",\n            \"Name\": \"BUDGETEL INNS\"\n        },\n        {\n            \"Code\": \"3689\",\n            \"Name\": \"CONSORT HOTELS\"\n        },\n        {\n            \"Code\": \"3690\",\n            \"Name\": \"COURTYARD BY MARRIOTT\"\n        },\n        {\n            \"Code\": \"3691\",\n            \"Name\": \"DILLON INN\"\n        },\n        {\n            \"Code\": \"3692\",\n            \"Name\": \"DOUBLETREE HOTELS\"\n        },\n        {\n            \"Code\": \"3693\",\n            \"Name\": \"DRURY INN\"\n        },\n        {\n            \"Code\": \"3694\",\n            \"Name\": \"ECONOMY INNS OF AMERICA\"\n        },\n        {\n            \"Code\": \"3695\",\n            \"Name\": \"EMBASSY SUITES\"\n        },\n        {\n            \"Code\": \"3696\",\n            \"Name\": \"EXCEL INN\"\n        },\n        {\n            \"Code\": \"3697\",\n            \"Name\": \"FAIRFIELD HOTELS\"\n        },\n        {\n            \"Code\": \"3698\",\n            \"Name\": \"HARLEY HOTELS\"\n        },\n        {\n            \"Code\": \"3699\",\n            \"Name\": \"MIDWAY MOTOR LODGE\"\n        },\n        {\n            \"Code\": \"3700\",\n            \"Name\": \"MOTEL 6\"\n        },\n        {\n            \"Code\": \"3701\",\n            \"Name\": \"LA MANSION DEL RIO\"\n        },\n        {\n            \"Code\": \"3702\",\n            \"Name\": \"REGISTRY HOTELS THE\"\n        },\n        {\n            \"Code\": \"3703\",\n            \"Name\": \"RESIDENCE INN\"\n        },\n        {\n            \"Code\": \"3704\",\n            \"Name\": \"ROYCE HOTELS\"\n        },\n        {\n            \"Code\": \"3705\",\n            \"Name\": \"SANDMAN INN\"\n        },\n        {\n            \"Code\": \"3706\",\n            \"Name\": \"SHILO INN\"\n        },\n        {\n            \"Code\": \"3707\",\n            \"Name\": \"SHONEY S INN\"\n        },\n        {\n            \"Code\": \"3708\",\n            \"Name\": \"VIRGIN RIVER HOTEL\"\n        },\n        {\n            \"Code\": \"3709\",\n            \"Name\": \"SUPER 8 MOTELS\"\n        },\n        {\n            \"Code\": \"3710\",\n            \"Name\": \"RITZ CARLTON THE\"\n        },\n        {\n            \"Code\": \"3711\",\n            \"Name\": \"FLAG INNS AUSTRALIA\"\n        },\n        {\n            \"Code\": \"3712\",\n            \"Name\": \"BUFFALO BILL S HOTEL\"\n        },\n        {\n            \"Code\": \"3713\",\n            \"Name\": \"QUALITY PACIFIC HOTEL\"\n        },\n        {\n            \"Code\": \"3714\",\n            \"Name\": \"FOUR SEASONS AUSTRALIA\"\n        },\n        {\n            \"Code\": \"3715\",\n            \"Name\": \"FAIRFIELD INN\"\n        },\n        {\n            \"Code\": \"3716\",\n            \"Name\": \"CARLTON HOTELS\"\n        },\n        {\n            \"Code\": \"3717\",\n            \"Name\": \"CITY LODGE HOTELS\"\n        },\n        {\n            \"Code\": \"3718\",\n            \"Name\": \"KAROS HOTELS\"\n        },\n        {\n            \"Code\": \"3719\",\n            \"Name\": \"PROTEA HOTELS\"\n        },\n        {\n            \"Code\": \"3720\",\n            \"Name\": \"SOUTHERN SUN HOTELS\"\n        },\n        {\n            \"Code\": \"3721\",\n            \"Name\": \"CONRAD\"\n        },\n        {\n            \"Code\": \"3722\",\n            \"Name\": \"WYNDHAM\"\n        },\n        {\n            \"Code\": \"3723\",\n            \"Name\": \"RICA HOTELS\"\n        },\n        {\n            \"Code\": \"3724\",\n            \"Name\": \"INTER NOR HOTELS\"\n        },\n        {\n            \"Code\": \"3725\",\n            \"Name\": \"SEA PINES RESORT\"\n        },\n        {\n            \"Code\": \"3726\",\n            \"Name\": \"RIO SUITES\"\n        },\n        {\n            \"Code\": \"3727\",\n            \"Name\": \"BROADMOOR HOTEL\"\n        },\n        {\n            \"Code\": \"3728\",\n            \"Name\": \"BALLYS HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3729\",\n            \"Name\": \"JOHN ASCUAGAS NUGGET\"\n        },\n        {\n            \"Code\": \"3730\",\n            \"Name\": \"MGM GRAND HOTEL\"\n        },\n        {\n            \"Code\": \"3731\",\n            \"Name\": \"HARRAHS HOTELS AND CASINO\"\n        },\n        {\n            \"Code\": \"3732\",\n            \"Name\": \"OPRYLAND HOTEL\"\n        },\n        {\n            \"Code\": \"3733\",\n            \"Name\": \"BOCA RATON RESORT\"\n        },\n        {\n            \"Code\": \"3734\",\n            \"Name\": \"HARVEY BRISTOL HOTELS\"\n        },\n        {\n            \"Code\": \"3735\",\n            \"Name\": \"MASTERS ECONOMY INNS\"\n        },\n        {\n            \"Code\": \"3736\",\n            \"Name\": \"COLORADO BELLE EDGEWATER RESOR\"\n        },\n        {\n            \"Code\": \"3737\",\n            \"Name\": \"RIVIERA HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3738\",\n            \"Name\": \"TROPICANA RESORT AND CASINO\"\n        },\n        {\n            \"Code\": \"3739\",\n            \"Name\": \"WOODSIDE HOTELS\"\n        },\n        {\n            \"Code\": \"3740\",\n            \"Name\": \"TOWNEPLACE HOTELS\"\n        },\n        {\n            \"Code\": \"3741\",\n            \"Name\": \"MILLENNIUM HOTELS\"\n        },\n        {\n            \"Code\": \"3742\",\n            \"Name\": \"CLUB MED\"\n        },\n        {\n            \"Code\": \"3743\",\n            \"Name\": \"BILTMORE HOTEL AND SUITES\"\n        },\n        {\n            \"Code\": \"3744\",\n            \"Name\": \"CAREFREE RESORT\"\n        },\n        {\n            \"Code\": \"3745\",\n            \"Name\": \"ST.REGIS HOTEL\"\n        },\n        {\n            \"Code\": \"3746\",\n            \"Name\": \"ELIOT HOTELS\"\n        },\n        {\n            \"Code\": \"3747\",\n            \"Name\": \"CLUB CORP\"\n        },\n        {\n            \"Code\": \"3748\",\n            \"Name\": \"WELLESLEY INNS\"\n        },\n        {\n            \"Code\": \"3749\",\n            \"Name\": \"BEVERLY HILLS HOTEL\"\n        },\n        {\n            \"Code\": \"3750\",\n            \"Name\": \"CROWNE PLAZA\"\n        },\n        {\n            \"Code\": \"3751\",\n            \"Name\": \"HOMEWOOD SUITES\"\n        },\n        {\n            \"Code\": \"3752\",\n            \"Name\": \"PEABODY HOTELS\"\n        },\n        {\n            \"Code\": \"3753\",\n            \"Name\": \"GREENBRIAR RESORTS\"\n        },\n        {\n            \"Code\": \"3754\",\n            \"Name\": \"AMELIA ISLAND PLANTATION\"\n        },\n        {\n            \"Code\": \"3755\",\n            \"Name\": \"HOMESTEAD THE\"\n        },\n        {\n            \"Code\": \"3756\",\n            \"Name\": \"SOUTH SEAS RESORTS\"\n        },\n        {\n            \"Code\": \"3757\",\n            \"Name\": \"CANYON RANCH\"\n        },\n        {\n            \"Code\": \"3758\",\n            \"Name\": \"KAHALA MANDARIN ORIENTAL\"\n        },\n        {\n            \"Code\": \"3759\",\n            \"Name\": \"ORCHID AT MAUNA LANI\"\n        },\n        {\n            \"Code\": \"3760\",\n            \"Name\": \"HALEKULANI HOTEL\"\n        },\n        {\n            \"Code\": \"3761\",\n            \"Name\": \"PRIMADONNDA HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3762\",\n            \"Name\": \"WHISKEY PETE S HOTEL\"\n        },\n        {\n            \"Code\": \"3763\",\n            \"Name\": \"CHATEAU ELAN WINERY\"\n        },\n        {\n            \"Code\": \"3764\",\n            \"Name\": \"BEAU RIVAGE HOTEL\"\n        },\n        {\n            \"Code\": \"3765\",\n            \"Name\": \"BELLAGIO HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3766\",\n            \"Name\": \"FREMONT HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3767\",\n            \"Name\": \"MAIN STREET HOTEL\"\n        },\n        {\n            \"Code\": \"3768\",\n            \"Name\": \"SILVER STAR HOTEL\"\n        },\n        {\n            \"Code\": \"3769\",\n            \"Name\": \"STRATOSPHERE HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3770\",\n            \"Name\": \"SPRINGHILL SUITES\"\n        },\n        {\n            \"Code\": \"3771\",\n            \"Name\": \"CAESARS HOTEL AND CASINO\"\n        },\n        {\n            \"Code\": \"3772\",\n            \"Name\": \"NEMACOLIN WOODLANDS\"\n        },\n        {\n            \"Code\": \"3773\",\n            \"Name\": \"VENETIAN RESORT HOTEL AND CASI\"\n        },\n        {\n            \"Code\": \"3774\",\n            \"Name\": \"NEW YORK NEW YORK HOTEL\"\n        },\n        {\n            \"Code\": \"3775\",\n            \"Name\": \"SANDS RESORT\"\n        },\n        {\n            \"Code\": \"3776\",\n            \"Name\": \"NEVELE GRANDE RESORT\"\n        },\n        {\n            \"Code\": \"3777\",\n            \"Name\": \"MANDALAY BAY RESORT\"\n        },\n        {\n            \"Code\": \"3778\",\n            \"Name\": \"FOUR POINTS HOTELS\"\n        },\n        {\n            \"Code\": \"3779\",\n            \"Name\": \"W HOTELS\"\n        },\n        {\n            \"Code\": \"3780\",\n            \"Name\": \"DISNEY RESORTS\"\n        },\n        {\n            \"Code\": \"3781\",\n            \"Name\": \"PATRICIA GRAND RESORT\"\n        },\n        {\n            \"Code\": \"3782\",\n            \"Name\": \"ROSEN HOTELS AND RESORTS\"\n        },\n        {\n            \"Code\": \"3783\",\n            \"Name\": \"TOWN AND COUNTRY RESORT\"\n        },\n        {\n            \"Code\": \"3784\",\n            \"Name\": \"FIRST HOSPITALITY HOTELS\"\n        },\n        {\n            \"Code\": \"3785\",\n            \"Name\": \"OUTRIGGER HOTELS\"\n        },\n        {\n            \"Code\": \"3786\",\n            \"Name\": \"OHANA HOTELS OF HAWAII\"\n        },\n        {\n            \"Code\": \"3787\",\n            \"Name\": \"CARIBE ROYALE RESORT\"\n        },\n        {\n            \"Code\": \"3788\",\n            \"Name\": \"ALA MOANA HOTEL\"\n        },\n        {\n            \"Code\": \"3789\",\n            \"Name\": \"SMUGGLERS NOTCH RESORT\"\n        },\n        {\n            \"Code\": \"3790\",\n            \"Name\": \"RAFFLES HOTELS\"\n        },\n        {\n            \"Code\": \"3791\",\n            \"Name\": \"STAYBRIDGE SUITES\"\n        },\n        {\n            \"Code\": \"3792\",\n            \"Name\": \"CLARIDGE CASINO TOTEL\"\n        },\n        {\n            \"Code\": \"3793\",\n            \"Name\": \"FLAMINGO HOTELS\"\n        },\n        {\n            \"Code\": \"3794\",\n            \"Name\": \"GRAND CASINO HOTELS\"\n        },\n        {\n            \"Code\": \"3795\",\n            \"Name\": \"PARIS LAS VEGAS HOTEL\"\n        },\n        {\n            \"Code\": \"3796\",\n            \"Name\": \"PEPPERMILL HOTEL CASINO\"\n        },\n        {\n            \"Code\": \"3797\",\n            \"Name\": \"ATLANTIC CITY HILTON RESORTS\"\n        },\n        {\n            \"Code\": \"3798\",\n            \"Name\": \"EMBASSY VACATION RESORT\"\n        },\n        {\n            \"Code\": \"3799\",\n            \"Name\": \"HALE KOA HOTEL\"\n        },\n        {\n            \"Code\": \"3800\",\n            \"Name\": \"HOMESTEAD SUITES\"\n        },\n        {\n            \"Code\": \"3801\",\n            \"Name\": \"WILDERNESS HOTEL AND GOLF RESO\"\n        },\n        {\n            \"Code\": \"3802\",\n            \"Name\": \"THE PALACE HOTEL\"\n        },\n        {\n            \"Code\": \"3803\",\n            \"Name\": \"THE WIGWAM GOLF RESORT AND SPA\"\n        },\n        {\n            \"Code\": \"3804\",\n            \"Name\": \"THE DIPLOMAT COUNTRY CLUB\"\n        },\n        {\n            \"Code\": \"3805\",\n            \"Name\": \"THE ATLANTIC\"\n        },\n        {\n            \"Code\": \"3806\",\n            \"Name\": \"PRINCEVILLE RESORT\"\n        },\n        {\n            \"Code\": \"3807\",\n            \"Name\": \"ELEMENT\"\n        },\n        {\n            \"Code\": \"3808\",\n            \"Name\": \"LXR\"\n        },\n        {\n            \"Code\": \"3809\",\n            \"Name\": \"SETTLE IN\"\n        },\n        {\n            \"Code\": \"3810\",\n            \"Name\": \"LA COSTA RESORT\"\n        },\n        {\n            \"Code\": \"3811\",\n            \"Name\": \"PREMIER TRAVEL  INNS\"\n        },\n        {\n            \"Code\": \"3812\",\n            \"Name\": \"HYATT PLACE\"\n        },\n        {\n            \"Code\": \"3813\",\n            \"Name\": \"HOTEL INDIGO\"\n        },\n        {\n            \"Code\": \"3814\",\n            \"Name\": \"THE ROOSEVELT HOTEL NY\"\n        },\n        {\n            \"Code\": \"3815\",\n            \"Name\": \"NICKELODEON FAMILY SUITES BY HOLIDA\"\n        },\n        {\n            \"Code\": \"3816\",\n            \"Name\": \"HOME2SUITES\"\n        },\n        {\n            \"Code\": \"3817\",\n            \"Name\": \"AFFINIA\"\n        },\n        {\n            \"Code\": \"3818\",\n            \"Name\": \"MAINSTAY SUITES/MAINSTAY SUITES\"\n        },\n        {\n            \"Code\": \"3819\",\n            \"Name\": \"OXFORT SUITES\"\n        },\n        {\n            \"Code\": \"3820\",\n            \"Name\": \"JUMEIRAH ESSEX HOUSE\"\n        },\n        {\n            \"Code\": \"3821\",\n            \"Name\": \"CARIBE ROYALE\"\n        },\n        {\n            \"Code\": \"3822\",\n            \"Name\": \"CROSSLAND\"\n        },\n        {\n            \"Code\": \"3823\",\n            \"Name\": \"GRAND SIERRA RESORT\"\n        },\n        {\n            \"Code\": \"3825\",\n            \"Name\": \"VDARA\"\n        },\n        {\n            \"Code\": \"3826\",\n            \"Name\": \"AUTOGRAPH\"\n        },\n        {\n            \"Code\": \"3827\",\n            \"Name\": \"GALT HOUSE\"\n        },\n        {\n            \"Code\": \"3828\",\n            \"Name\": \"COSMOPOLITAN OF LAS VEGAS\"\n        },\n        {\n            \"Code\": \"3829\",\n            \"Name\": \"COUNTRY INN BY CARLSON\"\n        },\n        {\n            \"Code\": \"3830\",\n            \"Name\": \"PARK PLAZA HOTEL \"\n        },\n        {\n            \"Code\": \"3831\",\n            \"Name\": \"WALDORF\"\n        },\n        {\n            \"Code\": \"3832\",\n            \"Name\": \"CURIO HOTELS\"\n        },\n        {\n            \"Code\": \"3833\",\n            \"Name\": \"CANOPY\"\n        },\n        {\n            \"Code\": \"3834\",\n            \"Name\": \"BAYMONT INN AND SUITES\"\n        },\n        {\n            \"Code\": \"3835\",\n            \"Name\": \"DOLCE HOTELS AND RESORTS\"\n        },\n        {\n            \"Code\": \"3836\",\n            \"Name\": \"HAWTHORNE SUITES BY WYNDHAM\"\n        },\n        {\n            \"Code\": \"4011\",\n            \"Name\": \"RAILROADS\"\n        },\n        {\n            \"Code\": \"4111\",\n            \"Name\": \"LOCAL/SUB COMMUTER PSGR TRNP, INCL FERRIES OR WATER TRNP\"\n        },\n        {\n            \"Code\": \"4112\",\n            \"Name\": \"PASSENGER RAILWAYS\"\n        },\n        {\n            \"Code\": \"4119\",\n            \"Name\": \"AMBULANCE SERVICES\"\n        },\n        {\n            \"Code\": \"4121\",\n            \"Name\": \"TAXICABS OR LIMOUSINES\"\n        },\n        {\n            \"Code\": \"4131\",\n            \"Name\": \"BUS LINES, INCLUDING CHARTERS, TOUR BUSES\"\n        },\n        {\n            \"Code\": \"4214\",\n            \"Name\": \"MOTOR FREIGHT CARRIERS, TRUCK-LOCAL/LONG\"\n        },\n        {\n            \"Code\": \"4215\",\n            \"Name\": \"COURIER SERVICES-AIR OR GROUND, FREIGHT\"\n        },\n        {\n            \"Code\": \"4225\",\n            \"Name\": \"PUBLIC WAREHOUSING-FARMROD,REFRIDGERAT\"\n        },\n        {\n            \"Code\": \"4411\",\n            \"Name\": \"CRUISE OR STEAMSHIP LINES\"\n        },\n        {\n            \"Code\": \"4457\",\n            \"Name\": \"BOATENTALSND LEASES\"\n        },\n        {\n            \"Code\": \"4468\",\n            \"Name\": \"MARINAS, MARINE SERVICEND SUPPLIES\"\n        },\n        {\n            \"Code\": \"4511\",\n            \"Name\": \"AIRLINES,IR CARRIERS (NOT LISTED BELOW)\"\n        },\n        {\n            \"Code\": \"4582\",\n            \"Name\": \"AIRPORTS,IRPORT TERMINALS OR FLYING FIELDS\"\n        },\n        {\n            \"Code\": \"4722\",\n            \"Name\": \"TRAVELGENCIES\"\n        },\n        {\n            \"Code\": \"4723\",\n            \"Name\": \"PACKAGE TOUR OPERATORS - GERMANY ONLY\"\n        },\n        {\n            \"Code\": \"4761\",\n            \"Name\": \"TRANSPORTATION/TRAVEL-RELATEDRRANGEMENT\"\n        },\n        {\n            \"Code\": \"4784\",\n            \"Name\": \"TOLLS,OADND BRIDGE FEES\"\n        },\n        {\n            \"Code\": \"4789\",\n            \"Name\": \"TRANSPORTATION SERVICES (NEC)\"\n        },\n        {\n            \"Code\": \"4812\",\n            \"Name\": \"TELECOMMUNCATIONS EQUIPMENT INCLUDING TELEPHONE SALES\"\n        },\n        {\n            \"Code\": \"4813\",\n            \"Name\": \"KEY-ENTERED TELECOM MERCHANT\"\n        },\n        {\n            \"Code\": \"4814\",\n            \"Name\": \"TELECOMMUNCATIONS SERV INCL LOCA/LONG DIST CREDIT & FAX\"\n        },\n        {\n            \"Code\": \"4815\",\n            \"Name\": \"MONTHLY SUMMARY TELEPHONE CHARGES\"\n        },\n        {\n            \"Code\": \"4816\",\n            \"Name\": \"COMPUTER NETWORK/INFO SVCS\"\n        },\n        {\n            \"Code\": \"4821\",\n            \"Name\": \"TELEGRAPH SERVICES\"\n        },\n        {\n            \"Code\": \"4829\",\n            \"Name\": \"MONEY ORDERS -- WIRE TRANSFER\"\n        },\n        {\n            \"Code\": \"4899\",\n            \"Name\": \"CABLEND OTHERAY TELEVISION SERVICES\"\n        },\n        {\n            \"Code\": \"4900\",\n            \"Name\": \"ELECTRIC, GAS, SANITARY, TELEPHONE OR WATER UTILITIES\"\n        },\n        {\n            \"Code\": \"5013\",\n            \"Name\": \"MOTOR VEHICLE SUPPLIESND NEWARTS\"\n        },\n        {\n            \"Code\": \"5021\",\n            \"Name\": \"COMMERCIAL FURNITURE\"\n        },\n        {\n            \"Code\": \"5039\",\n            \"Name\": \"CONSTRUCTION MATERIALS (NEC)\"\n        },\n        {\n            \"Code\": \"5044\",\n            \"Name\": \"PHOTOGRAPHIC,HOTOCOPY, MICROFILM EQUIPMENTND SUPPLIES\"\n        },\n        {\n            \"Code\": \"5045\",\n            \"Name\": \"COMPUTERSND COMPUTERERIPHERAL EQUIPMENTND SOFTWARE\"\n        },\n        {\n            \"Code\": \"5046\",\n            \"Name\": \"COMMERCIAL EQUIPMENT (NEC)\"\n        },\n        {\n            \"Code\": \"5047\",\n            \"Name\": \"MEDICAL, DENTAL, OPHTHALMICND HOSPITAL EQUIP\"\n        },\n        {\n            \"Code\": \"5051\",\n            \"Name\": \"METAL SERVICE CENTERSND OFFICES\"\n        },\n        {\n            \"Code\": \"5065\",\n            \"Name\": \"ELECTRICALARTSND EQUIPMENT\"\n        },\n        {\n            \"Code\": \"5072\",\n            \"Name\": \"HARDWARE,LUMBING, HEATING EQUIPMENTND SUPPLIES\"\n        },\n        {\n            \"Code\": \"5074\",\n            \"Name\": \"PLUMBINGND HEATING EQUIPMENTND SUPPLIES\"\n        },\n        {\n            \"Code\": \"5085\",\n            \"Name\": \"INDUSTRIAL SUPPLIES (NEC)\"\n        },\n        {\n            \"Code\": \"5094\",\n            \"Name\": \"PRECIOUS STONESND METALS, WATCHESND JEWELRY\"\n        },\n        {\n            \"Code\": \"5099\",\n            \"Name\": \"DURABLE GOODS (NEC)\"\n        },\n        {\n            \"Code\": \"5111\",\n            \"Name\": \"STATIONERY, OFFICE SUPPLIES,RINTINGND WRITINGAPER\"\n        },\n        {\n            \"Code\": \"5122\",\n            \"Name\": \"DRUGS, DRUGROPRIETARIESND DRUGGIST SUNDRIES\"\n        },\n        {\n            \"Code\": \"5131\",\n            \"Name\": \"PIECE GOODS, NOTIONS,ND OTHER DRY GOODS\"\n        },\n        {\n            \"Code\": \"5137\",\n            \"Name\": \"MEN'S, WOMEN'SND CHILDREN'S UNIFORMS\"\n        },\n        {\n            \"Code\": \"5139\",\n            \"Name\": \"COMMERCIAL FOOTWEAR\"\n        },\n        {\n            \"Code\": \"5169\",\n            \"Name\": \"CHEMICALSNDLLIEDRODUCTS (NEC)\"\n        },\n        {\n            \"Code\": \"5172\",\n            \"Name\": \"PETROLEUMNDETROLEUMRODUCTS\"\n        },\n        {\n            \"Code\": \"5192\",\n            \"Name\": \"BOOKS,ERIODICALSND NEWSPAPERS\"\n        },\n        {\n            \"Code\": \"5193\",\n            \"Name\": \"FLORIST SUPPLIES, NURSERY STOCKND FLOWERS\"\n        },\n        {\n            \"Code\": \"5198\",\n            \"Name\": \"PAINTS, VARNISHESND SUPPLIES\"\n        },\n        {\n            \"Code\": \"5199\",\n            \"Name\": \"NON-DURABLE GOODS (NEC)\"\n        },\n        {\n            \"Code\": \"5200\",\n            \"Name\": \"HOME SUPPLY WAREHOUSE STORES\"\n        },\n        {\n            \"Code\": \"5211\",\n            \"Name\": \"LUMBERND BUILDING MATERIALS STORES\"\n        },\n        {\n            \"Code\": \"5231\",\n            \"Name\": \"GLASS,AINT OR WALLPAPER STORES\"\n        },\n        {\n            \"Code\": \"5251\",\n            \"Name\": \"HARDWARE STORES\"\n        },\n        {\n            \"Code\": \"5261\",\n            \"Name\": \"GARDENND LAWN SUPPLY STORES OR NURSERIES\"\n        },\n        {\n            \"Code\": \"5271\",\n            \"Name\": \"MOBILE HOME DEALERS\"\n        },\n        {\n            \"Code\": \"5299\",\n            \"Name\": \"WAREHOUSE CLUB GAS\"\n        },\n        {\n            \"Code\": \"5300\",\n            \"Name\": \"WHOLESALE CLUBS\"\n        },\n        {\n            \"Code\": \"5309\",\n            \"Name\": \"DUTY FREE STORES\"\n        },\n        {\n            \"Code\": \"5310\",\n            \"Name\": \"DISCOUNT STORES\"\n        },\n        {\n            \"Code\": \"5311\",\n            \"Name\": \"DEPARTMENT STORES\"\n        },\n        {\n            \"Code\": \"5331\",\n            \"Name\": \"VARIETY STORES\"\n        },\n        {\n            \"Code\": \"5399\",\n            \"Name\": \"GENERAL MERCHANDISE OR CONVENIENCE FOOD STORES\"\n        },\n        {\n            \"Code\": \"5411\",\n            \"Name\": \"GROCERY STORES OR SUPERMARKETS\"\n        },\n        {\n            \"Code\": \"5422\",\n            \"Name\": \"FREEZERND LOCKER MEATROVISIONERS\"\n        },\n        {\n            \"Code\": \"5441\",\n            \"Name\": \"CANDY, CONFECTIONERY OR NUTS STORES\"\n        },\n        {\n            \"Code\": \"5451\",\n            \"Name\": \"DAIRYRODUCTS STORES\"\n        },\n        {\n            \"Code\": \"5462\",\n            \"Name\": \"BAKERIES\"\n        },\n        {\n            \"Code\": \"5499\",\n            \"Name\": \"MISC FOOD STORES - SPECIALTY MARKETS & CONVENIENCE\"\n        },\n        {\n            \"Code\": \"5511\",\n            \"Name\": \"AUTO/TRUCK DEALERS NEW/USED SALEEPAIRARTS & LEASE\"\n        },\n        {\n            \"Code\": \"5521\",\n            \"Name\": \"AUTOMOBILEND TRUCK DEALERS (USED ONLY)\"\n        },\n        {\n            \"Code\": \"5531\",\n            \"Name\": \"AUTOMOBILE SUPPLY STORES OR HOME SUPPLY STORES\"\n        },\n        {\n            \"Code\": \"5532\",\n            \"Name\": \"AUTOMOTIVE TIRE STORES\"\n        },\n        {\n            \"Code\": \"5533\",\n            \"Name\": \"AUTOMOTIVEARTS,CCESSORIES STORES\"\n        },\n        {\n            \"Code\": \"5541\",\n            \"Name\": \"GAS/SERVICE STATIONS WITH/WITHOUTNCILLARY SERVICES\"\n        },\n        {\n            \"Code\": \"5542\",\n            \"Name\": \"AUTOMATED FUEL DISPENSERS\"\n        },\n        {\n            \"Code\": \"5551\",\n            \"Name\": \"BOAT DEALERS\"\n        },\n        {\n            \"Code\": \"5561\",\n            \"Name\": \"RECREATIONAL & UTILITY TRAILERS, CAMPER DEALERS\"\n        },\n        {\n            \"Code\": \"5571\",\n            \"Name\": \"MOTORCYCLE DEALERS\"\n        },\n        {\n            \"Code\": \"5592\",\n            \"Name\": \"MOTOR HOME DEALERS\"\n        },\n        {\n            \"Code\": \"5598\",\n            \"Name\": \"SNOWMOBILE DEALERS\"\n        },\n        {\n            \"Code\": \"5599\",\n            \"Name\": \"AUTOMOTIVE DEALERS\"\n        },\n        {\n            \"Code\": \"5611\",\n            \"Name\": \"MEN'SND/OR BOYS' CLOTHINGNDCCESSORIES STORES\"\n        },\n        {\n            \"Code\": \"5621\",\n            \"Name\": \"WOMEN'SEADY-TO-WEAR STORES\"\n        },\n        {\n            \"Code\": \"5631\",\n            \"Name\": \"WOMEN'SCCESSORYND SPECIALTY SHOPS\"\n        },\n        {\n            \"Code\": \"5641\",\n            \"Name\": \"CHILDREN'SND INFANTS' WEAR STORES\"\n        },\n        {\n            \"Code\": \"5651\",\n            \"Name\": \"FAMILY CLOTHING STORES\"\n        },\n        {\n            \"Code\": \"5655\",\n            \"Name\": \"RIDING OR SPORTSPPAREL STORES\"\n        },\n        {\n            \"Code\": \"5661\",\n            \"Name\": \"SHOE STORES\"\n        },\n        {\n            \"Code\": \"5681\",\n            \"Name\": \"FURRIERSND FUR SHOPS\"\n        },\n        {\n            \"Code\": \"5691\",\n            \"Name\": \"MEN'SND WOMEN'S CLOTHING STORES\"\n        },\n        {\n            \"Code\": \"5697\",\n            \"Name\": \"TAILORS, SEAMSTRESSES, MENDING &LTERATIONS\"\n        },\n        {\n            \"Code\": \"5698\",\n            \"Name\": \"WIGND TOUPEE STORES\"\n        },\n        {\n            \"Code\": \"5699\",\n            \"Name\": \"APPARELNDCCESSORY SHOPS -- MISCELLANEOUS\"\n        },\n        {\n            \"Code\": \"5712\",\n            \"Name\": \"FURNITURE, HOME FURNISHINGS & EQUIP STORES EXCLPPLIANCES\"\n        },\n        {\n            \"Code\": \"5713\",\n            \"Name\": \"FLOOR COVERING STORES\"\n        },\n        {\n            \"Code\": \"5714\",\n            \"Name\": \"DRAPERY, WINDOWCOVERING,ND UPHOLSTERY STORES\"\n        },\n        {\n            \"Code\": \"5715\",\n            \"Name\": \"ALCOHOLIC BEVERAGE WHOLESALERS\"\n        },\n        {\n            \"Code\": \"5718\",\n            \"Name\": \"FIREPLACES, FIREPLACE SCREENSNDCCESSORIES STORES\"\n        },\n        {\n            \"Code\": \"5719\",\n            \"Name\": \"HOME FURNISHING SPECIALTY STORES -- MISCELLANEOUS\"\n        },\n        {\n            \"Code\": \"5722\",\n            \"Name\": \"APPLIANCE STORES (NEC) OR HOUSEHOLDPPLIANCE STORES\"\n        },\n        {\n            \"Code\": \"5732\",\n            \"Name\": \"ELECTRONIC SALES\"\n        },\n        {\n            \"Code\": \"5733\",\n            \"Name\": \"MUSIC STORES, MUSICAL INSTRUMENTS,IANOS, SHEET MUSIC\"\n        },\n        {\n            \"Code\": \"5734\",\n            \"Name\": \"COMPUTER SOFTWARE STORES\"\n        },\n        {\n            \"Code\": \"5735\",\n            \"Name\": \"RECORD SHOPS\"\n        },\n        {\n            \"Code\": \"5811\",\n            \"Name\": \"CATERERS\"\n        },\n        {\n            \"Code\": \"5812\",\n            \"Name\": \"Restaurant\"\n        },\n        {\n            \"Code\": \"5813\",\n            \"Name\": \"ALCOHOLIC BEVERAGES DRINKINGLACES - BARS NIGHTCLUBS ETC\"\n        },\n        {\n            \"Code\": \"5814\",\n            \"Name\": \"FAST FOODESTAURANTS\"\n        },\n        {\n            \"Code\": \"5815\",\n            \"Name\": \"DIGITAL GOODS MEDIA: BOOKS, MOVIES, MUSIC\"\n        },\n        {\n            \"Code\": \"5816\",\n            \"Name\": \"DIGITAL GOODS: GAMES\"\n        },\n        {\n            \"Code\": \"5817\",\n            \"Name\": \"DIGITAL GOODS:PPLICATIONS (EXCLUDES GAMES)\"\n        },\n        {\n            \"Code\": \"5818\",\n            \"Name\": \"LARGE DIGITAL GOODS MERCHANT\"\n        },\n        {\n            \"Code\": \"5912\",\n            \"Name\": \"PHARMCIES OR DRUG STORES\"\n        },\n        {\n            \"Code\": \"5921\",\n            \"Name\": \"LIQUOR, WINE,ACKAGE OR BEER STORES\"\n        },\n        {\n            \"Code\": \"5931\",\n            \"Name\": \"SECONDHAND OR USED MERCHANDISE STORES\"\n        },\n        {\n            \"Code\": \"5932\",\n            \"Name\": \"ANTIQUE SHOPS\"\n        },\n        {\n            \"Code\": \"5933\",\n            \"Name\": \"PAWN SHOPS\"\n        },\n        {\n            \"Code\": \"5935\",\n            \"Name\": \"WRECKING & SALVAGE YARDS\"\n        },\n        {\n            \"Code\": \"5937\",\n            \"Name\": \"ANTIQUEEPRODUCTIONS\"\n        },\n        {\n            \"Code\": \"5940\",\n            \"Name\": \"BICYCLE SHOPS -- SALESND SERVICE\"\n        },\n        {\n            \"Code\": \"5941\",\n            \"Name\": \"SPORTING GOODS STORES\"\n        },\n        {\n            \"Code\": \"5942\",\n            \"Name\": \"BOOK STORES\"\n        },\n        {\n            \"Code\": \"5943\",\n            \"Name\": \"STATIONERY STORES, OFFICE & SCHOOL SUPPLY STORES\"\n        },\n        {\n            \"Code\": \"5944\",\n            \"Name\": \"CLOCK, JEWELRY, SILVERWARE OR WATCH STORES\"\n        },\n        {\n            \"Code\": \"5945\",\n            \"Name\": \"HOBBY, TOY OR GAMES STORES\"\n        },\n        {\n            \"Code\": \"5946\",\n            \"Name\": \"CAMERAND/ORHOTOGRAPHIC SUPPLY STORES\"\n        },\n        {\n            \"Code\": \"5947\",\n            \"Name\": \"CARD, GIFT, NOVELTY OR SOUVENIR SHOPS\"\n        },\n        {\n            \"Code\": \"5948\",\n            \"Name\": \"LUGGAGE OR LEATHER GOODS STORES\"\n        },\n        {\n            \"Code\": \"5949\",\n            \"Name\": \"NEEDLEWORK, SEWING OR FABRICNDIECE GOODS STORES\"\n        },\n        {\n            \"Code\": \"5950\",\n            \"Name\": \"GLASSWARE/CRYSTAL STORES\"\n        },\n        {\n            \"Code\": \"5960\",\n            \"Name\": \"DIRECT MARKETING INSURANCE SERVICES\"\n        },\n        {\n            \"Code\": \"5961\",\n            \"Name\": \"MAIL ORDER HOUSES INCL CATALOG ORDER STORES BOOK/RECORD CLUB\"\n        },\n        {\n            \"Code\": \"5962\",\n            \"Name\": \"TELEMARK, TRAVEL-RELATEDRRANGEMENT SER\"\n        },\n        {\n            \"Code\": \"5963\",\n            \"Name\": \"DOOR-TO-DOOR SALES OR DIRECT SELLING ESTABLISHMENTS\"\n        },\n        {\n            \"Code\": \"5964\",\n            \"Name\": \"CATALOG MERCHANT\"\n        },\n        {\n            \"Code\": \"5965\",\n            \"Name\": \"COMBINATION CATALOGNDETAIL MERCHANT\"\n        },\n        {\n            \"Code\": \"5966\",\n            \"Name\": \"OUTBOUND TELEMARKETING MERCHANT\"\n        },\n        {\n            \"Code\": \"5967\",\n            \"Name\": \"INBOUND TELESERVICES MERCHANT\"\n        },\n        {\n            \"Code\": \"5968\",\n            \"Name\": \"CONTINUITY/SUBSCRIPTION MERCHANT\"\n        },\n        {\n            \"Code\": \"5969\",\n            \"Name\": \"DIRECT MARKETERS (NEC)\"\n        },\n        {\n            \"Code\": \"5970\",\n            \"Name\": \"CRAFT ORRTIST'S SUPPLY SHOPS\"\n        },\n        {\n            \"Code\": \"5971\",\n            \"Name\": \"ART DEALERS OR GALLERIES\"\n        },\n        {\n            \"Code\": \"5972\",\n            \"Name\": \"STAMPND COIN STORES\"\n        },\n        {\n            \"Code\": \"5973\",\n            \"Name\": \"RELIGIOUS GOODS STORES\"\n        },\n        {\n            \"Code\": \"5974\",\n            \"Name\": \"RUBBER STAMP STORES/RESERVED FOR NATIONAL USE\"\n        },\n        {\n            \"Code\": \"5975\",\n            \"Name\": \"HEARINGIDS -- SALES, SERVICEND SUPPLY STORES\"\n        },\n        {\n            \"Code\": \"5976\",\n            \"Name\": \"ORTHOPEDIC GOODS,ROSTHETIC DEVICES\"\n        },\n        {\n            \"Code\": \"5977\",\n            \"Name\": \"COSMETIC STORES\"\n        },\n        {\n            \"Code\": \"5978\",\n            \"Name\": \"TYPEWRITER STORES -- SALES,ENTALS, SERVICE\"\n        },\n        {\n            \"Code\": \"5983\",\n            \"Name\": \"FUEL DEALERS-FUEL,OIL,WOOD,COAL,LIQUE\"\n        },\n        {\n            \"Code\": \"5992\",\n            \"Name\": \"FLORISTS\"\n        },\n        {\n            \"Code\": \"5993\",\n            \"Name\": \"CIGAR STORESND STANDS\"\n        },\n        {\n            \"Code\": \"5994\",\n            \"Name\": \"NEWS DEALERSND NEWSSTANDS\"\n        },\n        {\n            \"Code\": \"5995\",\n            \"Name\": \"PET SHOPS,ET FOODSND SUPPLIES STORES\"\n        },\n        {\n            \"Code\": \"5996\",\n            \"Name\": \"SWIMMINGOOLS -- SALES, SERVICEND SUPPLIES\"\n        },\n        {\n            \"Code\": \"5997\",\n            \"Name\": \"ELECTRICAZOR STORES -- SALESND SERVICE\"\n        },\n        {\n            \"Code\": \"5998\",\n            \"Name\": \"AWNINGND TENT SHOPS\"\n        },\n        {\n            \"Code\": \"5999\",\n            \"Name\": \"MISCELLANEOUS & SPECIALTY STORES\"\n        },\n        {\n            \"Code\": \"6010\",\n            \"Name\": \"FINANCIAL INSTITUTIONS - MANUAL CASH DISBURSEMENTS\"\n        },\n        {\n            \"Code\": \"6011\",\n            \"Name\": \"FINANCIAL INSTITUTIONS -UTOMATED CASH DISBURSEMENTS\"\n        },\n        {\n            \"Code\": \"6012\",\n            \"Name\": \"FINANCIAL INSTITUTIONS - MERCHANDISE & SERVICES\"\n        },\n        {\n            \"Code\": \"6050\",\n            \"Name\": \"QUASI CASH-MEMBER FINANCIAL INSTITUTION\"\n        },\n        {\n            \"Code\": \"6051\",\n            \"Name\": \"QUASI CASH\"\n        },\n        {\n            \"Code\": \"6211\",\n            \"Name\": \"SECURITY BROKERS/DEALERS\"\n        },\n        {\n            \"Code\": \"6300\",\n            \"Name\": \"INSURANCE SALESND UNDERWRITING\"\n        },\n        {\n            \"Code\": \"6381\",\n            \"Name\": \"INSURANCEREMIUMS\"\n        },\n        {\n            \"Code\": \"6399\",\n            \"Name\": \"INSURANCE (NEC)\"\n        },\n        {\n            \"Code\": \"6513\",\n            \"Name\": \"REAL ESTATEGENTSND MANAGERS-RENTALS\"\n        },\n        {\n            \"Code\": \"6529\",\n            \"Name\": \"REMOTE STORED VALUE LOAD-MEMBER FINANCIAL INSTITUTION\"\n        },\n        {\n            \"Code\": \"6530\",\n            \"Name\": \"REMOTE STORED VALUE LOAD\"\n        },\n        {\n            \"Code\": \"6531\",\n            \"Name\": \"PAYMENT SERVICEROVIDER-MONEY TRANSFER\"\n        },\n        {\n            \"Code\": \"6532\",\n            \"Name\": \"PAYMENT TRANSACTION - MEMBER FINANCIAL I\"\n        },\n        {\n            \"Code\": \"6533\",\n            \"Name\": \"PAYMENT TRANSACTION - MERCHANT\"\n        },\n        {\n            \"Code\": \"6534\",\n            \"Name\": \"MONEY TRANSFER-MEMBER FINANCIAL INSTITUT\"\n        },\n        {\n            \"Code\": \"6535\",\n            \"Name\": \"VALUEURCHASE-MEMBER FINANCIAL INSTITUT\"\n        },\n        {\n            \"Code\": \"6536\",\n            \"Name\": \"MONEYSEND INTRACOUNTRY\"\n        },\n        {\n            \"Code\": \"6537\",\n            \"Name\": \"MONEYSEND INTERCOUNTRY\"\n        },\n        {\n            \"Code\": \"6538\",\n            \"Name\": \"MASTERCARD MONEYSEND FUNDING TRANSACTION\"\n        },\n        {\n            \"Code\": \"6540\",\n            \"Name\": \"POI FUNDING TRANSACTIONS\"\n        },\n        {\n            \"Code\": \"6555\",\n            \"Name\": \"MASTERCARD INITIATEDEBATE/REWARDS\"\n        },\n        {\n            \"Code\": \"6611\",\n            \"Name\": \"OVERPAYMENTS\"\n        },\n        {\n            \"Code\": \"6760\",\n            \"Name\": \"SAVINGS BONDS\"\n        },\n        {\n            \"Code\": \"7011\",\n            \"Name\": \"Hotel\"\n        },\n        {\n            \"Code\": \"7012\",\n            \"Name\": \"TIMESHARES\"\n        },\n        {\n            \"Code\": \"7032\",\n            \"Name\": \"SPORT/RECREATIONAL CAMPS\"\n        },\n        {\n            \"Code\": \"7033\",\n            \"Name\": \"CAMPGROUNDS OR TRAILERARKS\"\n        },\n        {\n            \"Code\": \"7210\",\n            \"Name\": \"CLEANING, LAUNDRYND GARMENT SERVICES\"\n        },\n        {\n            \"Code\": \"7211\",\n            \"Name\": \"DIAPER SERVICES OR LAUNDROMATS\"\n        },\n        {\n            \"Code\": \"7216\",\n            \"Name\": \"DRY CLEANERS\"\n        },\n        {\n            \"Code\": \"7217\",\n            \"Name\": \"UPHOLSTERY CLEANING OR CARPET CLEANING\"\n        },\n        {\n            \"Code\": \"7221\",\n            \"Name\": \"PHOTOGRAPHIC STUDIOS\"\n        },\n        {\n            \"Code\": \"7230\",\n            \"Name\": \"BARBER OR BEAUTY SHOPS\"\n        },\n        {\n            \"Code\": \"7251\",\n            \"Name\": \"SHOEEPAIR SHOPS, SHOE SHINEARLORS\"\n        },\n        {\n            \"Code\": \"7261\",\n            \"Name\": \"CREMATORIES OR FUNERAL SERVICES\"\n        },\n        {\n            \"Code\": \"7272\",\n            \"Name\": \"ESCORT SERVICES\"\n        },\n        {\n            \"Code\": \"7273\",\n            \"Name\": \"DATING OR ESCORT SERVICES\"\n        },\n        {\n            \"Code\": \"7276\",\n            \"Name\": \"TAXREPARATION SERVICE\"\n        },\n        {\n            \"Code\": \"7277\",\n            \"Name\": \"COUNSELING SERVICE -- DEBT, MARRIAGE,ERSONAL\"\n        },\n        {\n            \"Code\": \"7278\",\n            \"Name\": \"BUYING OR SHOPPING SERVICES CLUBS\"\n        },\n        {\n            \"Code\": \"7280\",\n            \"Name\": \"HOSPITALATIENTERSONAL FUNDS WITHDRAW\"\n        },\n        {\n            \"Code\": \"7295\",\n            \"Name\": \"BABYSITTING SERVICES\"\n        },\n        {\n            \"Code\": \"7296\",\n            \"Name\": \"CLOTHINGENTAL -- COSTUMES, FORMAL WEAR, UNIFORMS\"\n        },\n        {\n            \"Code\": \"7297\",\n            \"Name\": \"MASSAGEARLORS\"\n        },\n        {\n            \"Code\": \"7298\",\n            \"Name\": \"BEAUTY OR HEALTH SPAS\"\n        },\n        {\n            \"Code\": \"7299\",\n            \"Name\": \"MISCERSONAL SERVICES NOT ELSEWHERE CLASSIFIED\"\n        },\n        {\n            \"Code\": \"7311\",\n            \"Name\": \"ADVERTISING SERVICES\"\n        },\n        {\n            \"Code\": \"7321\",\n            \"Name\": \"CONSUMER CREDITEPORTINGGENCIES\"\n        },\n        {\n            \"Code\": \"7322\",\n            \"Name\": \"DEBT COLLECTIONGENCIES\"\n        },\n        {\n            \"Code\": \"7332\",\n            \"Name\": \"PHOTOCOPYING & BLUEPRINTING SERVICES\"\n        },\n        {\n            \"Code\": \"7333\",\n            \"Name\": \"PHOTOGRAPHY,RTND GRAPHIC -- COMMERCIAL\"\n        },\n        {\n            \"Code\": \"7338\",\n            \"Name\": \"PRINT SHOPS, QUICK COPY SERVICES OREPRODUCTION SERVICES\"\n        },\n        {\n            \"Code\": \"7339\",\n            \"Name\": \"STENOGRAPHIC SERVICES\"\n        },\n        {\n            \"Code\": \"7341\",\n            \"Name\": \"WINDOW CLEANING SERVICES\"\n        },\n        {\n            \"Code\": \"7342\",\n            \"Name\": \"DISINFECTING OR EXTERMINATING SERVICES\"\n        },\n        {\n            \"Code\": \"7349\",\n            \"Name\": \"CLEANINGND MAINTENANCE, JANITORIAL SERVICES\"\n        },\n        {\n            \"Code\": \"7361\",\n            \"Name\": \"EMPLOYMENTGENCIES OR TEMPORARY HELP SERVICES\"\n        },\n        {\n            \"Code\": \"7372\",\n            \"Name\": \"COMPUTERROGRAMMING, SYSTEMS DESIGN OR DATPROCESSING SERV\"\n        },\n        {\n            \"Code\": \"7375\",\n            \"Name\": \"INFORMATIONETRIEVAL SERVICES\"\n        },\n        {\n            \"Code\": \"7379\",\n            \"Name\": \"COMPUTER MAINTENANCE,EPAIRND SERVICES\"\n        },\n        {\n            \"Code\": \"7392\",\n            \"Name\": \"MANAGEMENT,UBLICELATIONS OR CONSULTING SERVICES\"\n        },\n        {\n            \"Code\": \"7393\",\n            \"Name\": \"DETECTIVEGENCY,ROTECTIVE SERV, GUARD DOG,RMORED CAR\"\n        },\n        {\n            \"Code\": \"7394\",\n            \"Name\": \"EQUIP, TOOL, FURNITURE,PPLIANCE LEASE/RENTAL\"\n        },\n        {\n            \"Code\": \"7395\",\n            \"Name\": \"PHOTOFINISHING LABORATORIES,HOTO DEVELOPING\"\n        },\n        {\n            \"Code\": \"7399\",\n            \"Name\": \"BUSINESS SERVICES (NEC)\"\n        },\n        {\n            \"Code\": \"7511\",\n            \"Name\": \"TRUCK STOP TRANSACTIONS\"\n        },\n        {\n            \"Code\": \"7512\",\n            \"Name\": \"CARENTALGENCIES -- NOT LISTED BELOW\"\n        },\n        {\n            \"Code\": \"7513\",\n            \"Name\": \"RENTALS -- TRUCKS, TRAILERS OR UTILITY TRAILERS\"\n        },\n        {\n            \"Code\": \"7519\",\n            \"Name\": \"RECREATIONAL VEHICLEENTALS OR MOTOR HOMEENTALS\"\n        },\n        {\n            \"Code\": \"7523\",\n            \"Name\": \"AUTOMOBILEARKING ORARKING LOTS\"\n        },\n        {\n            \"Code\": \"7524\",\n            \"Name\": \"EXPRESSAYMENT SERVICES -ARKING/GARAGE\"\n        },\n        {\n            \"Code\": \"7531\",\n            \"Name\": \"AUTOMOTIVE BODYEPAIR SHOPS\"\n        },\n        {\n            \"Code\": \"7534\",\n            \"Name\": \"TIREETREADINGNDEPAIR SHOPS\"\n        },\n        {\n            \"Code\": \"7535\",\n            \"Name\": \"AUTOMOTIVEAINT SHOPS\"\n        },\n        {\n            \"Code\": \"7538\",\n            \"Name\": \"AUTOMOTIVE SERVICE SHOPS (NON-DEALER)\"\n        },\n        {\n            \"Code\": \"7542\",\n            \"Name\": \"CAR WASHES\"\n        },\n        {\n            \"Code\": \"7549\",\n            \"Name\": \"TOWING SERVICES\"\n        },\n        {\n            \"Code\": \"7622\",\n            \"Name\": \"RADIO, STEREO OR TELEVISIONEPAIR SHOPS\"\n        },\n        {\n            \"Code\": \"7623\",\n            \"Name\": \"AIR CONDITIONING OREFRIGERATIONEPAIR SHOPS\"\n        },\n        {\n            \"Code\": \"7629\",\n            \"Name\": \"APPLIANCE OR ELECTRICALEPAIR SHOPS\"\n        },\n        {\n            \"Code\": \"7631\",\n            \"Name\": \"CLOCK, JEWELRY OR WATCHEPAIR\"\n        },\n        {\n            \"Code\": \"7641\",\n            \"Name\": \"REUPHOLSTERYND FURNITUREEPAIR\"\n        },\n        {\n            \"Code\": \"7692\",\n            \"Name\": \"WELDING\"\n        },\n        {\n            \"Code\": \"7699\",\n            \"Name\": \"REPAIR SHOPSNDELATED SERVICES -- MISCELLANEOUS\"\n        },\n        {\n            \"Code\": \"7800\",\n            \"Name\": \"GOVERNMENT-OWNED LOTTERIES\"\n        },\n        {\n            \"Code\": \"7801\",\n            \"Name\": \"GOVERNMENT LICENSED CASINOS (ONLINE GAMBLING)\"\n        },\n        {\n            \"Code\": \"7802\",\n            \"Name\": \"GOVERNMENT LICENSED HORSE/DOGACING\"\n        },\n        {\n            \"Code\": \"7829\",\n            \"Name\": \"MOTIONICTUREND VIDEO TAPERODUCTIONND DISTRIBUTION\"\n        },\n        {\n            \"Code\": \"7832\",\n            \"Name\": \"MOTIONICTURE THEATERS\"\n        },\n        {\n            \"Code\": \"7833\",\n            \"Name\": \"EXPRESSAYMENT SERVICES - MOTIONICTURE\"\n        },\n        {\n            \"Code\": \"7841\",\n            \"Name\": \"VIDEO TAPEENTAL STORES\"\n        },\n        {\n            \"Code\": \"7911\",\n            \"Name\": \"DANCE HALLS, STUDIOSND SCHOOLS\"\n        },\n        {\n            \"Code\": \"7922\",\n            \"Name\": \"THEATRICALRODUCERS (EXCL MOTIONICTURES), TICKETGENCIES\"\n        },\n        {\n            \"Code\": \"7929\",\n            \"Name\": \"BANDS, ORCHESTRAS OR ENTERTAINERS\"\n        },\n        {\n            \"Code\": \"7932\",\n            \"Name\": \"BILLIARDNDOOL ESTABLISHMENTS\"\n        },\n        {\n            \"Code\": \"7933\",\n            \"Name\": \"BOWLINGLLEYS\"\n        },\n        {\n            \"Code\": \"7941\",\n            \"Name\": \"COMMERCIAL/PROFESSIONAL SPORTS,ROMOTERS,THLETIC FIELDS\"\n        },\n        {\n            \"Code\": \"7991\",\n            \"Name\": \"TOURISTTTRACTIONSND EXHIBITS\"\n        },\n        {\n            \"Code\": \"7992\",\n            \"Name\": \"GOLF COURSES --UBLIC\"\n        },\n        {\n            \"Code\": \"7993\",\n            \"Name\": \"VIDEOMUSEMENT GAME SUPPLIES\"\n        },\n        {\n            \"Code\": \"7994\",\n            \"Name\": \"VIDEO GAMERCADES/ESTABLISHMENTS\"\n        },\n        {\n            \"Code\": \"7995\",\n            \"Name\": \"BETTING, WAGERING, LOTTERY, GAMBLING TICKETS OR CHIPS\"\n        },\n        {\n            \"Code\": \"7996\",\n            \"Name\": \"AMUSEMENTARKS, CARNIVALS, CIRCUSES OR FORTUNE TELLERS\"\n        },\n        {\n            \"Code\": \"7997\",\n            \"Name\": \"MEMBERSHIP CLUBS INCL SPORTS,EC,THLETIC, COUNTRY, GOLF\"\n        },\n        {\n            \"Code\": \"7998\",\n            \"Name\": \"AQUARIUMS, SEAQUARIUMS, DOLPHINARIUMS\"\n        },\n        {\n            \"Code\": \"7999\",\n            \"Name\": \"AMUSEMENT/RECREATIONAL SERVICES NOT ELSEWHERE CLASSIFIED\"\n        },\n        {\n            \"Code\": \"8011\",\n            \"Name\": \"DOCTORS ORHYSICIANS\"\n        },\n        {\n            \"Code\": \"8021\",\n            \"Name\": \"DENTISTS OR ORTHODONTISTS\"\n        },\n        {\n            \"Code\": \"8031\",\n            \"Name\": \"OSTEOPATHS\"\n        },\n        {\n            \"Code\": \"8041\",\n            \"Name\": \"CHIROPRACTORS\"\n        },\n        {\n            \"Code\": \"8042\",\n            \"Name\": \"OPHTHALMOLOGISTS OR OPTOMETRISTS\"\n        },\n        {\n            \"Code\": \"8043\",\n            \"Name\": \"OPTICIANS\"\n        },\n        {\n            \"Code\": \"8044\",\n            \"Name\": \"EYEGLASSES STORES OR OPTICAL GOODS\"\n        },\n        {\n            \"Code\": \"8049\",\n            \"Name\": \"CHIROPODISTS ORODIATRISTS\"\n        },\n        {\n            \"Code\": \"8050\",\n            \"Name\": \"CONVALESCENT HOMES OR NURSINGNDERSONAL CARE FACILITIES\"\n        },\n        {\n            \"Code\": \"8062\",\n            \"Name\": \"HOSPITALS\"\n        },\n        {\n            \"Code\": \"8071\",\n            \"Name\": \"DENTAL LABORATORIES OR MEDICAL LABORATORIES\"\n        },\n        {\n            \"Code\": \"8099\",\n            \"Name\": \"MEDICAL SERVICESND HEALTHRACTITIONERS (NEC)\"\n        },\n        {\n            \"Code\": \"8111\",\n            \"Name\": \"ATTORNEYS OR LEGAL SERVICES\"\n        },\n        {\n            \"Code\": \"8211\",\n            \"Name\": \"ELEMENTARY OR SECONDARY SCHOOLS\"\n        },\n        {\n            \"Code\": \"8220\",\n            \"Name\": \"UNIVERSITIES, COLLEGES, SR COLLEGES ORROFESSIONAL SCHOOLS\"\n        },\n        {\n            \"Code\": \"8241\",\n            \"Name\": \"CORRESPONDENCE SCHOOLS\"\n        },\n        {\n            \"Code\": \"8244\",\n            \"Name\": \"BUSINESS SCHOOLS OR SECRETARIAL SCHOOLS\"\n        },\n        {\n            \"Code\": \"8249\",\n            \"Name\": \"VOCATIONAL OR TRADE SCHOOLS\"\n        },\n        {\n            \"Code\": \"8299\",\n            \"Name\": \"SCHOOLSND EDUCATIONAL SERVICES (NEC)\"\n        },\n        {\n            \"Code\": \"8351\",\n            \"Name\": \"DAY OR CHILD CARE SERVICES\"\n        },\n        {\n            \"Code\": \"8398\",\n            \"Name\": \"CHARITABLE OR SOCIAL SERVICES ORGANIZATIONS\"\n        },\n        {\n            \"Code\": \"8641\",\n            \"Name\": \"SOCIAL, FRATERNAL OR CIVICSSOCIATIONS\"\n        },\n        {\n            \"Code\": \"8651\",\n            \"Name\": \"POLITICAL ORGANIZATIONS\"\n        },\n        {\n            \"Code\": \"8661\",\n            \"Name\": \"RELIGIOUS ORGANIZATIONS\"\n        },\n        {\n            \"Code\": \"8675\",\n            \"Name\": \"AUTOMOBILESSOCIATIONS\"\n        },\n        {\n            \"Code\": \"8699\",\n            \"Name\": \"MEMBERSHIP ORGANIZATIONS NOT ELSEWHERE CLASSIFIED\"\n        },\n        {\n            \"Code\": \"8734\",\n            \"Name\": \"TESTING LABORATORIES (NON-MEDICAL TESTING)\"\n        },\n        {\n            \"Code\": \"8911\",\n            \"Name\": \"ARCHITECTURAL, ENGINEERINGND SURVEYING SERVICES\"\n        },\n        {\n            \"Code\": \"8931\",\n            \"Name\": \"ACCOUNTING, BOOKKEEPING ORUDITING SERVICES\"\n        },\n        {\n            \"Code\": \"8999\",\n            \"Name\": \"PROFESSIONAL SERVICES (NEC)\"\n        },\n        {\n            \"Code\": \"9211\",\n            \"Name\": \"ALIMONY, CHILD SUPPORT OR COURT COSTS\"\n        },\n        {\n            \"Code\": \"9222\",\n            \"Name\": \"FINES\"\n        },\n        {\n            \"Code\": \"9223\",\n            \"Name\": \"BAILND BONDAYMENTS\"\n        },\n        {\n            \"Code\": \"9311\",\n            \"Name\": \"TAXAYMENTS\"\n        },\n        {\n            \"Code\": \"9399\",\n            \"Name\": \"GOVERNMENT SERVICES (NEC) OR FIRE DEPARTMENTS\"\n        },\n        {\n            \"Code\": \"9401\",\n            \"Name\": \"I-PURCHASINGILOT\"\n        },\n        {\n            \"Code\": \"9402\",\n            \"Name\": \"POSTAGE STAMPS\"\n        },\n        {\n            \"Code\": \"9405\",\n            \"Name\": \"INTERGOVERMENT TRANSACTIONS\"\n        },\n        {\n            \"Code\": \"9411\",\n            \"Name\": \"GOVERNMENT LOANAYMENTS\"\n        },\n        {\n            \"Code\": \"9700\",\n            \"Name\": \"AUTOMATEDEFERRAL SERVICE\"\n        },\n        {\n            \"Code\": \"9701\",\n            \"Name\": \"VISCREDENTIAL SERVER\"\n        },\n        {\n            \"Code\": \"9702\",\n            \"Name\": \"GCAS EMERGENCY SERVICES (VISUSE ONLY)\"\n        },\n        {\n            \"Code\": \"9751\",\n            \"Name\": \"U.K. SUPERMARKETS, ELECTRONIC HOT FILE\"\n        },\n        {\n            \"Code\": \"9752\",\n            \"Name\": \"U.K.ETROL STATIONS, ELECTRONIC HOT FILE\"\n        },\n        {\n            \"Code\": \"9754\",\n            \"Name\": \"GAMBLING-HORSE, DOGACING-ST LOTTERY\"\n        },\n        {\n            \"Code\": \"9950\",\n            \"Name\": \"INTRA-COMPANYURCHASES\"\n        },\n        {\n            \"Code\": \"9999\",\n            \"Name\": \"CLIENT DEFINED MCC\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e11f7ccc-5f49-435d-829c-b01e47e0f51b"},{"name":"Get Card Summary V2","id":"0e348eeb-2898-4693-8ebd-090b235885b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10180000052\",\r\n  \"CardId\": 115\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardSummaryV2","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Summary V2 API returns available card limit, limit start date and limit end date.</p>\n<p>Available Card Limit = Card Usage Limit - Card Usage Amount.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customers unique number. This can be obtained using the <strong>Create Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AvailableLimit</td>\n<td><em>Decimal</em></td>\n<td>The available limit left on the card for use.</td>\n</tr>\n<tr>\n<td>CardUsageLimit</td>\n<td><em>Decimal</em></td>\n<td>The maximum amount the cardholder can use during a specified date range.</td>\n</tr>\n<tr>\n<td>CardUsageAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the limit that has been used thus far.</td>\n</tr>\n<tr>\n<td>LimitStartDate</td>\n<td><em>DateTime</em></td>\n<td>The date the cardholder is able to start using their card.</td>\n</tr>\n<tr>\n<td>LimitEndDate</td>\n<td><em>DateTime</em></td>\n<td>The end date for the cardholder to use their card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CardGetE1</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardSummaryV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8f961243-9ae3-4dc7-ac16-59a433f2fb97","name":"Get Card Summary V2","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"12340000088\",\r\n  \"CardId\": 25838\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardSummaryV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Apr 2022 16:35:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"201","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=eb78f7ba04d8ab4eb16cd014fc8117fb; Path=/; SameSite=None; Secure","enabled":true},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=eb78f7ba04d8ab4eb16cd014fc8117fb; Path=/","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=eeccce1f071ae2a9b91cf780900c188053ae4b2e48c8f13243fa2699fade1e32;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=eeccce1f071ae2a9b91cf780900c188053ae4b2e48c8f13243fa2699fade1e32;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AvailableLimit\": 100.5,\n        \"CardUsageLimit\": 100.5,\n        \"CardUsageAmount\": 0,\n        \"LimitStartDate\": \"2022-03-28\",\n        \"LimitEndDate\": \"2022-11-16\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0e348eeb-2898-4693-8ebd-090b235885b3"},{"name":"Card MCC Permission Insert","id":"ac8e2b1f-42ec-483a-91c2-7dc437fde572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardId\": 23551,\r\n    \"mcc\":[\r\n        \"3245\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardMccPermission","description":"<h3 id=\"description\">Description</h3>\n<p>The Card MCC Permission Insert API adds MCC permissions to the specific card ID. A Card can have a maximum of 5 MCC numbers. The same MCC cannot be added to a card twice.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MCC</td>\n<td><em>List</em> (<em>String</em>)</td>\n<td>5</td>\n<td>Each card can have a maximum of 5 MCC permissions. Cardholders can only use their card in defined MCC merchants and cannot use the card in other MCCs.  <br />  <br />Use the <em><strong>Get MCC List</strong></em> API to see all defined MCCs in the system.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>The tokenzied number of the card.</td>\n</tr>\n<tr>\n<td>MCC</td>\n<td><em>List</em> (<em>String</em>)</td>\n<td>The specified MCC(s).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE1</td>\n<td>Card Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE2</td>\n<td>MCC Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE3</td>\n<td>MCC Permissions Cannot Be Greater Than 5.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE4</td>\n<td>MCC Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE5</td>\n<td>MCC Is Already Used.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE6</td>\n<td>Card Already Has 5 MCCs.</td>\n</tr>\n<tr>\n<td>CardMCCPermissionOpE7</td>\n<td>Card MCC Number Cannot Exceed 5.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardMccPermission"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3e9d4f0c-f3f9-48a1-a8fe-50fd30f6650b","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardId\": 23589,\r\n    \"mcc\":[\r\n        \"3580\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardMccPermission"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Mar 2022 13:33:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 23589,\n        \"CardTokenNumber\": \"404262dwqwgf4247\",\n        \"MCC\": [\n            \"3580\"\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ac8e2b1f-42ec-483a-91c2-7dc437fde572"},{"name":"GetMccListWithCardId","id":"819a41e6-41cf-4d09-90dd-c25ee05d7ea8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardId\": 1234\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetMccListWithCardId","description":"<h3 id=\"description\">Description</h3>\n<p>The Get MCC List With Card ID API returns all MCC permissions of a specified card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MCC</td>\n<td><em>List (String)</em></td>\n<td>The MCC code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetMCCListWithCardIdOpE1</td>\n<td>Card ID Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetMccListWithCardId"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"335c5f73-e388-4bf5-b6b1-c18e9300db44","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardId\": 23560\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetMccListWithCardId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Mar 2022 13:33:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"MCCList\": [\n            \"4011\"\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"819a41e6-41cf-4d09-90dd-c25ee05d7ea8"},{"name":"Deactivate Mcc","id":"4de54982-e737-433c-8cc0-ce042dbd1654","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardId\": 1234,\r\n    \"mcc\" : \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/InactivateMcc","description":"<h3 id=\"description\">Description</h3>\n<p>The Deactivate MCC API cancels the MCC permission of the given card ID.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MCC</td>\n<td><em>List (String)</em></td>\n<td>4</td>\n<td>Each card can have a maximum of 5 MCC permissions. Cardholders can only use their card in defined MCC merchants and cannot use the card in other MCCs.  <br />  <br />Use the <em><strong>Get MCC List</strong></em> API to see all defined MCCs in the system.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckNull</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InactivateMccOpE1</td>\n<td>Card ID Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InactivateMccOpE2</td>\n<td>MCC Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InactivateMccOpE3</td>\n<td>MCC Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","InactivateMcc"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"34b5d185-a1ee-45a4-b775-29dcfcc0201d","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardId\": 23582,\r\n    \"mcc\" : \"5200\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/InactivateMcc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Mar 2022 13:34:43 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4de54982-e737-433c-8cc0-ce042dbd1654"},{"name":"Card List V2","id":"90ad4fca-f1d5-4d93-800b-3efac83f50f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"CustomerNumber\":\"14050000954\",\r\n    // \"CustomerNumber\": \"12340000059\",\r\n    // \"CardStatus\": 1,\r\n    // \"Last4Digit\": \"6020\",\r\n    // \"ClientReference\": \"123abc321\",\r\n    // \"CardStartDate\": \"2022-04-11\",\r\n    // \"CardExpiryDate\": \"2026-04\",\r\n    // \"CardLimit\": 200.00,\r\n    // \"Ref1\": \"213ewq\",\r\n    // \"Ref2\": \"456asd\",\r\n    // \"Ref3\": \"zxc546\",\r\n    // \"Ref4\": \"789uio\",\r\n    // \"Ref5\": \"vbn456\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardListV2","description":"<h3 id=\"description\">Description</h3>\n<p>The Card List V2 API returns the customer card information according to the entered criteria.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardStatus</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Unique ID for card status.  <br />This can be retrieved using the <em><strong>Wallet -&gt;</strong></em> <strong>Card Status List</strong> API.  <br />  <br /><code>1</code> - Active  <br /><code>2</code> - Temporarily Closed  <br /><code>3</code> - Waiting for Activation  <br /><code>4</code> - Lost  <br /><code>5</code> - Stolen  <br /><code>6</code> - Other  <br /><code>7</code> - Fraud  <br /><code>8</code> - Customer Request  <br /><code>9</code> - Closed</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Last4Digit</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Last 4 digits of the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardStartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The start date the cardholder is able to use limit defined in <strong>CardLimit.</strong>  <br />  <br />(Year-Month-Day format)</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm</td>\n<td>Card expiry date.  <br />  <br />(Year-Month format)</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardLimit</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Card limit.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128 digit field that can hold values related to card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Card Currency. <code>CAD</code> or <code>USD</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128 digit field that can hold values related to card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128 digit field that can hold values related to card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128 digit field that can hold values related to card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128 digit field that can hold values related to card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128 digit field that can hold values related to card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 0-1000, default is 10.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Optional page number for returning a page of results. Default is 1. Maximum value depends on <strong>PageSize.</strong></td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\"><strong>Response Parameters</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The cardholder name.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>UsageLimit</td>\n<td><em>Decimal</em></td>\n<td>The maximum allowable amount the cardholder has for use.</td>\n</tr>\n<tr>\n<td>UsageAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount used thus far by the cardholder.</td>\n</tr>\n<tr>\n<td>AvailableLimit</td>\n<td><em>Decimal</em></td>\n<td>The remaining funds left for use by the cardholder.</td>\n</tr>\n<tr>\n<td>CardStartDate</td>\n<td><em>DateTime</em></td>\n<td>The start date in which the card can be used.</td>\n</tr>\n<tr>\n<td>CardEndData</td>\n<td><em>DateTime</em></td>\n<td>The end date in which the card can be used.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>GetCardListV2OpE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>GetCardListV2OpE2</td>\n<td>Card Status Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardListV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a9e50a40-edc0-4e10-8ada-4ad08f7f8b70","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"12340000058\",\r\n    \"CardStatus\": 1,\r\n    \"Last4Digit\": \"4613\",\r\n    \"ClientReference\": \"213123213132\",\r\n    \"CardStartDate\": \"2022-04-06\",\r\n    \"CardExpiryDate\": \"2026-04\",\r\n    \"CardLimit\": 150.0,\r\n    \"Currency\": \"CAD\",\r\n    \"Ref1\": \"string1\",\r\n    \"Ref2\": \"string2\",\r\n    \"Ref3\": \"string3\",\r\n    \"Ref4\": \"string4\",\r\n    \"Ref5\": \"string5\",\r\n    \"PageSize\": 1,\r\n    \"PageNumber\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardListV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Apr 2022 08:46:50 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 23760,\n            \"Name\": \"Efe Test\",\n            \"CardNumber\": \"450634******4613\",\n            \"UsageLimit\": 150,\n            \"UsageAmount\": 0,\n            \"AvailableLimit\": 150,\n            \"CardStartDate\": \"2022-04-06T00:00:00\",\n            \"CardEndDate\": \"2022-04-07T00:00:00\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"90ad4fca-f1d5-4d93-800b-3efac83f50f7"},{"name":"Get Card Information","id":"f9427ca6-b2cc-44ab-876a-b16036a5c1fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10000000003\",\r\n    \"CardLast4Digit\": \"9999\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardInformation","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Card Information API returns a list of cards refs (with information) based on the entered criteria.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardLast4Digit</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates the Last 4-Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreatedDateRangeBegin</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates <strong>begin</strong> date in <strong>CreatedDateRange</strong>.  <br />  <br />For example: 2022-02-22 or 2022-02</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreatedDateRangeEnd</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates <strong>end</strong> date in <strong>CreatedDateRange</strong>.  <br />  <br />For example: 2022-02-22 or 2022-02</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ExpiryDateRangeBegin</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates the card expiry <strong>begin</strong> date for the <strong>Expiry Date Range</strong>.  <br />  <br />For example: 2022-02-22 or 2022-02</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ExpiryDateRangeEnd</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates the card expiry <strong>end</strong> date for <strong>Expiry Date Range</strong>.  <br />  <br />For example: 2022-02-22 or 2022-02</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Indicates the cards currency:  <br /><code>CAD</code> - Canadian Dollar  <br /><code>USD</code> - United States Dollar</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardStatus</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the unique ID for card status.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Status List</strong> API.  <br />  <br /><code>0</code> - All Cards  <br /><code>1</code> - Active  <br /><code>2</code> - Temporarily Closed  <br /><code>3</code> - Waiting for Activation  <br /><code>4</code> - Lost  <br /><code>5</code> - Stolen  <br /><code>6</code> - Other  <br /><code>7</code> - Fraud  <br /><code>8</code> - Customer Request  <br /><code>9</code> - Closed</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardBalanceMinumum</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Card balance, minimum value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardBalanceMaximum</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Card balance, maximum value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 0-1000, default is 100.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastPaymentStatus</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Settlement status of last transaction made on card.  <br />  <br /><code>N</code>: Unsettled,  <br /><code>Y</code>: Settled,  <br /><code>E</code>: Expired,  <br /><code>R</code>: Reversed,  <br /><code>I</code>: Non Financial,  <br /><code>D</code>: Declined</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Status of last transaction made on card.  <br />  <br /><code>A</code>: Approved  <br /><code>D</code>: Declined</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>Unique card identifier.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>Cardholder name.</td>\n</tr>\n<tr>\n<td>CardLast4digit</td>\n<td><em>String</em></td>\n<td>Last 4 digits of the card number.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>Entire card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>CardCurrency</td>\n<td><em>String</em></td>\n<td>Currency of the card. Either <code>CAD</code> or <code>USD</code>.</td>\n</tr>\n<tr>\n<td>UsageLimit</td>\n<td><em>Decimal</em></td>\n<td>Overall usage limit available for the cardholders use.</td>\n</tr>\n<tr>\n<td>UsageAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount off unds used thus far by the cardholder.</td>\n</tr>\n<tr>\n<td>AvailableLimit</td>\n<td><em>Decimal</em></td>\n<td>Remaining funds left for use by the cardholder.</td>\n</tr>\n<tr>\n<td>CardStartDate</td>\n<td><em>DateTime</em></td>\n<td>The start date in which the card may be used.</td>\n</tr>\n<tr>\n<td>CardEndDate</td>\n<td><em>DateTime</em></td>\n<td>The end date in which the card may be used.</td>\n</tr>\n<tr>\n<td>CardExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The date in which the card expires.</td>\n</tr>\n<tr>\n<td>CardStatus</td>\n<td><em>String</em></td>\n<td>The status of the card. A 0-9 value.</td>\n</tr>\n<tr>\n<td>CardBalance</td>\n<td><em>Decimal</em></td>\n<td>The remaining balance left on the card.</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>The unique client reference number. The client to which the cardholder belongs.</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>LastPaymentStatus</td>\n<td><em>String</em></td>\n<td>Most recent payment status. Settled, unsettled, etc.</td>\n</tr>\n<tr>\n<td>TransactionCode</td>\n<td><em>String</em></td>\n<td>Transaction code. Either <code>Approved</code> or <code>Declined</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE2</td>\n<td>Page Size Cannot Be Less Than 0.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE3</td>\n<td>Page size Cannot Be Greater Than 1000 Records.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE4</td>\n<td>Created Begin Date Cannot Be Greater Than Created End Date.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE5</td>\n<td>Expiry Begin Date Cannot Be Greater Than Expiry End Date.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE6</td>\n<td>Card Balance Minimum Value Cannot Be Greater Than Card Balance Maximum Value.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE7</td>\n<td>Card Last 4 Digit Must Be 4 Characters/Numbers.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE8</td>\n<td>Card Status Must Be In The 0-9 Range.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE9</td>\n<td>Client Reference Field Length Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE10</td>\n<td>Ref1 Length Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE11</td>\n<td>Ref2 Length Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE12</td>\n<td>Ref3 Length Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE13</td>\n<td>Ref4 Length Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE14</td>\n<td>Ref5 Length Cannot Be Greater Than 128 Characters.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE15</td>\n<td>Currency Must Be <code>CAD</code> or <code>USD</code>.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE16</td>\n<td>Invalid Last Payment Status.</td>\n</tr>\n<tr>\n<td>GetCardInformationOpE17</td>\n<td>Invalid Transaction Code.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardInformation"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3162b78d-2c3a-4d70-87ec-5dfd7f421a0e","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10220000866\",\r\n    \"CardStatus\": 1,\r\n    \"LastPaymentStatus\": \"Y\",\r\n    \"TransactionCode\": \"A\",\r\n    \"CardLast4Digit\": \"3577\",\r\n    \"ClientReference\": \"2131232131321\",\r\n    \"Ref1\": \"ref1\",\r\n    \"Ref2\": \"ref2\",\r\n    \"Ref3\": \"ref3\",\r\n    \"Ref4\": \"ref4\",\r\n    \"Ref5\": \"ref5\",\r\n    \"CreatedDateRangeBegin\": \"2022-02-21\",\r\n    \"CreatedDateRangeEnd\": \"2022-04-21\",\r\n    \"ExpiryDateRangeBegin\": \"2027-02\",\r\n    \"ExpiryDateRangeEnd\": \"2027-04\",\r\n    \"Currency\": \"CAD\",\r\n    \"CardBalanceMinumum\": 410,\r\n    \"CardBalanceMaximum\": 420,\r\n    \"PageSize\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardInformation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Aug 2022 10:34:35 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"NumberOfPageSize\": 1,\n        \"TotalNumberOfPage\": 1,\n        \"TotalNumberOfRecord\": 1,\n        \"Pages\": [\n            {\n                \"PageNumber\": 1,\n                \"CardList\": [\n                    {\n                        \"Id\": 23499,\n                        \"Name\": \"Limit Test Test\",\n                        \"CardLast4digit\": \"3577\",\n                        \"CardNumber\": \"445500******3577\",\n                        \"CardCurrency\": \"CAD\",\n                        \"UsageLimit\": 0,\n                        \"UsageAmount\": 0,\n                        \"AvailableLimit\": 0,\n                        \"CardStartDate\": null,\n                        \"CardEndDate\": null,\n                        \"CardExpiryDate\": \"2027-03-21T13:24:22.933\",\n                        \"CardStatus\": \"Active\",\n                        \"CardBalance\": 419.87,\n                        \"ClientReference\": \"2131232131321\",\n                        \"Ref1\": \"ref1\",\n                        \"Ref2\": \"ref2\",\n                        \"Ref3\": \"ref3\",\n                        \"Ref4\": \"ref4\",\n                        \"Ref5\": \"ref5\",\n                        \"LastPaymentStatus\": \"Settled\",\n                        \"TransactionCode\": \"Approved\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f9427ca6-b2cc-44ab-876a-b16036a5c1fc"},{"name":"Get Card Information With Customer Number","id":"1a9df1a4-86c1-4f77-a3cb-5cbb8e42599f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\":\"10010000029\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardInfoWithCustomerNumber","description":"<h3 id=\"description\">Description</h3>\n<p>Retrieves a list of active card information for a specific customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Long</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>Tokenized card number.</td>\n</tr>\n<tr>\n<td>NickName</td>\n<td><em>String</em></td>\n<td>Nickname of card.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>Postal/Zip code of the cardholder.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetCardInfoWithCustomerNumberOpE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetCardInfoWithCustomerNumberOpE2</td>\n<td>Customer Number Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetCardInfoWithCustomerNumberOpE3</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>March 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardInfoWithCustomerNumber"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"041b08c5-f0bb-4bcd-9168-45b1c0b353e6","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\":\"10010000029\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardInfoWithCustomerNumber"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 May 2023 12:48:51 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CardId\": 11004,\n            \"CardTokenNumber\": \"430400luonax7750\",\n            \"NickName\": \"nick name testing\",\n            \"ZipCode\": \"apitest2\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"1a9df1a4-86c1-4f77-a3cb-5cbb8e42599f"},{"name":"Insert Or Update Card Reference Fields","id":"3671c081-2131-4208-baf8-95e5b3bad4a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 23995,\r\n    \"ClientCardReference\": \"ClientCardReference\",\r\n    \"Ref1\": \"Ref1\",\r\n    \"Ref2\": \"Ref2\",\r\n    \"Ref3\": \"Ref3\",\r\n    \"Ref4\": \"Ref4\",\r\n    \"Ref5\": \"Ref5\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/InsertOrUpdateCardReferenceFields","description":"<h3 id=\"description\">Description</h3>\n<p>Insert Or Update Card Reference API enables users to update reference fields for created Virtual Supplementary cards.</p>\n<p>The user can update the initial value of fields or insert new values to empty reference fields.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>Indicates the Unique Card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientCardReference</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE2</td>\n<td>Card ID Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE3</td>\n<td>Client Card Reference Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE4</td>\n<td>Ref1 Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE5</td>\n<td>Ref2 Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE6</td>\n<td>Ref3 Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE7</td>\n<td>Ref4 Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE8</td>\n<td>Ref5 Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateCardReferenceFieldsOpE9</td>\n<td>Card Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","InsertOrUpdateCardReferenceFields"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7732badf-0734-449f-9322-dac7b393434d","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 23964,\r\n    \"ClientCardReference\": \"ClientCardReference\",\r\n    \"Ref1\": \"Ref1\",\r\n    \"Ref2\": \"Ref2\",\r\n    \"Ref3\": \"Ref3\",\r\n    \"Ref4\": \"Ref4\",\r\n    \"Ref5\": \"Ref5\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/InsertOrUpdateCardReferenceFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Oct 2022 21:02:23 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 23964,\n        \"ClientCardReference\": \"ClientCardReference\",\n        \"Ref1\": \"Ref1\",\n        \"Ref2\": \"Ref2\",\n        \"Ref3\": \"Ref3\",\n        \"Ref4\": \"Ref4\",\n        \"Ref5\": \"Ref5\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3671c081-2131-4208-baf8-95e5b3bad4a3"},{"name":"Get Card Token Number","id":"b61014ad-eb0c-46e7-a7dd-66472efc7050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"cardId\": 0,\r\n  \"customerNumber\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTokenNumber","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Token Number API allows you to securely request a tokenized version of a customer's card information. This token can be used for future transactions without the need to store sensitive card details directly.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardID</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>The tokenzied card number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckCardId</td>\n<td>Card ID Cannot Be NULL or 0.</td>\n</tr>\n<tr>\n<td>RequestCheckCustomer</td>\n<td>Customer Not Found</td>\n</tr>\n<tr>\n<td>RequestCheckCustomerNumber</td>\n<td>Customer Number Cannot Be NULL Or Empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTokenNumber"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6da04201-1d90-4000-b605-4cef9eeb477f","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"cardId\": 0,\r\n  \"customerNumber\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTokenNumber"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jul 2024 17:48:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardTokenNumber\": \"463033qoencd7509\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"b61014ad-eb0c-46e7-a7dd-66472efc7050"},{"name":"Update Supplementary Card Phone Number","id":"900edb6c-c650-4961-b20b-a696e33aeb23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"cardId\": 0,\r\n  \"customerNumber\": \"string\",\r\n  \"phoneNumber\": \"string\",\r\n  \"PhoneCountryCode\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateSupplementaryCardPhoneNumber","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Supplementary Card Phone Number API allows clients to update the phone number associated with a supplementary card. Clients must provide the card ID, customer number, new phone number, and phone country code to update the phone number successfully.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardID</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the unique card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Wallet Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer's primary phone number attached to the supplementary card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Obtain the ID value using the <strong>Parameters -&gt; Address -&gt; Get Country List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardID</td>\n<td><em>Integer</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The primary phone number of the customer.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCheckCardId</td>\n<td>Card ID Cannot Be Null Or 0.</td>\n</tr>\n<tr>\n<td>RequestCheckPhoneNumber</td>\n<td>Phone Number Should Contain Only Digits.</td>\n</tr>\n<tr>\n<td>RequestCheckCountryCode</td>\n<td>Phone Country Code Cannot Be Null.</td>\n</tr>\n<tr>\n<td>RequestCheckCustomer</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>RequestCheckCustomerNumber</td>\n<td>Customer Number Cannot Be Null Or Empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","UpdateSupplementaryCardPhoneNumber"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"db5a7937-55ba-4d3b-9304-7fe9c0600196","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"cardId\": 80593,\r\n  \"customerNumber\": \"10010001008\",\r\n  \"phoneNumber\": \"5878995478\",\r\n  \"PhoneCountryCode\": \"1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/UpdateSupplementaryCardPhoneNumber"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jul 2024 18:18:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardId\": 80593,\n        \"CustomerNumber\": \"10010001008\",\n        \"PhoneNumber\": \"5878995478\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"900edb6c-c650-4961-b20b-a696e33aeb23"}],"id":"a8ae4839-2bae-4c98-b295-98cd1335d851","_postman_id":"a8ae4839-2bae-4c98-b295-98cd1335d851","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"Funds Transfer","item":[{"name":"Quick Funds Transfer To Customer V1.0","id":"6e049c81-27d6-4a38-b278-1bbb8ffc6183","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"TransactionType\": \"C\",\r\n  \"SourceAccountId\": 207,\r\n  \"CustomerNumber\": \"10300007473\",\r\n  \"DestinationWalletAccountId\": 96821,\r\n  \"Amount\": 12.00,\r\n  \"Description\": \"Description141234\",\r\n  \"ClientReferenceNumber\": \"CRN#1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferToCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Quick Funds Transfer to Customer API transfer funds to the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type of transaction:  <br />Credit <code>C</code>  <br />Debit <code>D</code></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can be retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique Customer Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DestinationWalletAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates Customer's Account ID where the funds are to be deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>9</td>\n<td>Indicates the amount of funds to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the description/ reason for the transfer of funds.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction at a later time. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted.  <br />  <br />*This reference number must be unique to each transaction.</td>\n<td><em>Optional</em></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CheckMoneyRequestE1</td>\n<td>Amount Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE2</td>\n<td>Transaction Type Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE3</td>\n<td>Customer Number Cannot Be Null.</td>\n</tr>\n<tr>\n<td>AssignSourceAccountE1</td>\n<td>Source Account Not Found.</td>\n</tr>\n<tr>\n<td>AssignSourceAccountE7</td>\n<td>Transaction Account and Session Accounts are Different.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FundsTransfer","FundsTransferToCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"42e985dc-dcf0-49f5-b18c-55516a6b3d25","name":"Quick Funds Transfer To Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TransactionType\": \"C\",\r\n    \"SourceAccountId\": 21028,\r\n    \"CustomerNumber\": \"10540000005\",\r\n    \"DestinationWalletAccountId\": 21045,\r\n    \"Amount\": 1.00,\r\n    \"Description\": \"Test Quick Funds Transfer via Lender API\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferToCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 12:20:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"6e049c81-27d6-4a38-b278-1bbb8ffc6183"},{"name":"Quick Funds Transfer To Customer V1.1","id":"8400af63-9fb8-4bed-8200-be201a00d82e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TransactionType\": \"C\",\r\n    \"SourceAccountId\": 40,\r\n    \"CustomerNumber\": \"10020078055\",\r\n    \"DestinationWalletAccountId\": 96841,\r\n    \"Amount\": 122.00,\r\n    \"Description\": \"Description4\",\r\n    \"ClientReferenceNumber\": \"66662366\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/FundsTransfer/FundsTransferToCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Quick Funds Transfer to Customer API transfers funds to a specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type of transaction:  <br />Credit <code>C</code>  <br />Debit <code>D</code></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can be retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique Customer Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DestinationWalletAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the Customer's Account ID where the funds are to be deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>9</td>\n<td>Indicates the amount to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the description/ reason for the transfer of funds.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction at a later time. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted.  <br />  <br />*This reference number must be unique to each transaction</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DuplicateFundsUploadRecordE2</td>\n<td>The Transaction Has Already Been Sent, Please Try Again Later.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.1</td>\n<td>November 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","FundsTransfer","FundsTransferToCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6897f47e-7166-4a17-be76-6b385c4799d3","name":"Quick Funds Transfer To Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\r\n  \"TransactionType\": \"C\",\r\n\r\n  \"SourceAccountId\": 40,\r\n\r\n  \"CustomerNumber\": \"10020078055\",\r\n\r\n  \"DestinationWalletAccountId\": 96841,\r\n\r\n  \"Amount\": 122.00,\r\n\r\n  \"Description\": \"Description4\",\r\n\r\n  \"ClientReferenceNumber\": \"66662366\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/FundsTransfer/FundsTransferToCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Nov 2023 16:06:44 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.1","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"8400af63-9fb8-4bed-8200-be201a00d82e"},{"name":"Quick Funds Transfer To Card V1.0","id":"782746cb-f78d-432e-85eb-dcb480775625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"TransactionType\": \"C\",\r\n  \"SourceAccountId\": 5,\r\n  \"Amount\": 1.00,\r\n  \"Description\": \"Test Quick Funds Transfer via Lender API\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferToCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Quick Funds Transfer to Customer API transfer funds to a specified customer card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td>String</td>\n<td>1</td>\n<td>Indicates the type of transaction:  <br />Credit <code>C</code>  <br />Debit <code>D</code></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td>Numeric</td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can be retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Amount</td>\n<td>9</td>\n<td>Indicates the amount to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td>String</td>\n<td>50</td>\n<td>Indicates the description/ reason for the transfer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td>String</td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction at a later time. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted.  <br />  <br />*This reference number must be unique to each transaction</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CheckMoneyRequestE1</td>\n<td>Amount Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE2</td>\n<td>Transaction Type Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE3</td>\n<td>Card Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FundsTransfer","FundsTransferToCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b70ffcc5-ef4d-4f8e-9445-bf1485321ecc","name":"Quick Funds Transfer To Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TransactionType\": \"C\",\r\n    \"SourceAccountId\": 21028,\r\n    \"CustomerNumber\": \"10540000005\",\r\n    \"DestinationWalletAccountId\": 21045,\r\n    \"Amount\": 1.00,\r\n    \"Description\": \"Test Quick Funds Transfer via Lender API\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferToCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 12:20:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"782746cb-f78d-432e-85eb-dcb480775625"},{"name":"Quick Funds Transfer To Card V1.1","id":"75c83ac9-589c-4417-a85e-1b17076da7c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"TransactionType\": \"C\",\r\n  \"SourceAccountId\": 207,\r\n  \"CardId\": 53833,\r\n  \"Amount\": 115.00,\r\n  \"Description\": \"Test Quick112323234\",\r\n  \"TransactionCodeId\": 1019,\r\n  \"ClientReferenceNumber\": \"CRN#1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/FundsTransfer/FundsTransferToCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Quick Funds Transfer To Card API transfers money to a specified Customer card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the Type of transaction: Credit <code>C</code>  <br />Debit <code>D</code></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can ben retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates <strong>CardFinancialId</strong> if it is a Credit Card/ Debit Card/ No Name Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>9</td>\n<td>Indicates the amount to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description/ reason for the transfer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction at a later time. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted.  <br />  <br />*This reference number must be unique to each transaction</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CheckMoneyRequestE1</td>\n<td>Amount Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE2</td>\n<td>Transaction Type Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE3</td>\n<td>Card Cannot Be Null.</td>\n</tr>\n<tr>\n<td>AssignSourceAccountE1</td>\n<td>Source Account Not Found.</td>\n</tr>\n<tr>\n<td>AssignSourceAccountE7</td>\n<td>Transaction Account And Session Accounts Are Different.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.1</td>\n<td>November 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","FundsTransfer","FundsTransferToCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0b11bf82-16a1-46eb-b822-0a2cd47fdc91","name":"Quick Funds Transfer To Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"TransactionType\": \"C\",\r\n  \"SourceAccountId\": 42,\r\n  \"CardId\": 10052,\r\n  \"Amount\": 1.00,\r\n  \"Description\": \"Test Quick Funds Transfer via Lender API\",\r\n  \"TransactionCodeId\":1019,\r\n  \"ClientReferenceNumber\": \"12312312311231\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/FundsTransfer/FundsTransferToCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Nov 2023 14:35:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.1","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"75c83ac9-589c-4417-a85e-1b17076da7c3"},{"name":"Transfer Between Client Accounts V1.0 🔒","id":"aab166c9-0fa3-4f4f-853f-96ba1d3e7bd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 1.00,\r\n  \"explanation\": \"test1\",\r\n  \"sourceAccountId\": 5,\r\n  \"destinationAccountId\": 2,\r\n  \"clientReferenceNumber\": \"test1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/TransferBetweenClientAccounts","description":"<h3 id=\"description\">Description</h3>\n<p>The Transfer Between Client Accounts API ensures a quick and simple funds transfer between Client accounts.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>9</td>\n<td>Indicates the amount to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can be retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DestinationAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates Customer's Account ID where the funds are to be deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Explanation</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the description/ reason for the transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction at a later time. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted.  <br />  <br />*This reference number must be unique to each transaction</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE2</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE7</td>\n<td>Destination Account Number Is Not Provided.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE8</td>\n<td>Source Account Number Is Not Provided.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE9</td>\n<td>Amount Is Not Provided.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE10</td>\n<td>Explanation Is Not Provided.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE11</td>\n<td>Client Reference Number Is Not Provided.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FundsTransfer","TransferBetweenClientAccounts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ad3b0e03-2877-4750-adf1-d258d7cc7f56","name":"Transfer Between Client Accounts V1.0","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 1.00,\r\n  \"explanation\": \"test1\",\r\n  \"sourceAccountId\": 5,\r\n  \"destinationAccountId\": 2,\r\n  \"clientReferenceNumber\": \"test1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/TransferBetweenClientAccounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Mar 2024 15:39:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.3","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"aab166c9-0fa3-4f4f-853f-96ba1d3e7bd7"},{"name":"Transfer Between Client Accounts With Fee","id":"95827aeb-a519-4f7e-9e31-9146b2311eeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 0.01,\r\n  \"explanation\": \"Test\",\r\n  \"sourceAccountId\": 93461,\r\n  \"destinationAccount\": 132338294\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/TransferBetweenClientAccountsWithFee","description":"<h3 id=\"description\">Description</h3>\n<p>Transfers funds between two client accounts within the system, including optional handling of transfer fees.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SourceAccountId</td>\n<td>Numeric</td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can be retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DestinationAccount</td>\n<td>Numeric</td>\n<td>15</td>\n<td>Account number receiving the funds.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Decimal</td>\n<td>15</td>\n<td>Indicates the amount to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Explanation</td>\n<td>String</td>\n<td>5O</td>\n<td>Indicates the description/ reason for the transfer.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FindClientAccountDetailByAccountNumberOpE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FindClientAccountDetailByAccountNumberOpE2</td>\n<td>Accounts Must Be Selected.</td>\n</tr>\n<tr>\n<td>FindClientAccountDetailByAccountNumberOpE3</td>\n<td>Selected Destination Account Definition Not Found.</td>\n</tr>\n<tr>\n<td>FindClientAccountDetailByAccountNumberOpE4</td>\n<td>Client Definition Not Valid.</td>\n</tr>\n<tr>\n<td>FindClientAccountDetailByAccountNumberOpE6</td>\n<td>Source Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>FindClientAccountDetailByAccountNumberOpE7</td>\n<td>Receiver Account Restricted for Transfer.</td>\n</tr>\n<tr>\n<td>InsertTransferBetweenClientAccountsWithFeeOpE4</td>\n<td>Transaction Amount Must Be Filled.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>May 20</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FundsTransfer","TransferBetweenClientAccountsWithFee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0d18587c-7fe8-449a-b4ee-0041d5dd43aa","name":"Custom Funds Transfer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 1.00,\r\n  \"explanation\": \"test\",\r\n  \"sourceAccountId\": 5,\r\n  \"destinationAccountId\": 2,\r\n  \"clientReferenceNumber\": \"test1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferCustom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"95827aeb-a519-4f7e-9e31-9146b2311eeb"}],"id":"a2ad69eb-8f59-43f9-957a-e73aede8e494","_postman_id":"a2ad69eb-8f59-43f9-957a-e73aede8e494","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"Transaction","item":[{"name":"Card Transaction Inquiry","id":"4a3827f5-1287-46c0-99f2-263b6b6dab7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10540000003\",\n    \"CardId\": 10129,\n    \"Criteria\": 1,\n    \"BeginDate\": \"2020-03-01\",\n    \"EndDate\": \"2020-04-01\",\n    \"PageSize\": 10,\n    \"PageNumber\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiry","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Transcation Inquiry API retrieves a list of transactions specific to the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates unique card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>Indicates the classification of the transactions:  <br /><code>1</code> - All Transactions,  <br /><code>2</code> - Declined Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Begin Date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates End Date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 0-1000, default is 10.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Optional page number for returning a page of results.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardTransactionInquiryE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryE01</td>\n<td>Card Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTransactionInquiry"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c0ade65c-557d-440a-b984-95b089e9e101","name":"Card Transaction Inquiry","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\",\n    \"CardId\": 10051,\n    \"Criteria\": 1,\n    \"BeginDate\": \"2019-01-19\",\n    \"EndDate\": \"2020-03-19\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiry"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"item\": [\r\n    {\r\n      \"cardId\": 0,\r\n      \"cardTokenNumber\": \"string\",\r\n      \"transactionDate\": \"2020-11-06\",\r\n      \"responseCode\": \"string\",\r\n      \"merchant\": \"string\",\r\n      \"transactionAmount\": 0,\r\n      \"amountDisplay\": \"string\",\r\n      \"transactionCurrency\": {\r\n        \"isActive\": true,\r\n        \"description\": \"string\",\r\n        \"code\": \"string\",\r\n        \"isoCode\": \"string\",\r\n        \"symbol\": \"string\",\r\n        \"order\": 0,\r\n        \"id\": 0,\r\n        \"isRecordValid\": true,\r\n        \"recordVersion\": 0,\r\n        \"insertDateTime\": \"2020-11-06\",\r\n        \"insertUserId\": 0,\r\n        \"insertUser\": \"string\",\r\n        \"updateDateTime\": \"2020-11-06\",\r\n        \"updateUser\": \"string\",\r\n        \"shadowInsertUserId\": 0,\r\n        \"shadowUpdateUserId\": 0,\r\n        \"updateUserId\": 0\r\n      },\r\n      \"billingAmount\": 0,\r\n      \"cardholderCurrency\": {\r\n        \"isActive\": true,\r\n        \"description\": \"string\",\r\n        \"code\": \"string\",\r\n        \"isoCode\": \"string\",\r\n        \"symbol\": \"string\",\r\n        \"order\": 0,\r\n        \"id\": 0,\r\n        \"isRecordValid\": true,\r\n        \"recordVersion\": 0,\r\n        \"insertDateTime\": \"2020-11-06\",\r\n        \"insertUserId\": 0,\r\n        \"insertUser\": \"string\",\r\n        \"updateDateTime\": \"2020-11-06\",\r\n        \"updateUser\": \"string\",\r\n        \"shadowInsertUserId\": 0,\r\n        \"shadowUpdateUserId\": 0,\r\n        \"updateUserId\": 0\r\n      },\r\n      \"settlementAmount\": 0,\r\n      \"settlementCurrency\": {\r\n        \"isActive\": true,\r\n        \"description\": \"string\",\r\n        \"code\": \"string\",\r\n        \"isoCode\": \"string\",\r\n        \"symbol\": \"string\",\r\n        \"order\": 0,\r\n        \"id\": 0,\r\n        \"isRecordValid\": true,\r\n        \"recordVersion\": 0,\r\n        \"insertDateTime\": \"2020-11-06\",\r\n        \"insertUserId\": 0,\r\n        \"insertUser\": \"string\",\r\n        \"updateDateTime\": \"2020-11-06\",\r\n        \"updateUser\": \"string\",\r\n        \"shadowInsertUserId\": 0,\r\n        \"shadowUpdateUserId\": 0,\r\n        \"updateUserId\": 0\r\n      },\r\n      \"settlementDate\": \"2020-11-06\",\r\n      \"description\": \"string\",\r\n      \"referenceNumber\": \"string\",\r\n      \"transactionType\": \"string\",\r\n      \"transactionTypeId\": 0,\r\n      \"transactionTypeCode\": \"string\",\r\n      \"channelName\": \"string\",\r\n      \"cardOwnerName\": \"string\",\r\n      \"maskedCardNumber\": \"string\",\r\n      \"cardBrandName\": \"string\",\r\n      \"availableCreditLimit\": 0,\r\n      \"walletBalance\": 0,\r\n      \"applicationNetwork\": \"string\",\r\n      \"cardTransactionSource\": \"string\",\r\n      \"terminalType\": \"string\",\r\n      \"errorCode\": \"string\",\r\n      \"errorDescription\": \"string\",\r\n      \"merchantCity\": \"string\",\r\n      \"feeAmount\": 0,\r\n      \"originalAmount\": 0,\r\n      \"responseDescription\": \"string\",\r\n      \"mcc\": \"string\",\r\n      \"settlementStatus\": \"string\"\r\n    }\r\n  ],\r\n  \"isSucceeded\": true,\r\n  \"errorList\": [\r\n    {\r\n      \"errorCode\": \"string\",\r\n      \"errorDescription\": \"string\",\r\n      \"parameterList\": [\r\n        \"string\"\r\n      ]\r\n    }\r\n  ],\r\n  \"parameterList\": [\r\n    \"string\"\r\n  ]\r\n}"}],"_postman_id":"4a3827f5-1287-46c0-99f2-263b6b6dab7e"},{"name":"Card Transaction Inquiry V3","id":"aa62c6b3-bfba-4f3b-b49c-b5621fbd746d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 75312,\r\n    \"BeginDate\": \"2024-05-01\",\r\n    \"EndDate\": \"2024-06-01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV3","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Transaction Inquiry V3 API retrieves a list of transactions specific to the Card ID for a Date range (BeginDate - EndDate). The time between Begin Date and End Date range can be a <strong>maximum</strong> of 1 month.</p>\n<p><b>Note:</b> V3 now returns additional results including partial reversal transactions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the unique card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Begin Date of transaction time range.  <br />  <br />For example: 2022-02-22</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates End Date of transaction time range.  <br />  <br />For example: 2022-02-22</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the type of transaction group:  <br /><code>0/1</code> - All Transactions,  <br /><code>2</code> - Declined Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceField</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit reference field used to store data.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>Transaction amount.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardLast4Digit</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Last 4-Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Transaction response code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>12</td>\n<td>Transaction settlement status:  <br />- PreAuth  <br />- Settled  <br />- Expired  <br />- Reversed  <br />- NonFinancial  <br />- Declined</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 1-1000, default is 100.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionCurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency code of the funds of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The ID type of transaction.</td>\n</tr>\n<tr>\n<td>SettlementAmount</td>\n<td><em>Decimal</em></td>\n<td>The settlement amount.</td>\n</tr>\n<tr>\n<td>SettlementCurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency code for the settlement.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>The settlement date.</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>The status of the settlement.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The description/reason for the transaction.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>ChannelName</td>\n<td><em>String</em></td>\n<td>Channel through which the transaction occurred. Account, Card, Etransfer, etc.</td>\n</tr>\n<tr>\n<td>CardOwnerName</td>\n<td><em>String</em></td>\n<td>The cardholders name.</td>\n</tr>\n<tr>\n<td>CardTransactionSource</td>\n<td><em>String</em></td>\n<td>Source of transaction, whether domestic/ international.</td>\n</tr>\n<tr>\n<td>TerminalType</td>\n<td><em>String</em></td>\n<td>Terminal type where transaction was handled.</td>\n</tr>\n<tr>\n<td>Merchant</td>\n<td><em>String</em></td>\n<td>The merchant name where transaction happened.</td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td><em>String</em></td>\n<td>The merchant location.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees pertaining to the transaction.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>Description relating to the response code.</td>\n</tr>\n<tr>\n<td>Mcc</td>\n<td><em>String</em></td>\n<td>The MCC category/code.</td>\n</tr>\n<tr>\n<td>IsReversed</td>\n<td><em>Boolean</em></td>\n<td>Whether the transaction has been reversed or not. A <code>true</code> or <code>false</code> value.</td>\n</tr>\n<tr>\n<td>ReversalType</td>\n<td><em>String</em></td>\n<td>Type of reversal made.</td>\n</tr>\n<tr>\n<td>ReversedDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date/time of the reversal, if one was made.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE1</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE2</td>\n<td>Begin Date Is Required.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE3</td>\n<td>End Date Is Required.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE4</td>\n<td>Begin Date Cannot Be Greater Than The End Date.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE5</td>\n<td>Maximum Of 31 Days Between Begin Date And End Date.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE6</td>\n<td>Page Size Cannot Be Less Than 0.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE7</td>\n<td>Page Size Cannot Be Greater Than 1000 Records.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE8</td>\n<td>Card Last 4 Digits Should Be 4 Characters/Numbers.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE9</td>\n<td>Invalid Criteria.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE10</td>\n<td>Client Reference Field Length Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE11</td>\n<td>Invalid Settlement Status.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTransactionInquiryV3"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"391f21dc-1d72-42f5-b6c6-69645fb765e8","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 10996,\r\n    \"Criteria\": 1,\r\n    \"ClientReferenceField\": \"CLIENTREFERENCE\",\r\n    \"Amount\": 20.00,\r\n    \"CardLast4Digit\": \"1072\",\r\n    \"BeginDate\": \"2022-09-14\",\r\n    \"EndDate\": \"2022-09-16\",\r\n    \"ResponseCode\": \"00\",\r\n    \"SettlementStatus\": \"Settled\",\r\n    \"PageSize\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Apr 2022 10:39:08 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": {\n        \"NumberOfPageSize\": 1,\n        \"TotalNumberOfPage\": 2,\n        \"TotalNumberOfRecord\": 2,\n        \"Pages\": [\n            {\n                \"PageNumber\": 1,\n                \"TransactionList\": [\n                    {\n                        \"CardId\": 10996,\n                        \"MaskedCardNumber\": \"430400******1072\",\n                        \"TransactionDate\": \"2022-09-15T19:52:26.193\",\n                        \"TransactionAmount\": 20,\n                        \"TransactionCurrencyCode\": \"CAD\",\n                        \"TransactionType\": \"Credit\",\n                        \"TransactionTypeId\": 6020,\n                        \"TransactionTypeCode\": \"C\",\n                        \"SettlementAmount\": 20,\n                        \"SettlementCurrencyCode\": \"CAD\",\n                        \"SettlementDate\": \"2022-09-15T19:52:26.203\",\n                        \"SettlementStatus\": \"Settled\",\n                        \"Description\": \"SPEND.COM                +18007303194 CA\",\n                        \"ReferenceNumber\": \"100000000000252518\",\n                        \"ChannelName\": \"Moto Sale\",\n                        \"CardOwnerName\": \"LodgelinkCAD TestAccount\",\n                        \"CardTransactionSource\": \"Domestic\",\n                        \"TerminalType\": \"Pos\",\n                        \"ErrorCode\": null,\n                        \"ErrorDescription\": null,\n                        \"Merchant\": \"SPEND.COM\",\n                        \"MerchantCity\": \"+1800730319\",\n                        \"FeeAmount\": 0,\n                        \"ResponseCode\": \"00\",\n                        \"ResponseDescription\": \"Approved  \",\n                        \"Mcc\": \"3000\",\n                        \"IsReversed\": false,\n                        \"ReversalType\": \"\",\n                        \"ReversedDateTime\": null\n                    }\n                ]\n            },\n            {\n                \"PageNumber\": 2,\n                \"TransactionList\": [\n                    {\n                        \"CardId\": 10996,\n                        \"MaskedCardNumber\": \"430400******1072\",\n                        \"TransactionDate\": \"2022-09-15T19:51:49.37\",\n                        \"TransactionAmount\": 20,\n                        \"TransactionCurrencyCode\": \"CAD\",\n                        \"TransactionType\": \"Credit\",\n                        \"TransactionTypeId\": 6020,\n                        \"TransactionTypeCode\": \"C\",\n                        \"SettlementAmount\": 20,\n                        \"SettlementCurrencyCode\": \"CAD\",\n                        \"SettlementDate\": \"2022-09-15T19:51:49.373\",\n                        \"SettlementStatus\": \"Settled\",\n                        \"Description\": \"SPEND.COM                +18007303194 CA\",\n                        \"ReferenceNumber\": \"100000000000252514\",\n                        \"ChannelName\": \"Moto Sale\",\n                        \"CardOwnerName\": \"LodgelinkCAD TestAccount\",\n                        \"CardTransactionSource\": \"Domestic\",\n                        \"TerminalType\": \"Pos\",\n                        \"ErrorCode\": null,\n                        \"ErrorDescription\": null,\n                        \"Merchant\": \"SPEND.COM\",\n                        \"MerchantCity\": \"+1800730319\",\n                        \"FeeAmount\": 0,\n                        \"ResponseCode\": \"00\",\n                        \"ResponseDescription\": \"Approved  \",\n                        \"Mcc\": \"3000\",\n                        \"IsReversed\": false,\n                        \"ReversalType\": \"\",\n                        \"ReversedDateTime\": null\n                    }\n                ]\n            }\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"aa62c6b3-bfba-4f3b-b49c-b5621fbd746d"},{"name":"Card Transaction Inquiry V4","id":"70ceb013-93f8-42b5-889b-cf334bebae8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 75312,\r\n    \"BeginDate\": \"2024-05-01\",\r\n    \"EndDate\": \"2024-06-01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV4","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Transaction Inquiry V4 API retrieves a list of transactions specific to the Card ID for a Date range (BeginDate - EndDate). The time between Begin Date and End Date range can be a <strong>maximum</strong> of 1 month.</p>\n<p><b>NOTE:</b></p>\n<p>V4 adds a number of useful fields in the response including AuthorizationCode, CardTokenNumber, AmountDisplay, BillingAmount, CardHolderCurrencyCode, CardBrandName, AvailableCreditLimit, WalletBalance, ApplicationNetwork, OriginalAmount, TransactionEntryTypeDesc, Mti, TransactionUniqueId, and TransactionFee.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates unique card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Begin Date of transaction time range.  <br />  <br />For example: 2022-02-22</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates End Date of transaction time range.  <br />  <br />For example: 2022-02-22</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the type of transaction group:  <br /><code>0/1</code> - All Transactions,  <br /><code>2</code> - Declined Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceField</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit reference field used to store data.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>Transaction amount.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardLast4Digit</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Last 4-Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Transaction response code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>12</td>\n<td>Transaction settlement status.  <br />- PreAuth  <br />- Settled  <br />- Expired  <br />- Reversed  <br />- NonFinancial  <br />- Declined</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 1-1000, default is 100.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction occurred.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionCurrencyCode</td>\n<td><em>String</em></td>\n<td>The transaction currency code.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The type ID of the transaction.</td>\n</tr>\n<tr>\n<td>SettlementAmount</td>\n<td><em>Decimal</em></td>\n<td>The settlement amount.</td>\n</tr>\n<tr>\n<td>SettlementCurrencyCode</td>\n<td><em>String</em></td>\n<td>The settlement currency code.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the settlement.</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>The settlement status.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>Description/reason for the transaction.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>Unique reference number of the transaction.</td>\n</tr>\n<tr>\n<td>ChannelName</td>\n<td><em>String</em></td>\n<td>Channel through which the transaction occurred. Account, Card, Etransfer, etc.</td>\n</tr>\n<tr>\n<td>CardOwnerName</td>\n<td><em>String</em></td>\n<td>The cardholders name.</td>\n</tr>\n<tr>\n<td>CardTransactionSource</td>\n<td><em>String</em></td>\n<td>Source of transaction, whether domestic/ international.</td>\n</tr>\n<tr>\n<td>TerminalType</td>\n<td><em>String</em></td>\n<td>Terminal type where transaction was handled.</td>\n</tr>\n<tr>\n<td>Merchant</td>\n<td><em>String</em></td>\n<td>Merchant name where transaction was made.</td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td><em>String</em></td>\n<td>Merchant location.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>The response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>The description relating to the response code.</td>\n</tr>\n<tr>\n<td>Mcc</td>\n<td><em>String</em></td>\n<td>MCC category/code.</td>\n</tr>\n<tr>\n<td>IsReversed</td>\n<td><em>Boolean</em></td>\n<td>Whether the transaction has been reversed or not.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>ReversalType</td>\n<td><em>String</em></td>\n<td>The type of reversal, if one was made.</td>\n</tr>\n<tr>\n<td>ReversedDateTime</td>\n<td><em>DateTime</em></td>\n<td>When the reversal was made.</td>\n</tr>\n<tr>\n<td>AuthorizationCode</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>Tokenized card number, partially hidden for security.</td>\n</tr>\n<tr>\n<td>AmountDisplay</td>\n<td><em>Decimal</em></td>\n<td>The amount displayed.</td>\n</tr>\n<tr>\n<td>BillingAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount that was billed to account for transaction.</td>\n</tr>\n<tr>\n<td>CardHolderCurrencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of funds on the card.</td>\n</tr>\n<tr>\n<td>CardBrandName</td>\n<td><em>String</em></td>\n<td>The branch of the card. EX: Visa, MasterCard, etc.</td>\n</tr>\n<tr>\n<td>AvailableCreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The cards overall credit limit.</td>\n</tr>\n<tr>\n<td>WalletBalance</td>\n<td><em>Decimal</em></td>\n<td>Remaining balance on the card/account.</td>\n</tr>\n<tr>\n<td>ApplicationNetwork</td>\n<td><em>String</em></td>\n<td>Card network.</td>\n</tr>\n<tr>\n<td>OriginalAmount</td>\n<td><em>Decimal</em></td>\n<td>The original amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionEntryTypeDesc</td>\n<td><em>String</em></td>\n<td>Description of the transaction type.</td>\n</tr>\n<tr>\n<td>Mti</td>\n<td><em>Numeric</em></td>\n<td>The numeric code indicating the type of financial transaction message.</td>\n</tr>\n<tr>\n<td>TransactionUniqueId</td>\n<td><em>Numeric</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionFee</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE1</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE2</td>\n<td>Begin Date Is Required.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE3</td>\n<td>End Date Is Required.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE4</td>\n<td>Begin Date Cannot Be Greater Than The End Date.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE5</td>\n<td>Maximum Of 31 days Between Begin Date And End Date.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE6</td>\n<td>Page Size Cannot Be Less Than 0.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE7</td>\n<td>Page Size Cannot Be Greater Than 1000 Records.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE8</td>\n<td>Card Last 4 Digit Should Be 4 Characters/Numbers.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE9</td>\n<td>Invalid Criteria.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE10</td>\n<td>Client Reference Field Length Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE11</td>\n<td>Invalid Settlement Status.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTransactionInquiryV4"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"42814057-437e-4ca0-b962-76f114243066","name":"Card Transaction Inquiry V4","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 75312,\r\n    \"BeginDate\": \"2024-05-01\",\r\n    \"EndDate\": \"2024-06-01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 11 Oct 2024 16:57:30 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": {\n        \"NumberOfPageSize\": 100,\n        \"TotalNumberOfPage\": 1,\n        \"TotalNumberOfRecord\": 1,\n        \"Pages\": [\n            {\n                \"PageNumber\": 1,\n                \"TransactionList\": [\n                    {\n                        \"CardId\": 75312,\n                        \"MaskedCardNumber\": \"404262******9730\",\n                        \"TransactionDate\": \"2024-05-15T17:16:28.727\",\n                        \"TransactionAmount\": 14,\n                        \"TransactionCurrencyCode\": \"CAD\",\n                        \"TransactionType\": \"Credit\",\n                        \"TransactionTypeId\": 6020,\n                        \"TransactionTypeCode\": \"C\",\n                        \"SettlementAmount\": 0,\n                        \"SettlementCurrencyCode\": \"CAD\",\n                        \"SettlementDate\": null,\n                        \"SettlementStatus\": \"UnSettled\",\n                        \"Description\": \"SPEND.COM                +18007303194 CA\",\n                        \"ReferenceNumber\": \"100000000006515746\",\n                        \"ChannelName\": \"Moto Sale\",\n                        \"CardOwnerName\": \"daniel test test\",\n                        \"CardTransactionSource\": \"Domestic\",\n                        \"TerminalType\": \"Pos\",\n                        \"ErrorCode\": null,\n                        \"ErrorDescription\": null,\n                        \"Merchant\": \"SPEND.COM\",\n                        \"MerchantCity\": \"+1800730319\",\n                        \"FeeAmount\": 0,\n                        \"ResponseCode\": \"00\",\n                        \"ResponseDescription\": \"Approved  \",\n                        \"Mcc\": \"5734\",\n                        \"IsReversed\": false,\n                        \"ReversalType\": \"\",\n                        \"ReversedDateTime\": null,\n                        \"HasIncrementalAuthorization\": false,\n                        \"AuthorzationCode\": \"001012\",\n                        \"CardTokenNumber\": \"404262yxfxja9730\",\n                        \"AmountDisplay\": null,\n                        \"BillingAmount\": 14,\n                        \"CardholderCurrencyCode\": \"CAD\",\n                        \"CardBrandName\": \"Visa\",\n                        \"AvailableCreditLimit\": 500,\n                        \"WalletBalance\": 486,\n                        \"ApplicationNetwork\": \"VISA\",\n                        \"OriginalAmount\": 14,\n                        \"TransactionEntryTypeDesc\": \"Manuel\",\n                        \"TransactionTypeDesc\": \"Credit\",\n                        \"Mti\": 100,\n                        \"TransactionUniqueId\": 32801,\n                        \"TransactionFee\": null\n                    }\n                ]\n            }\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"70ceb013-93f8-42b5-889b-cf334bebae8c"},{"name":"Card Transaction Inquiry V5","id":"0e06fc15-a24f-4d4b-baa3-ba6f8e34d9f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 75312,\r\n    \"BeginDate\": \"2024-05-01\",\r\n    \"EndDate\": \"2024-06-01\",\r\n    \"PageSize\": 0,\r\n    \"PageNumber\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV5","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Transaction Inquiry V5 API retrieves a list of transactions specific to the Card Id for a Date range (BeginDate - EndDate). The time between Begin Date and End Date range can be a <strong>maximum</strong> of 1 month.</p>\n<p><b>NOTE:</b><br />V5 returns additional results including partial reversal transactions.</p>\n<p>V5 adds a number of useful fields in the response including AuthorizationCode, CardTokenNumber, AmountDisplay, BillingAmount, CardHolderCurrencyCode, CardBrandName, AvailableCreditLimit, WalletBalance, ApplicationNetwork, OriginalAmount, TransactionEntryTypeDesc, Mti, TransactionUniqueId, and TransactionFee</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates unique card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Begin Date of transaction time range.  <br />  <br />For example: 2022-02-22</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates End Date of transaction time range.  <br />  <br />For example: 2022-02-22</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the type of transaction group:  <br /><code>0/1</code> - All Transactions,  <br /><code>2</code> - Declined Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceField</td>\n<td><em>Alphanumeric</em></td>\n<td>128</td>\n<td>128-digit reference field used to store data.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>Transaction amount.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardLast4Digit</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Last 4-Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Transaction response code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>12</td>\n<td>Transaction settlement status.  <br />- PreAuth  <br />- Settled  <br />- Expired  <br />- Reversed  <br />- NonFinancial  <br />- Declined</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 1-1000, default is 100.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction occurred.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionCurrencyCode</td>\n<td><em>String</em></td>\n<td>The transaction currency code.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The type ID of the transaction.</td>\n</tr>\n<tr>\n<td>SettlementAmount</td>\n<td><em>Decimal</em></td>\n<td>The settlement amount.</td>\n</tr>\n<tr>\n<td>SettlementCurrencyCode</td>\n<td><em>String</em></td>\n<td>The settlement currency code.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the settlement.</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>The settlement status.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>Description/reason for the transaction.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>Unique reference number of the transaction.</td>\n</tr>\n<tr>\n<td>ChannelName</td>\n<td><em>String</em></td>\n<td>Channel through which the transaction occurred. Account, Card, Etransfer, etc.</td>\n</tr>\n<tr>\n<td>CardOwnerName</td>\n<td><em>String</em></td>\n<td>The cardholders name.</td>\n</tr>\n<tr>\n<td>CardTransactionSource</td>\n<td><em>String</em></td>\n<td>Source of transaction, whether domestic/ international.</td>\n</tr>\n<tr>\n<td>TerminalType</td>\n<td><em>String</em></td>\n<td>Terminal type where transaction was handled.</td>\n</tr>\n<tr>\n<td>Merchant</td>\n<td><em>String</em></td>\n<td>Merchant name where transaction was made.</td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td><em>String</em></td>\n<td>Merchant location.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>The response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>The description relating to the response code.</td>\n</tr>\n<tr>\n<td>Mcc</td>\n<td><em>String</em></td>\n<td>MCC category/code.</td>\n</tr>\n<tr>\n<td>IsReversed</td>\n<td><em>Boolean</em></td>\n<td>Whether the transaction has been reversed or not.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>ReversalType</td>\n<td><em>String</em></td>\n<td>The type of reversal, if one was made.</td>\n</tr>\n<tr>\n<td>ReversedDateTime</td>\n<td><em>DateTime</em></td>\n<td>When the reversal was made.</td>\n</tr>\n<tr>\n<td>AuthorizationCode</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>Tokenized card number, partially hidden for security.</td>\n</tr>\n<tr>\n<td>AmountDisplay</td>\n<td><em>Decimal</em></td>\n<td>The amount displayed.</td>\n</tr>\n<tr>\n<td>BillingAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount that was billed to account for transaction.</td>\n</tr>\n<tr>\n<td>CardHolderCurrencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of funds on the card.</td>\n</tr>\n<tr>\n<td>CardBrandName</td>\n<td><em>String</em></td>\n<td>The branch of the card. EX: Visa, MasterCard, etc.</td>\n</tr>\n<tr>\n<td>AvailableCreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The cards overall credit limit.</td>\n</tr>\n<tr>\n<td>WalletBalance</td>\n<td><em>Decimal</em></td>\n<td>Remaining balance on the card/account.</td>\n</tr>\n<tr>\n<td>ApplicationNetwork</td>\n<td><em>String</em></td>\n<td>Card network.</td>\n</tr>\n<tr>\n<td>OriginalAmount</td>\n<td><em>Decimal</em></td>\n<td>The original amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionEntryTypeDesc</td>\n<td><em>String</em></td>\n<td>Description of the transaction type.</td>\n</tr>\n<tr>\n<td>Mti</td>\n<td><em>Numeric</em></td>\n<td>The numeric code indicating the type of financial transaction message.</td>\n</tr>\n<tr>\n<td>TransactionUniqueId</td>\n<td><em>Numeric</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionFee</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE1</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE2</td>\n<td>Begin Date Is Required.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE3</td>\n<td>End Date Is Required.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE4</td>\n<td>Begin Date Cannot Be Greater Than The End Date.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE5</td>\n<td>Maximum Of 31 days Between Begin Date And End Date.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE6</td>\n<td>Page Size Cannot Be Less Than 0.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE7</td>\n<td>Page Size Cannot Be Greater Than 1000 Records.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE8</td>\n<td>Card Last 4 Digit Should Be 4 Characters/Numbers.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE9</td>\n<td>Invalid Criteria.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE10</td>\n<td>Client Reference Field Length Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryV3OpE11</td>\n<td>Invalid Settlement Status.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTransactionInquiryV5"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0cd58e0d-31c4-4023-885c-74857c351564","name":"Card Transaction Inquiry V4","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CardId\": 75312,\r\n    \"BeginDate\": \"2024-05-01\",\r\n    \"EndDate\": \"2024-06-01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 11 Oct 2024 16:57:30 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": {\n        \"NumberOfPageSize\": 100,\n        \"TotalNumberOfPage\": 1,\n        \"TotalNumberOfRecord\": 1,\n        \"Pages\": [\n            {\n                \"PageNumber\": 1,\n                \"TransactionList\": [\n                    {\n                        \"CardId\": 75312,\n                        \"MaskedCardNumber\": \"404262******9730\",\n                        \"TransactionDate\": \"2024-05-15T17:16:28.727\",\n                        \"TransactionAmount\": 14,\n                        \"TransactionCurrencyCode\": \"CAD\",\n                        \"TransactionType\": \"Credit\",\n                        \"TransactionTypeId\": 6020,\n                        \"TransactionTypeCode\": \"C\",\n                        \"SettlementAmount\": 0,\n                        \"SettlementCurrencyCode\": \"CAD\",\n                        \"SettlementDate\": null,\n                        \"SettlementStatus\": \"UnSettled\",\n                        \"Description\": \"SPEND.COM                +18007303194 CA\",\n                        \"ReferenceNumber\": \"100000000006515746\",\n                        \"ChannelName\": \"Moto Sale\",\n                        \"CardOwnerName\": \"daniel test test\",\n                        \"CardTransactionSource\": \"Domestic\",\n                        \"TerminalType\": \"Pos\",\n                        \"ErrorCode\": null,\n                        \"ErrorDescription\": null,\n                        \"Merchant\": \"SPEND.COM\",\n                        \"MerchantCity\": \"+1800730319\",\n                        \"FeeAmount\": 0,\n                        \"ResponseCode\": \"00\",\n                        \"ResponseDescription\": \"Approved  \",\n                        \"Mcc\": \"5734\",\n                        \"IsReversed\": false,\n                        \"ReversalType\": \"\",\n                        \"ReversedDateTime\": null,\n                        \"HasIncrementalAuthorization\": false,\n                        \"AuthorzationCode\": \"001012\",\n                        \"CardTokenNumber\": \"404262yxfxja9730\",\n                        \"AmountDisplay\": null,\n                        \"BillingAmount\": 14,\n                        \"CardholderCurrencyCode\": \"CAD\",\n                        \"CardBrandName\": \"Visa\",\n                        \"AvailableCreditLimit\": 500,\n                        \"WalletBalance\": 486,\n                        \"ApplicationNetwork\": \"VISA\",\n                        \"OriginalAmount\": 14,\n                        \"TransactionEntryTypeDesc\": \"Manuel\",\n                        \"TransactionTypeDesc\": \"Credit\",\n                        \"Mti\": 100,\n                        \"TransactionUniqueId\": 32801,\n                        \"TransactionFee\": null\n                    }\n                ]\n            }\n        ]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"0e06fc15-a24f-4d4b-baa3-ba6f8e34d9f3"},{"name":"Wallet Transaction","id":"41aad2db-8ca4-42e5-ba5a-859693d96f6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"FromDate\": \"2020-11-05\",\n    \"ToDate\": \"2020-11-05\",\n    \"CustomerNumber\": \"12345\",\n    \"MinAmount\": 0,\n    \"MaxAmount\": 0,\n    \"AccountNumber\": 0,\n    \"ReferenceNumber\": \"string\",\n    \"PageSize\": 10,\n    \"PageNumber\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/WalletTransactions","description":"<h3 id=\"description\">Description</h3>\n<p>The Wallet Transaction API retrieves wallet transactions for a specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Begin Date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates End Date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates Customer Number. This can be retrieved using the <strong>Wallet -&gt; Get Wallet Custome</strong><em>r</em> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MinAmount</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>Indicates Minimum Amount.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxDate</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>Indicates Maximum Amount.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Indicates Account Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>18</td>\n<td>Indicates unique identifier for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Integer</em></td>\n<td>1000</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 0-1000, default is 10.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td><em>Integer</em></td>\n<td></td>\n<td>Optional page number for returning a page of results.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>The transaction amount.</td>\n</tr>\n<tr>\n<td>referenceNumber</td>\n<td><em>String</em></td>\n<td>The unique reference number relating to the transaction.</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>Description/reason for the transaction.</td>\n</tr>\n<tr>\n<td>transactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td><em>Numeric</em></td>\n<td>Account number where the funds were withdrawn/ deposited.</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>currencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of the account.</td>\n</tr>\n<tr>\n<td>maskedCardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>feeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>remainingBalance</td>\n<td><em>Decimal</em></td>\n<td>Remaining balance on the card/in the account.</td>\n</tr>\n<tr>\n<td>isFeeTxn</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether there is a fee attached to the transaction.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>balanceAmount</td>\n<td><em>Decimal</em></td>\n<td>Remaining balance on the card/in the account.</td>\n</tr>\n<tr>\n<td>clientCustomerNumber</td>\n<td><em>String</em></td>\n<td>the unique customer number of a client.</td>\n</tr>\n<tr>\n<td>mcc</td>\n<td><em>String</em></td>\n<td>The MCC category/code.</td>\n</tr>\n<tr>\n<td>settlementStatus</td>\n<td><em>String</em></td>\n<td>The settlement status of the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionSearchOpE2</td>\n<td>From Date Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>TransactionSearchOpE3</td>\n<td>To Date Cannot Be Empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","WalletTransactions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"62490f5c-d291-44fc-afc4-b8007c73e476","name":"Wallet Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"FromDate\": \"2020-11-05\",\n  \"ToDate\": \"2020-11-05\",\n  \"CustomerNumber\": \"12345\",\n  \"MinAmount\": 0,\n  \"MaxAmount\": 0,\n  \"AccountNumber\": 0,\n  \"ReferenceNumber\": \"string\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/WalletTransactions"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"item\": [\r\n    {\r\n      \"transactionDate\": \"2020-11-05\",\r\n      \"amount\": 0,\r\n      \"referenceNumber\": \"string\",\r\n      \"description\": \"string\",\r\n      \"transactionType\": \"string\",\r\n      \"accountNumber\": 0,\r\n      \"accountName\": \"string\",\r\n      \"currencyCode\": \"string\",\r\n      \"maskedCardNumber\": \"string\",\r\n      \"feeAmount\": 0,\r\n      \"remainingBalance\": 0,\r\n      \"isFeeTxn\": true,\r\n      \"balanceAmount\": 0,\r\n      \"clientCustomerNumber\": \"string\",\r\n      \"mcc\": \"string\",\r\n      \"settlementStatus\": \"string\"\r\n    }\r\n  ],\r\n  \"isSucceeded\": true,\r\n  \"errorList\": [\r\n    {\r\n      \"errorCode\": \"string\",\r\n      \"errorDescription\": \"string\",\r\n      \"parameterList\": [\r\n        \"string\"\r\n      ]\r\n    }\r\n  ],\r\n  \"parameterList\": [\r\n    \"string\"\r\n  ]\r\n}"}],"_postman_id":"41aad2db-8ca4-42e5-ba5a-859693d96f6a"},{"name":"Get Card Payment Code","id":"c5b79fbe-58da-4f5a-8312-bd57c674ce58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{   \n    \"CardId\": 75312\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardPaymentCode","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Card Payment Code API retrieves the payment code for the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates unique card ID.  <br />This can be retrieved using the <em>Wallet -&gt; Card List</em> API.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCardPaymentCode"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6dafa08b-464a-4648-a4fd-ef8c0f12aabb","name":"Get Card Payment Code","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \n    \"CardId\": 12132\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCardPaymentCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 08:12:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"5921","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": \"iVBORw0KGgoAAAANSUhEUgAAApQAAAKUCAYAAAC6z6g8AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAELoSURBVHhe7dZBjiPLlsTQv/9Nd4/ejAKUoAG6FcEDcGwOD88q/e//kiRJEqEflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QZkkSRKlH5RJkiRR+kGZJEkSpR+USZIkUfpBmSRJEqUflEmSJFH6QSn973//q/q6Ndq41Bpt1Pet0YZpjTaqPhWnG5ToUVZ9ao02LrVGG/V9a7RhWqONqk/F6QYlepRVn1qjjUut0UZ93xptmNZoo+pTcbpBiR5l1afWaONSa7RR37dGG6Y12qj6VJxuUKJHWfWpNdq41Bpt1Pet0YZpjTaqPhWnG5ToUVZ9ao02LrVGG/V9a7RhWqONqk/F6QYlepRVn1qjjUut0UZ93xptmNZoo+pTcbpBiR5l1afWaONSa7RR37dGG6Y12qj6VJxuUKJHWfWpNdq41Bpt1Pet0YZpjTaqPhWnG5ToUVZ9ao02LrVGG/V9a7RhWqONqk/F6QYlepRVn1qjjUut0UZ93xptmNZoo+pTcbpBiR5l1afWaONSa7RR37dGG6Y12qj6VJxuUKJHWfWpNdq41Bpt1Pet0YZpjTaqPhWnG5ToUVZ9ao02LrVGG/V9a7RhWqONqk/F6QYlepRVn1qjjUut0UZ93xptmNZoo+pTcbpBiR5l1afWaONSa7RR37dGG6Y12qj6VJxuUKJHWfWpNdq41Bpt1Pet0YZpjTaqPhWnG5ToUVZ9ao02LrVGG/V9a7RhWqONqk/F6QYlepRVn1qjjUut0UZ93xptmNZoo+pTcbpBiR5l1afWaONSa7RR37dGG6Y12qj6VJxuUKJHacot9I1Ma7Rhyi30jS51HZ3ZlFvoG5nidIMSPUpTbqFvZFqjDVNuoW90qevozKbcQt/IFKcblOhRmnILfSPTGm2Ycgt9o0tdR2c25Rb6RqY43aBEj9KUW+gbmdZow5Rb6Btd6jo6sym30DcyxekGJXqUptxC38i0Rhum3ELf6FLX0ZlNuYW+kSlONyjRozTlFvpGpjXaMOUW+kaXuo7ObMot9I1McbpBiR6lKbfQNzKt0YYpt9A3utR1dGZTbqFvZIrTDUr0KE25hb6RaY02TLmFvtGlrqMzm3ILfSNTnG5Qokdpyi30jUxrtGHKLfSNLnUdndmUW+gbmeJ0gxI9SlNuoW9kWqMNU26hb3Sp6+jMptxC38gUpxuU6FGacgt9I9MabZhyC32jS11HZzblFvpGpjjdoESP0pRb6BuZ1mjDlFvoG13qOjqzKbfQNzLF6QYlepSm3ELfyLRGG6bcQt/oUtfRmU25hb6RKU43KNGjNOUW+kamNdow5Rb6Rpe6js5syi30jUxxukGJHqUpt9A3Mq3Rhim30De61HV0ZlNuoW9kitMNSvQoTbmFvpFpjTZMuYW+0aWuozObcgt9I1OcblCiR2nKLfSNTGu0Ycot9I0udR2d2ZRb6BuZ4nSDEj1KU26hb2Raow1TbqFvdKnr6Mym3ELfyBSnG5ToUZpyC30j0xptmHILfaNLXUdnNuUW+kamON2gRI/SlFvoG5nWaMOUW+gbXeo6OrMpt9A3MsXpBiV6lKY12nhya7RhWqON+r412rjUGm2Y1mjDtEYbT26NNkxxukGJHqVpjTae3BptmNZoo75vjTYutUYbpjXaMK3RxpNbow1TnG5QokdpWqONJ7dGG6Y12qjvW6ONS63RhmmNNkxrtPHk1mjDFKcblOhRmtZo48mt0YZpjTbq+9Zo41JrtGFaow3TGm08uTXaMMXpBiV6lKY12nhya7RhWqON+r412rjUGm2Y1mjDtEYbT26NNkxxukGJHqVpjTae3BptmNZoo75vjTYutUYbpjXaMK3RxpNbow1TnG5QokdpWqONJ7dGG6Y12qjvW6ONS63RhmmNNkxrtPHk1mjDFKcblOhRmtZo48mt0YZpjTbq+9Zo41JrtGFaow3TGm08uTXaMMXpBiV6lKY12nhya7RhWqON+r412rjUGm2Y1mjDtEYbT26NNkxxukGJHqVpjTae3BptmNZoo75vjTYutUYbpjXaMK3RxpNbow1TnG5QokdpWqONJ7dGG6Y12qjvW6ONS63RhmmNNkxrtPHk1mjDFKcblOhRmtZo48mt0YZpjTbq+9Zo41JrtGFaow3TGm08uTXaMMXpBiV6lKY12nhya7RhWqON+r412rjUGm2Y1mjDtEYbT26NNkxxukGJHqVpjTae3BptmNZoo75vjTYutUYbpjXaMK3RxpNbow1TnG5QokdpWqONJ7dGG6Y12qjvW6ONS63RhmmNNkxrtPHk1mjDFKcblOhRmtZo48mt0YZpjTbq+9Zo41JrtGFaow3TGm08uTXaMMXpBiV6lKY12nhya7RhWqON+r412rjUGm2Y1mjDtEYbT26NNkxxukGJHqVpjTae3BptmNZoo75vjTYutUYbpjXaMK3RxpNbow1TnG5QokdpWqONJ7dGG6Y12qjvW6ONS63RhmmNNkxrtPHk1mjDFKcblOhRmtZo48mt0YZpjTbq+9Zo41JrtGFaow3TGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN09vQHdT3XUdnNq3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jC9Dd1Bfd91dGbTGm08uTXaMMXpBiV6lKY12nhya7RhWqMN0xptmNZow7RGG6Y12jCt0YZpjTae3BptmOJ0gxI9StMabTy5NdowrdGGaY02TGu0YVqjDdMabZjWaMO0RhtPbo02THG6QYkepWmNNp7cGm2Y1mjDtEYbpjXaMK3RhmmNNkxrtGFao40nt0YbpjjdoESP0rRGG09ujTZMa7RhWqMN0xptmNZow7RGG6Y12jCt0caTW6MNU5xuUKJHaVqjjSe3RhumNdowrdGGaY02TGu0YVqjDdMabZjWaOPJrdGGKU43KNGjNK3RxpNbow3TGm2Y1mjDtEYbpjXaMK3RhmmNNkxrtPHk1mjDFKcblOhRmtZo48mt0YZpjTZMa7RhWqMN0xptmNZow7RGG6Y12nhya7RhitMNSvQoTWu08eTWaMO0RhumNdowrdGGaY02TGu0YVqjDdMabTy5NdowxekGJXqUpjXaeHJrtGFaow3TGm2Y1mjDtEYbpjXaMK3RhmmNNp7cGm2Y4nSDEj1K0xptPLk12jCt0YZpjTZMa7RhWqMN0xptmNZow7RGG09ujTZMcbpBiR6laY02ntwabZjWaMO0RhumNdowrdGGaY02TGu0YVqjjSe3RhumON2gRI/StEYbT26NNkxrtGFaow3TGm2Y1mjDtEYbpjXaMK3RxpNbow1TnG5QokdpWqONJ7dGG6Y12jCt0YZpjTZMa7RhWqMN0xptmNZo48mt0YYpTjco0aM0rdHGk1ujDdMabZjWaMO0RhumNdowrdGGaY02TGu08eTWaMMUpxuU6FGa1mjjya3RhmmNNkxrtGFaow3TGm2Y1mjDtEYbpjXaeHJrtGGK0w1K9ChNa7Tx5NZow7RGG6Y12jCt0YZpjTZMa7RhWqMN0xptPLk12jDF6QYlepSmNdp4cmu0YVqjDdMabZjWaMO0RhumNdowrdGGaY02ntwabZjidIMSPUrTGm08uTXaMK3RhmmNNkxrtGFaow3TGm2Y1mjDtEYbT26NNkxxukGJHqVpjTae3BptmNZow7RGG6Y12jCt0YZpjTZMa7RhWqONJ7dGG6Y43aBEj9K0RhtPbo02TGu0YVqjDdMabZjWaMO0RhumNdowrdHGk1ujDVOcblCiR2nKLfSNTNfRmU3X0ZkvtUYbpuvozKbcQt/IFKcblOhRmnILfSPTdXRm03V05kut0YbpOjqzKbfQNzLF6QYlepSm3ELfyHQdndl0HZ35Umu0YbqOzmzKLfSNTHG6QYkepSm30DcyXUdnNl1HZ77UGm2YrqMzm3ILfSNTnG5Qokdpyi30jUzX0ZlN19GZL7VGG6br6Mym3ELfyBSnG5ToUZpyC30j03V0ZtN1dOZLrdGG6To6sym30DcyxekGJXqUptxC38h0HZ3ZdB2d+VJrtGG6js5syi30jUxxukGJHqUpt9A3Ml1HZzZdR2e+1BptmK6jM5tyC30jU5xuUKJHacot9I1M19GZTdfRmS+1Rhum6+jMptxC38gUpxuU6FGacgt9I9N1dGbTdXTmS63Rhuk6OrMpt9A3MsXpBiV6lKbcQt/IdB2d2XQdnflSa7Rhuo7ObMot9I1McbpBiR6lKbfQNzJdR2c2XUdnvtQabZiuozObcgt9I1OcblCiR2nKLfSNTNfRmU3X0ZkvtUYbpuvozKbcQt/IFKcblOhRmnILfSPTdXRm03V05kut0YbpOjqzKbfQNzLF6QYlepSm3ELfyHQdndl0HZ35Umu0YbqOzmzKLfSNTHG6QYkepSm30DcyXUdnNl1HZ77UGm2YrqMzm3ILfSNTnG5Qokdpyi30jUzX0ZlN19GZL7VGG6br6Mym3ELfyBSnG5ToUZpyC30j03V0ZtN1dOZLrdGG6To6sym30DcyxekGJXqUptxC38h0HZ3ZdB2d+VJrtGG6js5syi30jUxxukGJHqUpt9A3Ml1HZzZdR2e+1BptmK6jM5tyC30jU5xuUKJHWfWpNdowrdGGaY02TGu0YVqjDdMabVR9Kk43KNGjrPrUGm2Y1mjDtEYbpjXaMK3RhmmNNqo+FacblOhRVn1qjTZMa7RhWqMN0xptmNZow7RGG1WfitMNSvQoqz61RhumNdowrdGGaY02TGu0YVqjjapPxekGJXqUVZ9aow3TGm2Y1mjDtEYbpjXaMK3RRtWn4nSDEj3Kqk+t0YZpjTZMa7RhWqMN0xptmNZoo+pTcbpBiR5l1afWaMO0RhumNdowrdGGaY02TGu0UfWpON2gRI+y6lNrtGFaow3TGm2Y1mjDtEYbpjXaqPpUnG5QokdZ9ak12jCt0YZpjTZMa7RhWqMN0xptVH0qTjco0aOs+tQabZjWaMO0RhumNdowrdGGaY02qj4VpxuU6FFWfWqNNkxrtGFaow3TGm2Y1mjDtEYbVZ+K0w1K9CirPrVGG6Y12jCt0YZpjTZMa7RhWqONqk/F6QYlepRVn1qjDdMabZjWaMO0RhumNdowrdFG1afidIMSPcqqT63RhmmNNkxrtGFaow3TGm2Y1mij6lNxukGJHmXVp9Zow7RGG6Y12jCt0YZpjTZMa7RR9ak43aBEj7LqU2u0YVqjDdMabZjWaMO0RhumNdqo+lScblCiR1n1qTXaMK3RhmmNNkxrtGFaow3TGm1UfSpONyjRo6z61BptmNZow7RGG6Y12jCt0YZpjTaqPhWnG5ToUVZ9ao02TGu0YVqjDdMabZjWaMO0RhtVn4rTDUr0KKs+tUYbpjXaMK3RhmmNNkxrtGFao42qT8XpBpN/GP2jeKnr6Mz1fUnyn/5FSP5h9J/8pa6jM9f3Jcl/+hch+YfRf/KXuo7OXN+XJP/pX4TkH0b/yV/qOjpzfV+S/Kd/EZJ/GP0nf6nr6Mz1fUnyn/5FSP5h9J/8pa6jM9f3Jcl/+hch+YfRf/KXuo7OXN+XJP/pX4TkH0b/yV/qOjpzfV+S/Kd/EZJ/GP0nf6nr6Mz1fUnyn/5FSP5h9J/8pa6jM9f3Jcl/+hch+YfRf/KXuo7OXN+XJP/pX4TkH0b/yV/qOjpzfV+S/Kd/EZJ/GP0nf6nr6Mz1fUnyn/5FSP5h9J/8pa6jM9f3Jcl/+hch+YfRf/KXuo7OXN+XJP/pX4TkH0b/yV/qOjpzfV+S/Kd/EZJ/GP0nf6nr6Mz1fUnyn/5FSP5h9J/8pa6jM9f3Jcl/+hch+YfRf/KXuo7OXN+XJP/pX4TkH0b/yV/qOjpzfV+S/Kd/EY6hf7QvtUYbpjXauNQabZjWaMN0HZ3Z9DZ0B6Y12qjfFacbPIYe+aXWaMO0RhuXWqMN0xptmK6jM5vehu7AtEYb9bvidIPH0CO/1BptmNZo41JrtGFaow3TdXRm09vQHZjWaKN+V5xu8Bh65Jdaow3TGm1cao02TGu0YbqOzmx6G7oD0xpt1O+K0w0eQ4/8Umu0YVqjjUut0YZpjTZM19GZTW9Dd2Bao436XXG6wWPokV9qjTZMa7RxqTXaMK3Rhuk6OrPpbegOTGu0Ub8rTjd4DD3yS63RhmmNNi61RhumNdowXUdnNr0N3YFpjTbqd8XpBo+hR36pNdowrdHGpdZow7RGG6br6Mymt6E7MK3RRv2uON3gMfTIL7VGG6Y12rjUGm2Y1mjDdB2d2fQ2dAemNdqo3xWnGzyGHvml1mjDtEYbl1qjDdMabZiuozOb3obuwLRGG/W74nSDx9Ajv9QabZjWaONSa7RhWqMN03V0ZtPb0B2Y1mijflecbvAYeuSXWqMN0xptXGqNNkxrtGG6js5sehu6A9MabdTvitMNHkOP/FJrtGFao41LrdGGaY02TNfRmU1vQ3dgWqON+l1xusFj6JFfao02TGu0cak12jCt0YbpOjqz6W3oDkxrtFG/K043eAw98kut0YZpjTYutUYbpjXaMF1HZza9Dd2BaY026nfF6QaPoUd+qTXaMK3RxqXWaMO0Rhum6+jMprehOzCt0Ub9rjjd4DH0yC+1RhumNdq41BptmNZow3Qdndn0NnQHpjXaqN8Vpxs8hh75pdZow7RGG5daow3TGm2YrqMzm96G7sC0Rhv1u+J0g8fQI7/UGm2Y1mjjUmu0YVqjDdN1dGbT29AdmNZoo35XnG7wGHrkl1qjDdMabVxqjTZMa7Rhuo7ObHobugPTGm3U74rTDeZP6I/wUm9Dd2C6js5suo7OXN+3Rhum6+jMTy5ON5g/oT/CS70N3YHpOjqz6To6c33fGm2YrqMzP7k43WD+hP4IL/U2dAem6+jMpuvozPV9a7Rhuo7O/OTidIP5E/ojvNTb0B2YrqMzm66jM9f3rdGG6To685OL0w3mT+iP8FJvQ3dguo7ObLqOzlzft0YbpuvozE8uTjeYP6E/wku9Dd2B6To6s+k6OnN93xptmK6jMz+5ON1g/oT+CC/1NnQHpuvozKbr6Mz1fWu0YbqOzvzk4nSD+RP6I7zU29AdmK6jM5uuozPX963Rhuk6OvOTi9MN5k/oj/BSb0N3YLqOzmy6js5c37dGG6br6MxPLk43mD+hP8JLvQ3dgek6OrPpOjpzfd8abZiuozM/uTjdYP6E/ggv9TZ0B6br6Mym6+jM9X1rtGG6js785OJ0g/kT+iO81NvQHZiuozObrqMz1/et0YbpOjrzk4vTDeZP6I/wUm9Dd2C6js5suo7OXN+3Rhum6+jMTy5ON5g/oT/CS70N3YHpOjqz6To6c33fGm2YrqMzP7k43WD+hP4IL/U2dAem6+jMpuvozPV9a7Rhuo7O/OTidIP5E/ojvNTb0B2YrqMzm66jM9f3rdGG6To685OL0w3mT+iP8FJvQ3dguo7ObLqOzlzft0YbpuvozE8uTjeYP6E/wku9Dd2B6To6s+k6OnN93xptmK6jMz+5ON1g/oT+CC/1NnQHpuvozKbr6Mz1fWu0YbqOzvzk4nSD+RP6I7zU29AdmK6jM5uuozPX963Rhuk6OvOTi9MNHkOPvOpTa7RhWqMN0xptmK6jM5vWaMO0RhumNdow5dn6wsfQH2HVp9Zow7RGG6Y12jBdR2c2rdGGaY02TGu0Ycqz9YWPoT/Cqk+t0YZpjTZMa7Rhuo7ObFqjDdMabZjWaMOUZ+sLH0N/hFWfWqMN0xptmNZow3Qdndm0RhumNdowrdGGKc/WFz6G/girPrVGG6Y12jCt0YbpOjqzaY02TGu0YVqjDVOerS98DP0RVn1qjTZMa7RhWqMN03V0ZtMabZjWaMO0RhumPFtf+Bj6I6z61BptmNZow7RGG6br6MymNdowrdGGaY02THm2vvAx9EdY9ak12jCt0YZpjTZM19GZTWu0YVqjDdMabZjybH3hY+iPsOpTa7RhWqMN0xptmK6jM5vWaMO0RhumNdow5dn6wsfQH2HVp9Zow7RGG6Y12jBdR2c2rdGGaY02TGu0Ycqz9YWPoT/Cqk+t0YZpjTZMa7Rhuo7ObFqjDdMabZjWaMOUZ+sLH0N/hFWfWqMN0xptmNZow3Qdndm0RhumNdowrdGGKc/WFz6G/girPrVGG6Y12jCt0YbpOjqzaY02TGu0YVqjDVOerS98DP0RVn1qjTZMa7RhWqMN03V0ZtMabZjWaMO0RhumPFtf+Bj6I6z61BptmNZow7RGG6br6MymNdowrdGGaY02THm2vvAx9EdY9ak12jCt0YZpjTZM19GZTWu0YVqjDdMabZjybH3hY+iPsOpTa7RhWqMN0xptmK6jM5vWaMO0RhumNdow5dn6wsfQH2HVp9Zow7RGG6Y12jBdR2c2rdGGaY02TGu0Ycqz9YWPoT/Cqk+t0YZpjTZMa7Rhuo7ObFqjDdMabZjWaMOUZ+sLH0N/hFWfWqMN0xptmNZow3Qdndm0RhumNdowrdGGKc/WF5boj8b0NnQHpjh0p6br6Mymt6E7uNQabZji0J2a4nSDEj1K09vQHZji0J2arqMzm96G7uBSa7RhikN3aorTDUr0KE1vQ3dgikN3arqOzmx6G7qDS63RhikO3akpTjco0aM0vQ3dgSkO3anpOjqz6W3oDi61RhumOHSnpjjdoESP0vQ2dAemOHSnpuvozKa3oTu41BptmOLQnZridIMSPUrT29AdmOLQnZquozOb3obu4FJrtGGKQ3dqitMNSvQoTW9Dd2CKQ3dquo7ObHobuoNLrdGGKQ7dqSlONyjRozS9Dd2BKQ7dqek6OrPpbegOLrVGG6Y4dKemON2gRI/S9DZ0B6Y4dKem6+jMprehO7jUGm2Y4tCdmuJ0gxI9StPb0B2Y4tCdmq6jM5vehu7gUmu0YYpDd2qK0w1K9ChNb0N3YIpDd2q6js5sehu6g0ut0YYpDt2pKU43KNGjNL0N3YEpDt2p6To6s+lt6A4utUYbpjh0p6Y43aBEj9L0NnQHpjh0p6br6Mymt6E7uNQabZji0J2a4nSDEj1K09vQHZji0J2arqMzm96G7uBSa7RhikN3aorTDUr0KE1vQ3dgikN3arqOzmx6G7qDS63RhikO3akpTjco0aM0vQ3dgSkO3anpOjqz6W3oDi61RhumOHSnpjjdoESP0vQ2dAemOHSnpuvozKa3oTu41BptmOLQnZridIMSPUrT29AdmOLQnZquozOb3obu4FJrtGGKQ3dqitMNSvQoTW9Dd2CKQ3dquo7ObHobuoNLrdGGKQ7dqSlONyjRozS9Dd2BKQ7dqek6OrPpbegOLrVGG6Y4dKemON2gRI/yUm9Dd3CpNdq41HV0ZtN1dGbTdXRm0xpt1O+K0w1K9Cgv9TZ0B5dao41LXUdnNl1HZzZdR2c2rdFG/a443aBEj/JSb0N3cKk12rjUdXRm03V0ZtN1dGbTGm3U74rTDUr0KC/1NnQHl1qjjUtdR2c2XUdnNl1HZzat0Ub9rjjdoESP8lJvQ3dwqTXauNR1dGbTdXRm03V0ZtMabdTvitMNSvQoL/U2dAeXWqONS11HZzZdR2c2XUdnNq3RRv2uON2gRI/yUm9Dd3CpNdq41HV0ZtN1dGbTdXRm0xpt1O+K0w1K9Cgv9TZ0B5dao41LXUdnNl1HZzZdR2c2rdFG/a443aBEj/JSb0N3cKk12rjUdXRm03V0ZtN1dGbTGm3U74rTDUr0KC/1NnQHl1qjjUtdR2c2XUdnNl1HZzat0Ub9rjjdoESP8lJvQ3dwqTXauNR1dGbTdXRm03V0ZtMabdTvitMNSvQoL/U2dAeXWqONS11HZzZdR2c2XUdnNq3RRv2uON2gRI/yUm9Dd3CpNdq41HV0ZtN1dGbTdXRm0xpt1O+K0w1K9Cgv9TZ0B5dao41LXUdnNl1HZzZdR2c2rdFG/a443aBEj/JSb0N3cKk12rjUdXRm03V0ZtN1dGbTGm3U74rTDUr0KC/1NnQHl1qjjUtdR2c2XUdnNl1HZzat0Ub9rjjdoESP8lJvQ3dwqTXauNR1dGbTdXRm03V0ZtMabdTvitMNSvQoL/U2dAeXWqONS11HZzZdR2c2XUdnNq3RRv2uON2gRI/yUm9Dd3CpNdq41HV0ZtN1dGbTdXRm0xpt1O+K0w1K9Cgv9TZ0B5dao41LXUdnNl1HZzZdR2c2rdFG/a443eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjd4DH0yE3X0ZkvtUYbpjXaMF1HZ77UGm2Y1mjDtEYbpjh0p6Y43eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjd4DH0yE3X0ZkvtUYbpjXaMF1HZ77UGm2Y1mjDtEYbpjh0p6Y43eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjd4DH0yE3X0ZkvtUYbpjXaMF1HZ77UGm2Y1mjDtEYbpjh0p6Y43eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjd4DH0yE3X0ZkvtUYbpjXaMF1HZ77UGm2Y1mjDtEYbpjh0p6Y43eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjd4DH0yE3X0ZkvtUYbpjXaMF1HZ77UGm2Y1mjDtEYbpjh0p6Y43eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjd4DH0yE3X0ZkvtUYbpjXaMF1HZ77UGm2Y1mjDtEYbpjh0p6Y43eAx9MhN19GZL7VGG6Y12jBdR2e+1BptmNZow7RGG6Y4dKemON3gMfTITdfRmS+1RhumNdowXUdnvtQabZjWaMO0RhumOHSnpjjdoESP0rRGG6a3oTswXUdnvlRuoW9kWqMN0xptXGqNNky5pS8i0SM3rdGG6W3oDkzX0ZkvlVvoG5nWaMO0RhuXWqMNU27pi0j0yE1rtGF6G7oD03V05kvlFvpGpjXaMK3RxqXWaMOUW/oiEj1y0xptmN6G7sB0HZ35UrmFvpFpjTZMa7RxqTXaMOWWvohEj9y0Rhumt6E7MF1HZ75UbqFvZFqjDdMabVxqjTZMuaUvItEjN63Rhult6A5M19GZL5Vb6BuZ1mjDtEYbl1qjDVNu6YtI9MhNa7Rhehu6A9N1dOZL5Rb6RqY12jCt0cal1mjDlFv6IhI9ctMabZjehu7AdB2d+VK5hb6RaY02TGu0cak12jDllr6IRI/ctEYbprehOzBdR2e+VG6hb2Raow3TGm1cao02TLmlLyLRIzet0YbpbegOTNfRmS+VW+gbmdZow7RGG5daow1TbumLSPTITWu0YXobugPTdXTmS+UW+kamNdowrdHGpdZow5Rb+iISPXLTGm2Y3obuwHQdnflSuYW+kWmNNkxrtHGpNdow5Za+iESP3LRGG6a3oTswXUdnvlRuoW9kWqMN0xptXGqNNky5pS8i0SM3rdGG6W3oDkzX0ZkvlVvoG5nWaMO0RhuXWqMNU27pi0j0yE1rtGF6G7oD03V05kvlFvpGpjXaMK3RxqXWaMOUW/oiEj1y0xptmN6G7sB0HZ35UrmFvpFpjTZMa7RxqTXaMOWWvohEj9y0Rhumt6E7MF1HZ75UbqFvZFqjDdMabVxqjTZMuaUvItEjN63Rhult6A5M19GZL5Vb6BuZ1mjDtEYbl1qjDVNu6YtI9MhNa7Rhehu6A9N1dOZL5Rb6RqY12jCt0cal1mjDlFv6IhI9ctMabZjehu7AdB2d+VK5hb6RaY02TGu0cak12jDllr7IMfRHY1qjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGj6FHblqjjSe3RhuXehu6g0ut0YZpjTZMa7Rhuo7ObFqjDVOcbvAYeuSmNdp4cmu0cam3oTu41BptmNZow7RGG6br6MymNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QYlepSmt6E7MK3RhmmNNi61Rhum6+jMpjXaqN+1RhumNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QYlepSmt6E7MK3RhmmNNi61Rhum6+jMpjXaqN+1RhumNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QYlepSmt6E7MK3RhmmNNi61Rhum6+jMpjXaqN+1RhumNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QYlepSmt6E7MK3RhmmNNi61Rhum6+jMpjXaqN+1RhumNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QYlepSmt6E7MK3RhmmNNi61Rhum6+jMpjXaqN+1RhumNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QYlepSmt6E7MK3RhmmNNi61Rhum6+jMpjXaqN+1RhumNdowxekGJXqUprehOzCt0YZpjTYutUYbpuvozKY12qjftUYbpjXaMMXpBiV6lKa3oTswrdGGaY02LrVGG6br6MymNdqo37VGG6Y12jDF6QaTfxj9o2i6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EWSfxj9I2u6js5suo7O/OTehu6gvi+39EUkeuRVn1qjjUut0YZpjTZM19GZTWu0YVqjjUslf9GLkeiPsOpTa7RxqTXaMK3Rhuk6OrNpjTZMa7RxqeQvejES/RFWfWqNNi61RhumNdowXUdnNq3RhmmNNi6V/EUvRqI/wqpPrdHGpdZow7RGG6br6MymNdowrdHGpZK/6MVI9EdY9ak12rjUGm2Y1mjDdB2d2bRGG6Y12rhU8he9GIn+CKs+tUYbl1qjDdMabZiuozOb1mjDtEYbl0r+ohcj0R9h1afWaONSa7RhWqMN03V0ZtMabZjWaONSyV/0YiT6I6z61BptXGqNNkxrtGG6js5sWqMN0xptXCr5i16MRH+EVZ9ao41LrdGGaY02TNfRmU1rtGFao41LJX/Ri5Hoj7DqU2u0cak12jCt0YbpOjqzaY02TGu0cankL3oxEv0RVn1qjTYutUYbpjXaMF1HZzat0YZpjTYulfxFL0aiP8KqT63RxqXWaMO0Rhum6+jMpjXaMK3RxqWSv+jFSPRHWPWpNdq41BptmNZow3Qdndm0RhumNdq4VPIXvRiJ/girPrVGG5daow3TGm2YrqMzm9Zow7RGG5dK/qIXI9EfYdWn1mjjUmu0YVqjDdN1dGbTGm2Y1mjjUslf9GIk+iOs+tQabVxqjTZMa7Rhuo7ObFqjDdMabVwq+YtejER/hFWfWqONS63RhmmNNkzX0ZlNa7RhWqONSyV/0YuR6I+w6lNrtHGpNdowrdGG6To6s2mNNkxrtHGp5C96MRL9EVZ9ao02LrVGG6Y12jBdR2c2rdGGaY02LpX8RS9Goj/Cqk+t0cal1mjDtEYbpuvozKY12jCt0calkr/oxUj0R2jKLfSNTLmFvlH9rrehOzAlv9QLlOiP2pRb6BuZcgt9o/pdb0N3YEp+qRco0R+1KbfQNzLlFvpG9bvehu7AlPxSL1CiP2pTbqFvZMot9I3qd70N3YEp+aVeoER/1KbcQt/IlFvoG9Xvehu6A1PyS71Aif6oTbmFvpEpt9A3qt/1NnQHpuSXeoES/VGbcgt9I1NuoW9Uv+tt6A5MyS/1AiX6ozblFvpGptxC36h+19vQHZiSX+oFSvRHbcot9I1MuYW+Uf2ut6E7MCW/1AuU6I/alFvoG5lyC32j+l1vQ3dgSn6pFyjRH7Upt9A3MuUW+kb1u96G7sCU/FIvUKI/alNuoW9kyi30jep3vQ3dgSn5pV6gRH/UptxC38iUW+gb1e96G7oDU/JLvUCJ/qhNuYW+kSm30Deq3/U2dAem5Jd6gRL9UZtyC30jU26hb1S/623oDkzJL/UCJfqjNuUW+kam3ELfqH7X29AdmJJf6gVK9Edtyi30jUy5hb5R/a63oTswJb/UC5Toj9qUW+gbmXILfaP6XW9Dd2BKfqkXKNEftSm30Dcy5Rb6RvW73obuwJT8Ui9Qoj9qU26hb2TKLfSN6ne9Dd2BKfmlXqBEf9SmNdp4cmu0YVqjjSeXW+gb1e9aow1Tnq0vLNEfjWmNNp7cGm2Y1mjjyeUW+kb1u9Zow5Rn6wtL9EdjWqONJ7dGG6Y12nhyuYW+Uf2uNdow5dn6whL90ZjWaOPJrdGGaY02nlxuoW9Uv2uNNkx5tr6wRH80pjXaeHJrtGFao40nl1voG9XvWqMNU56tLyzRH41pjTae3BptmNZo48nlFvpG9bvWaMOUZ+sLS/RHY1qjjSe3RhumNdp4crmFvlH9rjXaMOXZ+sIS/dGY1mjjya3RhmmNNp5cbqFvVL9rjTZMeba+sER/NKY12nhya7RhWqONJ5db6BvV71qjDVOerS8s0R+NaY02ntwabZjWaOPJ5Rb6RvW71mjDlGfrC0v0R2Nao40nt0YbpjXaeHK5hb5R/a412jDl2frCEv3RmNZo48mt0YZpjTaeXG6hb1S/a402THm2vrBEfzSmNdp4cmu0YVqjjSeXW+gb1e9aow1Tnq0vLNEfjWmNNp7cGm2Y1mjjyeUW+kb1u9Zow5Rn6wtL9EdjWqONJ7dGG6Y12nhyuYW+Uf2uNdow5dn6whL90ZjWaOPJrdGGaY02nlxuoW9Uv2uNNkx5tr6wRH80pjXaeHJrtGFao40nl1voG9XvWqMNU56tLyzRH41pjTae3BptmNZo48nlFvpG9bvWaMOUZ+sLS/RHY1qjjSe3RhumNdp4crmFvlH9rjXaMOXZ+sIS/dGY1mjjya3RhmmNNp5cbqFvVL9rjTZMeba+sER/NKY12nhya7Rhehu6g0tdR2e+1BptmNZow7RGG6Y12jDllr6IRI/ctEYbT26NNkxvQ3dwqevozJdaow3TGm2Y1mjDtEYbptzSF5HokZvWaOPJrdGG6W3oDi51HZ35Umu0YVqjDdMabZjWaMOUW/oiEj1y0xptPLk12jC9Dd3Bpa6jM19qjTZMa7RhWqMN0xptmHJLX0SiR25ao40nt0YbprehO7jUdXTmS63RhmmNNkxrtGFaow1TbumLSPTITWu08eTWaMP0NnQHl7qOznypNdowrdGGaY02TGu0YcotfRGJHrlpjTae3BptmN6G7uBS19GZL7VGG6Y12jCt0YZpjTZMuaUvItEjN63RxpNbow3T29AdXOo6OvOl1mjDtEYbpjXaMK3Rhim39EUkeuSmNdp4cmu0YXobuoNLXUdnvtQabZjWaMO0RhumNdow5Za+iESP3LRGG09ujTZMb0N3cKnr6MyXWqMN0xptmNZow7RGG6bc0heR6JGb1mjjya3Rhult6A4udR2d+VJrtGFaow3TGm2Y1mjDlFv6IhI9ctMabTy5NdowvQ3dwaWuozNfao02TGu0YVqjDdMabZhyS19EokduWqONJ7dGG6a3oTu41HV05kut0YZpjTZMa7RhWqMNU27pi0j0yE1rtPHk1mjD9DZ0B5e6js58qTXaMK3RhmmNNkxrtGHKLX0RiR65aY02ntwabZjehu7gUtfRmS+1RhumNdowrdGGaY02TLmlLyLRIzet0caTW6MN09vQHVzqOjrzpdZow7RGG6Y12jCt0YYpt/RFJHrkpjXaeHJrtGF6G7qDS11HZ77UGm2Y1mjDtEYbpjXaMOWWvohEj9y0RhtPbo02TG9Dd3Cp6+jMl1qjDdMabZjWaMO0Rhum3NIXkeiRm9Zo48mt0YbpbegOLnUdnflSa7RhWqMN0xptmNZow5Rb+iISPXLTGm08uTXaML0N3cGlrqMzX2qNNkxrtGFaow3TGm2YcktfRKJHblqjjSe3RhumNdp4cmu0YVqjDdMabZjWaMP0NnQHpjXaMMXpBiV6lKY12nhya7RhWqONJ7dGG6Y12jCt0YZpjTZMb0N3YFqjDVOcblCiR2lao40nt0YbpjXaeHJrtGFaow3TGm2Y1mjD9DZ0B6Y12jDF6QYlepSmNdp4cmu0YVqjjSe3RhumNdowrdGGaY02TG9Dd2Baow1TnG5QokdpWqONJ7dGG6Y12nhya7RhWqMN0xptmNZow/Q2dAemNdowxekGJXqUpjXaeHJrtGFao40nt0YbpjXaMK3RhmmNNkxvQ3dgWqMNU5xuUKJHaVqjjSe3RhumNdp4cmu0YVqjDdMabZjWaMP0NnQHpjXaMMXpBiV6lKY12nhya7RhWqONJ7dGG6Y12jCt0YZpjTZMb0N3YFqjDVOcblCiR2lao40nt0YbpjXaeHJrtGFaow3TGm2Y1mjD9DZ0B6Y12jDF6QYlepSmNdp4cmu0YVqjjSe3RhumNdowrdGGaY02TG9Dd2Baow1TnG5QokdpWqONJ7dGG6Y12nhya7RhWqMN0xptmNZow/Q2dAemNdowxekGJXqUpjXaeHJrtGFao40nt0YbpjXaMK3RhmmNNkxvQ3dgWqMNU5xuUKJHaVqjjSe3RhumNdp4cmu0YVqjDdMabZjWaMP0NnQHpjXaMMXpBiV6lKY12nhya7RhWqONJ7dGG6Y12jCt0YZpjTZMb0N3YFqjDVOcblCiR2lao40nt0YbpjXaeHJrtGFaow3TGm2Y1mjD9DZ0B6Y12jDF6QYlepSmNdp4cmu0YVqjjSe3RhumNdowrdGGaY02TG9Dd2Baow1TnG5QokdpWqONJ7dGG6Y12nhya7RhWqMN0xptmNZow/Q2dAemNdowxekGJXqUpjXaeHJrtGFao40nt0YbpjXaMK3RhmmNNkxvQ3dgWqMNU5xuUKJHaVqjjSe3RhumNdp4cmu0YVqjDdMabZjWaMP0NnQHpjXaMMXpBiV6lKY12nhya7RhWqONJ7dGG6Y12jCt0YZpjTZMb0N3YFqjDVOcblCiR2nKLfSNTGu0cam3oTswrdGGaY02TG9Dd2BK/qIXI9EfoSm30DcyrdHGpd6G7sC0RhumNdowvQ3dgSn5i16MRH+EptxC38i0RhuXehu6A9MabZjWaMP0NnQHpuQvejES/RGacgt9I9MabVzqbegOTGu0YVqjDdPb0B2Ykr/oxUj0R2jKLfSNTGu0cam3oTswrdGGaY02TG9Dd2BK/qIXI9EfoSm30DcyrdHGpd6G7sC0RhumNdowvQ3dgSn5i16MRH+EptxC38i0RhuXehu6A9MabZjWaMP0NnQHpuQvejES/RGacgt9I9MabVzqbegOTGu0YVqjDdPb0B2Ykr/oxUj0R2jKLfSNTGu0cam3oTswrdGGaY02TG9Dd2BK/qIXI9EfoSm30DcyrdHGpd6G7sC0RhumNdowvQ3dgSn5i16MRH+EptxC38i0RhuXehu6A9MabZjWaMP0NnQHpuQvejES/RGacgt9I9MabVzqbegOTGu0YVqjDdPb0B2Ykr/oxUj0R2jKLfSNTGu0cam3oTswrdGGaY02TG9Dd2BK/qIXI9EfoSm30DcyrdHGpd6G7sC0RhumNdowvQ3dgSn5i16MRH+EptxC38i0RhuXehu6A9MabZjWaMP0NnQHpuQvejES/RGacgt9I9MabVzqbegOTGu0YVqjDdPb0B2Ykr/oxUj0R2jKLfSNTGu0cam3oTswrdGGaY02TG9Dd2BK/qIXI9EfoSm30DcyrdHGpd6G7sC0RhumNdowvQ3dgSn5i16MRH+EptxC38i0RhuXehu6A9MabZjWaMP0NnQHpuQvejES/RGacgt9I9MabVzqbegOTGu0YVqjDdPb0B2Ykr/oxUj0R1j1qbehO7jUGm1cao02TGu08eTWaMO0RhumON2gRI+y6lNvQ3dwqTXauNQabZjWaOPJrdGGaY02THG6QYkeZdWn3obu4FJrtHGpNdowrdHGk1ujDdMabZjidIMSPcqqT70N3cGl1mjjUmu0YVqjjSe3RhumNdowxekGJXqUVZ96G7qDS63RxqXWaMO0RhtPbo02TGu0YYrTDUr0KKs+9TZ0B5dao41LrdGGaY02ntwabZjWaMMUpxuU6FFWfept6A4utUYbl1qjDdMabTy5NdowrdGGKU43KNGjrPrU29AdXGqNNi61RhumNdp4cmu0YVqjDVOcblCiR1n1qbehO7jUGm1cao02TGu08eTWaMO0RhumON2gRI+y6lNvQ3dwqTXauNQabZjWaOPJrdGGaY02THG6QYkeZdWn3obu4FJrtHGpNdowrdHGk1ujDdMabZjidIMSPcqqT70N3cGl1mjjUmu0YVqjjSe3RhumNdowxekGJXqUVZ96G7qDS63RxqXWaMO0RhtPbo02TGu0YYrTDUr0KKs+9TZ0B5dao41LrdGGaY02ntwabZjWaMMUpxuU6FFWfept6A4utUYbl1qjDdMabTy5NdowrdGGKU43KNGjrPrU29AdXGqNNi61RhumNdp4cmu0YVqjDVOcblCiR1n1qbehO7jUGm1cao02TGu08eTWaMO0RhumON2gRI+y6lNvQ3dwqTXauNQabZjWaOPJrdGGaY02THG6QYkeZdWn3obu4FJrtHGpNdowrdHGk1ujDdMabZjidIMSPcqqT70N3cGl1mjjUmu0YVqjjSe3RhumNdowxekGkyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJEo/KJMkSaL0gzJJkiRKPyiTJEmi9IMySZIkSj8okyRJovSDMkmSJML//d//A8ywadjUlQm4AAAAAElFTkSuQmCC\",\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c5b79fbe-58da-4f5a-8312-bd57c674ce58"},{"name":"Get Current Term Card Transactions","id":"33b99505-0cb9-44f1-84a5-8839a365085b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCurrentTermCardTransactions","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Current Term Card Transaction API retrieves a list of the current transactions for the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Integer</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>Tokenized card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction was completed.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>Transaction response code.</td>\n</tr>\n<tr>\n<td>Merchant</td>\n<td><em>String</em></td>\n<td>Merchant name.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionCurrencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of the transaction.</td>\n</tr>\n<tr>\n<td>BillingAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount billed to the account.</td>\n</tr>\n<tr>\n<td>CardholderCurrencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of funds on the card.</td>\n</tr>\n<tr>\n<td>SettlementAmount</td>\n<td><em>Decimal</em></td>\n<td>The settlement amount.</td>\n</tr>\n<tr>\n<td>SettlementCurrencyCode</td>\n<td><em>String</em></td>\n<td>The settlement currency code.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>The date of settlement.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetCurrentTermCardTransactions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"567c05a0-7e5a-4dc4-86ee-9ef3437b22a5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000019\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetCurrentTermCardTransactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 18:11:07 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CardId\": 10051,\n            \"CardTokenNumber\": \"421973auwamf8632\",\n            \"TransactionDate\": \"2019-11-04T22:42:06.967\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"SYSTEM\",\n            \"TransactionAmount\": 230,\n            \"TransactionCurrencyCode\": \"CAD\",\n            \"BillingAmount\": 230,\n            \"CardholderCurrencyCode\": \"CAD\",\n            \"SettlementAmount\": 0,\n            \"SettlementCurrencyCode\": null,\n            \"SettlementDate\": \"2019-11-04T00:00:00\"\n        },\n        {\n            \"CardId\": 10051,\n            \"CardTokenNumber\": \"421973auwamf8632\",\n            \"TransactionDate\": \"2019-11-04T22:42:24.487\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"SYSTEM\",\n            \"TransactionAmount\": 72,\n            \"TransactionCurrencyCode\": \"CAD\",\n            \"BillingAmount\": 72,\n            \"CardholderCurrencyCode\": \"CAD\",\n            \"SettlementAmount\": 0,\n            \"SettlementCurrencyCode\": null,\n            \"SettlementDate\": \"2019-11-04T00:00:00\"\n        },\n        {\n            \"CardId\": 10051,\n            \"CardTokenNumber\": \"421973auwamf8632\",\n            \"TransactionDate\": \"2019-11-04T22:42:41.45\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"SYSTEM\",\n            \"TransactionAmount\": 84,\n            \"TransactionCurrencyCode\": \"CAD\",\n            \"BillingAmount\": 84,\n            \"CardholderCurrencyCode\": \"CAD\",\n            \"SettlementAmount\": 0,\n            \"SettlementCurrencyCode\": null,\n            \"SettlementDate\": \"2019-11-04T00:00:00\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"33b99505-0cb9-44f1-84a5-8839a365085b"},{"name":"Card List Paged","id":"29e7518c-f5f1-451b-bb60-7be7334cb26e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10020079089\",\r\n    //\"CardId\": 23747,\r\n    //\"BeginDate\": \"2022-04-01\",\r\n    //\"EndDate\": \"2022-04-30\",\r\n    //\"Criteria\" : 1,\r\n    //\"CardLast4digit\": \"1651\",\r\n    //\"ClientReferenceField\": \"126879555\",\r\n    //\"Ref1\": \"466555445hjdjhdajsdajkjhkd\",\r\n    //\"Ref2\": \"jdkjd7687923edsdfk87\",\r\n    //\"Ref3\": \"ed9ed8edsef99fs\",\r\n    //\"Ref4\": \"d89sd89d8sd86ggggr55y533te4hhh\",\r\n    //\"Ref5\": \"asi9sd98sd89ds8s8fv8sd88sd\",\r\n    //\"CreatedDateRangeBegin\": \"2022-04-05\",\r\n    //\"CreatedDateRangeEnd\": \"2022-04-07\",\r\n    //\"ExpiryDateRangeBegin\": \"2026-04-05\",\r\n    //\"ExpiryDateRangeEnd\": \"2026-04-07\",\r\n    //\"Currency\": \"CAD\",\r\n    //\"CardStatus\": 1,\r\n    //\"CardBalanceMinumum\" : 99825.99,\r\n    //\"CardBalanceMaximum\": 99826.001,\r\n    //\"LastPaymentStatus\" : 93501,\r\n    //\"PageSize\" : 2,\r\n    //\"PageNumber\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardListPaged","description":"<h3 id=\"description\">Description</h3>\n<p>The Card List Paged API returns card transactions and information as a list based on the entered criteria.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates the unique card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card ListV2</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Transaction Begin Date Range.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Transaction End Date Range.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the type of transaction group to be provided:  <br /><code>0/1</code> - All Transactions,  <br /><code>2</code> - Declined Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardLast4Digit</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates the Last 4-Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Detail</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceField</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>128-digit field that holds values related to the card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreatedDateRangeBegin</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates Card Creation Begin Date Range.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreatedDateRangeEnd</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates Card Creation End Date Range.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ExpiryDateRangeBegin</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates Card Expiry Begin Date Range.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ExpiryDateRangeEnd</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />yyyy-mm</td>\n<td>Indicates Card Expiry End Date Range.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Card currency:  <br /><code>CAD</code> - Canadian Dollar  <br /><code>USD</code> - United States Dollar</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardStatus</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates unique ID for card status.  <br />This can be retrieved using the <strong>Wallet -&gt; Card Status List</strong> API.  <br />  <br /><code>0</code> - All Card  <br /><code>1</code> - Active  <br /><code>2</code> - Temporarily Closed  <br /><code>3</code> - Waiting for Activation  <br /><code>4</code> - Lost  <br /><code>5</code> - Stolen  <br /><code>6</code> - Other  <br /><code>7</code> - Fraud  <br /><code>8</code> - Customer Request  <br /><code>9</code> - Closed</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardBalanceMinumum</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Card balance minimum value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardBalanceMaximum</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Card balance maximum value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastPaymentStatus</td>\n<td><em>Enum</em></td>\n<td>5</td>\n<td>Indicates the last payment status made on the card.  <br />  <br /><code>93500</code> - Unsettled  <br /><code>93501</code> - Settled  <br /><code>93502</code> - Expired  <br /><code>93503</code> - Reversal  <br />  <br />Returns transactions matching the <strong>Criteria</strong> field when no value is entered.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Numeric</em></td>\n<td>1000</td>\n<td>Optional page size for returning a page of results.  <br />  <br />Range 0-1000, default is 10.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>Optional page number for returning a page of results.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>Full card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction occurred.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionCurrencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The unique ID of the type of transaction.</td>\n</tr>\n<tr>\n<td>SettlementAmount</td>\n<td><em>Decimal</em></td>\n<td>The settled amount.</td>\n</tr>\n<tr>\n<td>SettlementCurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency code of the settled amount.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction was settled.</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>The status of the settled transaction.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The description/reason for the transaction.</td>\n</tr>\n<tr>\n<td>ChannelName</td>\n<td><em>String</em></td>\n<td>Channel through which the transaction occurred. Account, Card, Etransfer, etc.</td>\n</tr>\n<tr>\n<td>CardOwnerName</td>\n<td><em>String</em></td>\n<td>The cardholders name.</td>\n</tr>\n<tr>\n<td>CardTransactionSource</td>\n<td><em>String</em></td>\n<td>The source of the transaction. Whether Domestic or International.</td>\n</tr>\n<tr>\n<td>TerminalType</td>\n<td><em>String</em></td>\n<td>Type of terminal where the transaction occurred.</td>\n</tr>\n<tr>\n<td>Merchant</td>\n<td><em>String</em></td>\n<td>The merchant name in which the transaction occurred.</td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td><em>String</em></td>\n<td>The merchant location.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>The response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>The description of the response code.</td>\n</tr>\n<tr>\n<td>Mcc</td>\n<td><em>String</em></td>\n<td>The MCC category/code.</td>\n</tr>\n<tr>\n<td>IsReversed</td>\n<td><em>Boolean</em></td>\n<td>Whether or not the transaction needed reversing.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>ReversalType</td>\n<td><em>String</em></td>\n<td>The type of reversal made.</td>\n</tr>\n<tr>\n<td>ReversedDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date in which the reversal occurred.</td>\n</tr>\n<tr>\n<td>CardStatus</td>\n<td><em>String</em></td>\n<td>The status of the card. Active or Inactive.</td>\n</tr>\n<tr>\n<td>LastPaymentStatus</td>\n<td><em>Numeric</em></td>\n<td>The last payment made to the card.</td>\n</tr>\n<tr>\n<td>CardLast4digit</td>\n<td><em>String</em></td>\n<td>Last 4 digits of the card number.</td>\n</tr>\n<tr>\n<td>CardCurrency</td>\n<td><em>String</em></td>\n<td>The currency of funds on the card.</td>\n</tr>\n<tr>\n<td>CardBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance remaining on the card.</td>\n</tr>\n<tr>\n<td>ClientReferenceField</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref1</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref2</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref3</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref4</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>Ref5</td>\n<td><em>String</em></td>\n<td>128-digit field that holds values related to the card.</td>\n</tr>\n<tr>\n<td>CardStartDate</td>\n<td><em>DateTime</em></td>\n<td>The start date in which the card is available for use by the cardholder.</td>\n</tr>\n<tr>\n<td>CardEndDate</td>\n<td><em>DateTime</em></td>\n<td>The end date in which the card is no longer available for use by the cardholder.</td>\n</tr>\n<tr>\n<td>CardExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The cards expiry date.</td>\n</tr>\n<tr>\n<td>CardLimit</td>\n<td><em>Decimal</em></td>\n<td>The limit of the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE2</td>\n<td>Card Definition Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE3</td>\n<td>Begin Date Is Required.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE4</td>\n<td>End Date Is Required.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE5</td>\n<td>Begin Date Cannot Be Greater Than The End Date.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE6</td>\n<td>Maximum of 31 Days Between The Begin Date And The End Date.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE7</td>\n<td>Page Size Cannot Exceed 1000 Records.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE8</td>\n<td>Created Begin Date Cannot Be Greater Than The Created End Date.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE9</td>\n<td>Begin Date Cannot Be Greater Than The Expiry Date.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE10</td>\n<td>Card Balance Minumum Value Cannot Be Greater Than The Card Balance Maximum Value.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE11</td>\n<td>Invalid Criteria.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryE12</td>\n<td>Invalid Last Payment Status.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryE13</td>\n<td>Page Number Cannot Be Greater Than {{PageNumber}}.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE14</td>\n<td>Page Number Cannot Be Less Than 0.</td>\n</tr>\n<tr>\n<td>CardListPagedOpE15</td>\n<td>Page Size Cannot Be Less Than 0.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardListPaged"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"631a8154-5866-4946-9c9c-97b1d20a208d","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"12340000059\",\r\n    \"CardId\": 23747,\r\n    \"BeginDate\": \"2022-04-01\",\r\n    \"EndDate\": \"2022-04-30\",\r\n    \"Criteria\" : 1,\r\n    \"CardLast4digit\": \"1651\",\r\n    \"ClientReferenceField\": \"126879555\",\r\n    \"Ref1\": \"466555445hjdjhdajsdajkjhkd\",\r\n    \"Ref2\": \"jdkjd7687923edsdfk87\",\r\n    \"Ref3\": \"ed9ed8edsef99fs\",\r\n    \"Ref4\": \"d89sd89d8sd86ggggr55y533te4hhh\",\r\n    \"Ref5\": \"asi9sd98sd89ds8s8fv8sd88sd\",\r\n    \"CreatedDateRangeBegin\": \"2022-04-05\",\r\n    \"CreatedDateRangeEnd\": \"2022-04-07\",\r\n    \"ExpiryDateRangeBegin\": \"2026-04-05\",\r\n    \"ExpiryDateRangeEnd\": \"2026-04-07\",\r\n    \"Currency\": \"CAD\",\r\n    \"CardStatus\": 1,\r\n    \"CardBalanceMinumum\" : 99825.99,\r\n    \"CardBalanceMaximum\": 99826.001,\r\n    \"LastPaymentStatus\" : 93501,\r\n    \"PageSize\" : 2,\r\n    \"PageNumber\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardListPaged"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Apr 2022 21:03:54 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CardId\": 162910,\n            \"MaskedCardNumber\": \"450634******1651\",\n            \"TransactionDate\": \"2022-04-06T11:28:51.213\",\n            \"TransactionAmount\": 14,\n            \"TransactionCurrencyCode\": \"CAD\",\n            \"TransactionType\": \"Credit\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"SettlementAmount\": 14,\n            \"SettlementCurrencyCode\": \"CAD\",\n            \"SettlementDate\": \"2022-04-06T11:28:51.29\",\n            \"SettlementStatus\": \"Settled\",\n            \"Description\": \"SPEND.COM                +18007303194 CA\",\n            \"ChannelName\": \"Moto Sale\",\n            \"CardOwnerName\": \"Primary CAD Card\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"Pos\",\n            \"ErrorCode\": null,\n            \"ErrorDescription\": null,\n            \"Merchant\": \"SPEND.COM\",\n            \"MerchantCity\": \"+1800730319\",\n            \"FeeAmount\": 0,\n            \"ResponseCode\": \"00\",\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"5734\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null,\n            \"CardStatus\": \"Active\",\n            \"LastPaymentStatus\": 93501,\n            \"CardLast4digit\": \"1651\",\n            \"CardCurrency\": \"CAD\",\n            \"CardBalance\": 99826,\n            \"ClientReferenceField\": \"126879555\",\n            \"Ref1\": \"466555445hjdjhdajsdajkjhkd\",\n            \"Ref2\": \"jdkjd7687923edsdfk87\",\n            \"Ref3\": \"ed9ed8edsef99fs\",\n            \"Ref4\": \"d89sd89d8sd86ggggr55y533te4hhh\",\n            \"Ref5\": \"asi9sd98sd89ds8s8fv8sd88sd\",\n            \"CardStartDate\": \"2022-04-06T00:00:00\",\n            \"CardEndDate\": \"2022-04-06T00:00:00\",\n            \"CardExpiryDate\": \"2026-04-06T10:30:54.44\",\n            \"CardLimit\": 500\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"29e7518c-f5f1-451b-bb60-7be7334cb26e"},{"name":"Customer Activities Account Transaction","id":"f47b76a0-9ba6-4e92-bbb7-2ee33c81d808","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"FromDate\": \"2024-09-01\",\r\n    \"ToDate\": \"2024-11-01\",\r\n    \"AccountIds\": [\r\n        123456\r\n    ]\r\n    }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/SearchCustomerActivitiesAccountTransaction","description":"<p>The <em>SearchCustomerActivitiesAccountTransaction</em> endpoint can be used to obtain details about all transaction movements occurrent within a given customer's wallet account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Starting date of the query range.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Ending date of the query range.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountIds</td>\n<td><em>Array of Integers</em></td>\n<td></td>\n<td>List of account IDs to query. Each ID should be a unique integer.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>Unique identifier for the transaction.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Integer</em></td>\n<td>Client identifier.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>Date and time of the transaction.</td>\n</tr>\n<tr>\n<td>TimeZoneOffsetMinutes</td>\n<td><em>Integer</em></td>\n<td>Offset in minutes from UTC.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Transaction amount.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>Unique reference number for the transaction.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>Details about the transaction.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>Type of transaction. Sent, Received, etc.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Integer</em></td>\n<td>Identifier for transaction type.</td>\n</tr>\n<tr>\n<td>CurrencySymbol</td>\n<td><em>String</em></td>\n<td>Symbol of the transaction currency.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>String</em></td>\n<td>Code of the currency. CAD, USD, etc.</td>\n</tr>\n<tr>\n<td>CurrencyDesc</td>\n<td><em>String</em></td>\n<td>Description of the currency.</td>\n</tr>\n<tr>\n<td>AmountDisplay</td>\n<td><em>String</em></td>\n<td>Formatted display of amount with currency.</td>\n</tr>\n<tr>\n<td>TransactionAccountId</td>\n<td><em>Integer</em></td>\n<td>Identifier for the transaction account.</td>\n</tr>\n<tr>\n<td>ChannelType</td>\n<td><em>String</em></td>\n<td>Channel through which the transaction occurred. Account, Card, Etransfer, etc.</td>\n</tr>\n<tr>\n<td>UniqueClientName</td>\n<td><em>String</em></td>\n<td>Name of the unique client.</td>\n</tr>\n<tr>\n<td>SourceCurrencyCode</td>\n<td><em>String</em></td>\n<td>Currency code of the source account.</td>\n</tr>\n<tr>\n<td>SourceAccountNumber</td>\n<td><em>String</em></td>\n<td>Source account number.</td>\n</tr>\n<tr>\n<td>SourceAccountName</td>\n<td><em>String</em></td>\n<td>Name of the source account.</td>\n</tr>\n<tr>\n<td>DestinationAccountNumber</td>\n<td><em>String</em></td>\n<td>Destination account number.</td>\n</tr>\n<tr>\n<td>DestinationAccountName</td>\n<td><em>String</em></td>\n<td>Name of the destination account.</td>\n</tr>\n<tr>\n<td>DestinationCustomerName</td>\n<td><em>String</em></td>\n<td>Name of the destination customer.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Integer</em></td>\n<td>Primary account number.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>Name of the primary account.</td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Integer</em></td>\n<td>Identifier for the account.</td>\n</tr>\n<tr>\n<td>IBAN</td>\n<td><em>String</em></td>\n<td>International Bank Account Number.</td>\n</tr>\n<tr>\n<td>RemainingBalance</td>\n<td><em>Decimal</em></td>\n<td>Balance remaining after transaction.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>Name of the sender.</td>\n</tr>\n<tr>\n<td>SenderBank</td>\n<td><em>String</em></td>\n<td>Bank of the sender.</td>\n</tr>\n<tr>\n<td>SenderShortName</td>\n<td><em>String</em></td>\n<td>Short name for the sender.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>Reference number for Interac transactions.</td>\n</tr>\n<tr>\n<td>SummaryDescription</td>\n<td><em>String</em></td>\n<td>Summary of the transaction.</td>\n</tr>\n<tr>\n<td>F43Name</td>\n<td><em>String</em></td>\n<td>Additional identifier for transaction purpose.</td>\n</tr>\n<tr>\n<td>WalletBalance</td>\n<td><em>Decimal</em></td>\n<td>Balance in the digital wallet (if applicable).</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>Status of the transaction settlement.</td>\n</tr>\n<tr>\n<td>NoOfTransaction</td>\n<td><em>Integer</em></td>\n<td>Count of transactions in batch.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>Date of settlement for the transaction.</td>\n</tr>\n<tr>\n<td>FeeTypeDesc</td>\n<td><em>String</em></td>\n<td>Description of fee type.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount of fee applied.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","SearchCustomerActivitiesAccountTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f47b76a0-9ba6-4e92-bbb7-2ee33c81d808"}],"id":"0983c317-c04d-4552-b8dd-f0871d7e3aa7","_postman_id":"0983c317-c04d-4552-b8dd-f0871d7e3aa7","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"PIN","item":[{"name":"Issue Temporary Control Number","id":"607798c0-ce45-4ad2-8629-a1f5417049d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"WithSMS\": false,\n    \"WithEmail\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/IssueTemporaryControlNumber","description":"<h3 id=\"description\">Description</h3>\n<p>The issued temporary control number can be sent either via SMS to the mobile number registered on the Cardholder’s account/wallet or via email address registered on the Cardholder’s account/wallet depending on the Cardholder's request. The Isse Temporary Control Number (TCN) API will be retrieved in the response item and this TCN must be used in SETPIN operation method in 10 minutes. Otherwise, it will be expired and then the user must get the new TCN.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This value can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>WithSMS</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Using a <code>True</code> or <code>False</code> value, indicates whether or not the Temporary Control Number (TCN) is sent via SMS.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>WithEmail</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Using a <code>True</code> or <code>False</code> value, indicates whether or not the Temporary Control Number (TCN) is sent via Email.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TCN</td>\n<td><em>Numeric</em></td>\n<td>The temporary control number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>IssueTemporaryControlNumberOpE1</td>\n<td>Either SMS Or Email Must Be Selected.</td>\n</tr>\n<tr>\n<td>IssueTemporaryControlNumberOpE2</td>\n<td>Phone Number Is Not Defined.</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","IssueTemporaryControlNumber"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"52791684-a77e-47a0-b6aa-9fc5f38c6ea8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000002\",\n    \"WithSMS\": false,\n    \"WithEmail\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/IssueTemporaryControlNumber"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TCN\": \"846035\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"607798c0-ce45-4ad2-8629-a1f5417049d1"},{"name":"Generate RSA Key","id":"02d5aee5-5b3f-4686-886a-1c2ce44d7351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GenerateRsaKey","description":"<h3 id=\"description\">Description</h3>\n<p>The Generate RSA Key API generates the RSA Key and returns an Id which is to be used in <em>SETPIN</em> APIs.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>N/A</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GenerateRsaKey"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"43e46622-59f8-41b6-b18f-131f4f72bb61","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GenerateRsaKey"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull.\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"RsaKeyId\": 10016,\n        \"PublicKeyInPemFormat\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIIBIjANBgkqhkiG9w0BAQEFAOACAQ8AMIIBCgKCAQEAw0seBlIo8k9GOoz3jjFv\\r\\nGcbeiWH/6xHrqDEUPRxgvG2fxqnu407hYRy1eBdcqnhCmYUL/6YyMeieAchUdPsV\\r\\n6ohlMkbkQUodj+rmK5F3jUCfsND2rHPjJD1o+Atwy+9G+izONWNGmKi1qxCTx2Rw\\r\\nZBHq4v2n/U50bogb+nOilyJAJZPJjfBfrlLoe8Jy8PpnxB8k2NEK/Ai2SDEzr1Gd\\r\\n3uaI986G/CVcPFfkxEmCxxQJmwWza0NhOfhiMHilJMGOg5EO5OcCY4yoK8q7tF+7\\r\\nwRD5n9YTinUVN5v/cs4/YbVY9UZk3rpflzYGvMk1jR+t1ZkXgprQjnZ4jKdc8VEK\\r\\n0QIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\n        \"ModulusBase64\": \"w0seBlIo8k9GOoz3jjFvGcbeiWH/6xHrqDEUPRxgvG2fxqnu407hYRy1eBdcqnhCmUYL/6YyMeieAchUdPsV6ohlMkbkQUodj+rmK5F3jUCfsND2rHPjJD1o+Atwy+9G+izONWNGmKi1qxCTx2RwZBHq4v2n/U50bogb+nOilyJJAZPJjfBfrlLoe8Jy8PpnxB8k2NEK/Ai2SDEzr1Gd3uaI986G/CVcPFfkxEmCxxQJmwWza0NhOfhiHMilJMGOg5EO5OcCY4yoK8q7tF+7wRD5n9YTinUVN5v/cs4/YbVY9UZk3rpflzYGvMk1jR+t1ZkXgprQjnZ4jKdc8VEK0Q==\",\n        \"ExponentBase64\": \"AAQB\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"02d5aee5-5b3f-4686-886a-1c2ce44d7351"},{"name":"SetPIN","id":"53e3258b-f5cf-4819-9216-5d5c7185f6e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10380000006\",\n    \"LastFourDigits\": \"6789\",\n    \"TCN\": \"113200\",\n    \"YOB\": \"1991\",\n    \"EncryptedNewFourDigitPIN\": \"string\",\n    \"RsaKeyId\": 10015\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/SetPIN","description":"<h3 id=\"description\">Description</h3>\n<p>The SetPIN API sets the PIN for the specified Card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the Customer Number.  <br />This can be retrieved using the <strong>Wallet -&gt; Wallet Program Customer -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LastFourDigits</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Last Four Digits of the Card.  <br />This can be retrieved using the <strong>Wallet -&gt; Card -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TCN</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates the Temporary Control Number (TCN).  <br />This can be retrieved using the <strong>Wallet -&gt; Pin -&gt; Issue Temporary Control Number</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>YOB</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates the Year of Birth of the Customer.  <br />This can be retrieved using the <strong>Customer -&gt; Get By Customer Number</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EncryptedNewFourDigitPIN</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates the Encrypted <strong>New</strong> Four Digit PIN which is encrypted with ModulusBase64.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaKeyId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates RSA Key ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>SetPINOpE1</td>\n<td>Temporary Control Number Is Not Valid For This Client.</td>\n</tr>\n<tr>\n<td>SetPINOpE2</td>\n<td>Year of Birth Is not Valid For This Client.</td>\n</tr>\n<tr>\n<td>SetPINOpE3</td>\n<td>Card Not Found.</td>\n</tr>\n<tr>\n<td>SetPINOpE4</td>\n<td>Card DeTokenization Error.</td>\n</tr>\n<tr>\n<td>SetPINOpE5</td>\n<td>PIN Encryption Error.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","SetPIN"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"53e3258b-f5cf-4819-9216-5d5c7185f6e7"}],"id":"9f0c2923-920b-44f4-99bf-50c44d739d23","_postman_id":"9f0c2923-920b-44f4-99bf-50c44d739d23","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"Wallet Program Customer","item":[{"name":"Get Wallet Customer","id":"23cdc539-2708-42bc-aa3e-c29eb450f2d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetWalletCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Wallet Customer API retrieves the wallet for the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The unique customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customers full name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetWalletCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d132664b-12db-4944-b67d-555b021f149f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetWalletCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 20035,\n            \"CustomerNumber\": \"0220000001\",\n            \"CustomerName\": \"David Hayes\"\n        },\n        {\n            \"CustomerId\": 20036,\n            \"CustomerNumber\": \"0220000002\",\n            \"CustomerName\": \"Demi Lovato\"\n        },\n        {\n            \"CustomerId\": 20038,\n            \"CustomerNumber\": \"0220000003\",\n            \"CustomerName\": \"Drew Morrison\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"23cdc539-2708-42bc-aa3e-c29eb450f2d5"},{"name":"Search Wallet Customer","id":"46841839-3b27-4ba9-8a0f-bdb15c5ef9a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\":\"10540000005\",\r\n    \"CustomerName\":\"Ahmet Aktas\",\r\n    \"CustomerTypeCode\":\"P\",\r\n    \"CustomerStatusCode\":\"N\",\r\n    \"BeginDate\": \"2020-03-26\",\r\n    \"EndDate\": \"2020-03-28\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/SearchWalletCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Wallet Customer API allows you to search for each wallet the Customer has.<br /><b>NOTE:</b> The difference between the Begin Date and End Date cannot be greater than 33 days.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates the full name of the customer.  <br />This can be obtained using the <strong>Customer -&gt; Get All Customer</strong> <strong>List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.  <br />This can be obtained using the <strong>Customer -&gt; Get All Customer</strong> <strong>List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Customer type code:  <br /><code>P</code> - Individual Customer,  <br /><code>C</code> - Corporate Customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerStatusCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Customer status codes:  <br /><code>N</code> - Active Customer,  <br /><code>C</code> - Deactivated Customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The begin date which is the Customer inserted to the system.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date which is the Customer inserted to the system.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The customer unique identifier.</td>\n</tr>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>The customers applicant ID.</td>\n</tr>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>The customers application ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customer full name.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the customer. Whether P(Individual) or C(Corporate).</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The unique Client ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The customer birth date.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The phone number of the customer.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The street address of the customer.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The street address of the customer.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the customer resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the customer resides.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the customer resides.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip/postal code in which the customer resides.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>The customer status. Either Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SearchWalletCustomerE1</td>\n<td>End Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>SearchWalletCustomerE2</td>\n<td>Begin Date Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","SearchWalletCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5c58eceb-b486-4d77-92a2-728c86040b73","name":"Search Wallet Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\":\"10540000005\",\r\n    \"CustomerName\":\"Ahmet Aktas\",\r\n    \"CustomerTypeCode\":\"P\",\r\n    \"CustomerStatusCode\":\"N\",\r\n    \"BeginDate\": \"2020-03-26\",\r\n    \"EndDate\": \"2020-03-28\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/SearchWalletCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:19:37 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"382","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 20499,\n            \"ApplicantId\": 0,\n            \"ApplicationId\": 0,\n            \"CustomerNumber\": \"10540000005\",\n            \"CustomerName\": \"Ahmet Aktas\",\n            \"CustomerTypeCode\": \"P\",\n            \"UniqueClientId\": 500033,\n            \"Email\": \"huydonikko@enayu.com\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"PhoneNumber\": \"13455343434\",\n            \"AddressLine1\": \"C-4611 45 Ave\",\n            \"AddressLine2\": \"\",\n            \"City\": \"Innisfail\",\n            \"Province\": \"Alberta\",\n            \"Country\": \"Canada\",\n            \"ZipCode\": \"T4G 1P5\",\n            \"CustomerStatus\": \"Active\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"46841839-3b27-4ba9-8a0f-bdb15c5ef9a0"}],"id":"a1a73eaf-81e1-4363-beaa-49e0ae328ef8","_postman_id":"a1a73eaf-81e1-4363-beaa-49e0ae328ef8","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"Inventory","item":[{"name":"Get Store Users","id":"e9d14e1a-ddc9-4fe0-a70c-251b38d73f13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/GetStoreUsers","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Store Users API is designed to retrieve a list of stores that are associated with the user or the requesting context.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StoreId</td>\n<td><em>Numeric</em></td>\n<td>The stores unique identifier.</td>\n</tr>\n<tr>\n<td>StoreName</td>\n<td><em>String</em></td>\n<td>The store name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","GetStoreUsers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e15e2025-d14a-44a5-a2a6-5e6120c5f1bc","name":"Get Store Users","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/GetStoreUsers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:23:53 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"148","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"StoreId\": 19,\n            \"StoreName\": \"New Store\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e9d14e1a-ddc9-4fe0-a70c-251b38d73f13"},{"name":"Change Status Ordered","id":"e81174d6-0333-40ab-8171-a38b29ad0227","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"OrderId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/ChangeStatusOrdered","description":"<h3 id=\"description\">Description</h3>\n<p>The Change Status Ordered API is designed to update the processing status of a specific order within the system.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique order ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvOrdrInsE9</td>\n<td>Inventory Order Card Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","ChangeStatusOrdered"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c6362a76-c502-4acc-8b61-e05f6846ca8a","name":"Change Status Ordered","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"OrderId\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/ChangeStatusOrdered"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Dec 2021 08:52:28 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e81174d6-0333-40ab-8171-a38b29ad0227"},{"name":"CheckOut","id":"7a9edc7a-3caa-4525-be5d-fba358f891d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"InventoryId\": 0,\r\n  \"CheckReasonType\": 1,\r\n  \"ClientCustomerId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/CheckOut","description":"<h3 id=\"description\">Description</h3>\n<p>The Check Out API is designed to formally remove or withdraw a specific inventory item from its current storage location or status within the inventory tracking system.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventoryId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique inventory ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CheckReasonType</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The check reason type code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The clients customer ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventoryOrderCheckOutE1</td>\n<td>Inventory Order Check Out Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","CheckOut"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3b814bfd-7d4d-456c-9907-5b5429c985cc","name":"CheckOut","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"InventoryId\": 181,\r\n  \"CheckReasonType\": 1,\r\n  \"ClientCustomerId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/CheckOut"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Dec 2021 09:30:44 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"7a9edc7a-3caa-4525-be5d-fba358f891d8"},{"name":"Create Order","id":"9233acad-2014-4c2c-a9ad-2c5660054678","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 0,\r\n  \"ProductId\": 0,\r\n  \"Quantity\": 0,\r\n  \"StoreId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/CreateOrder","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint allows for the creation of additional card inventory orders</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeDefinitionId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>The ID of the safe the ordere is being made for.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>ID product being ordered. This can be retrieved using the <strong>Wallet -&gt; Card Product List</strong> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>Quantity</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>The number of cards to order.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>StoreId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>ID of the store that is making the order.</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><em>Description</em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td><em>Integer</em></td>\n<td>ID of the order created.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateOrderE</td>\n<td>There Is No Store Matching The ID Provided.</td>\n</tr>\n<tr>\n<td>CreateOrderE1</td>\n<td>There Is No Product Matching The ID Provided.</td>\n</tr>\n<tr>\n<td>CreateOrderE2</td>\n<td>The Product Specified Has Been Deleted.</td>\n</tr>\n<tr>\n<td>CreateOrderE3</td>\n<td>There Is No Safe Matching The ID Provided.</td>\n</tr>\n<tr>\n<td>CreateOrderE4</td>\n<td>The Safe Specified Has Been Deleted.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","CreateOrder"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bb4a9c02-cd80-469e-934e-364bac0f2f53","name":"Create Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 2,\r\n  \"ProductId\": 19,\r\n  \"Quantity\": 1,\r\n  \"StoreId\": 19\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/CreateOrder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:44:14 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 32,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9233acad-2014-4c2c-a9ad-2c5660054678"},{"name":"Create Safe","id":"143ac2d4-b715-435f-b84d-e6a8acfd089d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeName\": \"string\",\r\n  \"StoreId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/CreateSafe","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Safe API is designed to establish a new, secure storage location (referred to as a \"Safe\") within the inventory system and associate it with a specific store.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The name of the safe.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StoreId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique store identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventorySafeDefinition_SafeName</td>\n<td>Safe Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InventorySafeDefinition_StoreNotFound</td>\n<td>Store Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","CreateSafe"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b0bd07a4-a7d0-459a-a0ca-ff44980344d7","name":"Create Safe","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeName\": \"Test\",\r\n  \"StoreId\": 19\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/CreateSafe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:35:10 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"129","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 11,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"143ac2d4-b715-435f-b84d-e6a8acfd089d"},{"name":"Delete Safe","id":"7d512511-297e-43dc-ab61-242e1090aef8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/DeleteSafe","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete Safe API is designed to delete a safe based on the <em>safeDefinitionId.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeDefinitionId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>The safe definition ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventorySafeDefinition_NotFound</td>\n<td>Inventory Safe Definition Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","DeleteSafe"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0df899c2-cbe7-4411-8a4a-ba6fa0c02127","name":"Delete Safe","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 11\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/DeleteSafe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:39:46 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"7d512511-297e-43dc-ab61-242e1090aef8"},{"name":"Inventory List","id":"0546b2d6-d655-4c5b-aa1a-cb5674e89b06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"StoreId\": 0,\r\n  \"SafeDefinitionId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/InventoryList","description":"<h3 id=\"description\">Description</h3>\n<p>The Inventory List API is designed to retrieve a detailed list of inventory items, specifically filtering the results to show items contained within a designated store location (\"Safe\") at a specified store.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StoreId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The stores unique ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SafeDefinitionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The safe definition identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderDate</td>\n<td><em>DateTime</em></td>\n<td>The date ordered.</td>\n</tr>\n<tr>\n<td>ReceiveDate</td>\n<td><em>DateTime</em></td>\n<td>The date received.</td>\n</tr>\n<tr>\n<td>PlasticTypeName</td>\n<td><em>String</em></td>\n<td>The type of card.</td>\n</tr>\n<tr>\n<td>ProductName</td>\n<td><em>String</em></td>\n<td>The name of the product.</td>\n</tr>\n<tr>\n<td>StoreSafeName</td>\n<td><em>String</em></td>\n<td>The name of the store safe.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>The masked card number. Partially hidden for security matters.</td>\n</tr>\n<tr>\n<td>PackageNo</td>\n<td><em>Numeric</em></td>\n<td>The package number.</td>\n</tr>\n<tr>\n<td>OrderPackageNo</td>\n<td><em>Numeric</em></td>\n<td>The order package number.</td>\n</tr>\n<tr>\n<td>ReceiveRecordType</td>\n<td><em>String</em></td>\n<td>How the record type is received.</td>\n</tr>\n<tr>\n<td>InventoryId</td>\n<td><em>Numeric</em></td>\n<td>The unique inventory ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","InventoryList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"38a77101-b169-4007-a707-3daf107939af","name":"Inventory List","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"StoreId\": 14,\r\n  \"SafeDefinitionId\": 10\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/InventoryList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Dec 2021 09:17:45 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12098,\n            \"MaskedCardNumber\": \"430400******8246\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 181\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12099,\n            \"MaskedCardNumber\": \"430400******3644\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 182\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12100,\n            \"MaskedCardNumber\": \"430400******1679\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 183\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12101,\n            \"MaskedCardNumber\": \"430400******1456\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 184\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12102,\n            \"MaskedCardNumber\": \"430400******3941\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 185\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12103,\n            \"MaskedCardNumber\": \"430400******3114\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 186\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12104,\n            \"MaskedCardNumber\": \"430400******2710\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 187\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12105,\n            \"MaskedCardNumber\": \"430400******4772\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 188\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12106,\n            \"MaskedCardNumber\": \"430400******9378\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 189\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12107,\n            \"MaskedCardNumber\": \"430400******8164\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 190\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12108,\n            \"MaskedCardNumber\": \"430400******3474\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 191\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12109,\n            \"MaskedCardNumber\": \"430400******4180\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 192\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12110,\n            \"MaskedCardNumber\": \"430400******4569\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 193\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12111,\n            \"MaskedCardNumber\": \"430400******3142\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 194\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12112,\n            \"MaskedCardNumber\": \"430400******1856\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 195\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12113,\n            \"MaskedCardNumber\": \"430400******6769\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 196\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12114,\n            \"MaskedCardNumber\": \"430400******8490\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 197\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12115,\n            \"MaskedCardNumber\": \"430400******1547\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 198\n        },\n        {\n            \"OrderDate\": \"2021-11-10T22:26:06.77\",\n            \"ReceiveDate\": \"2021-11-10T22:26:06.77\",\n            \"PlasticTypeName\": \"DCB Visa Corporate Prepaid DI BULK\",\n            \"ProductName\": \"DCB BULK cards\",\n            \"StoreSafeName\": \"Test Safe / Calgary\",\n            \"CardId\": 12116,\n            \"MaskedCardNumber\": \"430400******1208\",\n            \"PackageNo\": 1030,\n            \"OrderPackageNo\": 1030,\n            \"ReceiveRecordType\": \"By Series\",\n            \"InventoryId\": 199\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0546b2d6-d655-4c5b-aa1a-cb5674e89b06"},{"name":"Order List","id":"ff3e808d-b2a2-42d3-9ceb-2cc114d522d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 0,\r\n  \"OrderStatus\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/OrderList","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint allows you to search for a list of all orders made.<br />filtering is available by safeDefinitionId and status.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeDefinitionId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>The Id of the safe recieving the order</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OrderStatus</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>Status of orders to filter by <code>1</code> Ordered<code>2</code> Received<code>3</code> Created<code>4</code> Transfered</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td><em>Integer</em></td>\n<td>Id of the inventory order</td>\n</tr>\n<tr>\n<td>SafeStatus</td>\n<td><em>String</em></td>\n<td>Current status of the order<code>C</code> Created<code>O</code> Ordered<code>R</code> Received<code>T</code> Transfered</td>\n</tr>\n<tr>\n<td>SafeName</td>\n<td><em>String</em></td>\n<td>Name of the safe the order is being recieved by</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","OrderList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b5f7ccf7-c854-48aa-b3ab-56b049c08a93","name":"Order List","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 3,\r\n  \"OrderStatus\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/OrderList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Dec 2021 08:42:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"OrderId\": 2,\n            \"SafeName\": \"Safe 1\",\n            \"SafeStatus\": \"Received\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ff3e808d-b2a2-42d3-9ceb-2cc114d522d2"},{"name":"Search Safe","id":"3faec50e-b2a7-49ae-998c-6b41238eda10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeName\": \"string\",\r\n  \"StoreId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/SearchSafe","description":"<h3 id=\"description\">Description</h3>\n<p>Search for a safe definition using name or storeId.<br />This endpoint will return a list of all matching definitions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Name assigned to the safe definition.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>StoreId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>ID of the store associated with the safe retrievable.</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeDefinitionId</td>\n<td><em>Integer</em></td>\n<td>The safe definition ID allocated.</td>\n</tr>\n<tr>\n<td>SafeName</td>\n<td><em>String</em></td>\n<td>Name assigned to the safe definition.</td>\n</tr>\n<tr>\n<td>StoreId</td>\n<td><em>Integer</em></td>\n<td>ID of the store associated with the safe retrievable.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","SearchSafe"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a30d5398-65e5-4aa8-8909-850646fa5f53","name":"Search Safe","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeName\": \"Test2\",\r\n  \"StoreId\": 19\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/SearchSafe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:38:52 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"165","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"SafeDefinitionId\": 11,\n            \"SafeName\": \"Test2\",\n            \"StoreId\": 19\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3faec50e-b2a7-49ae-998c-6b41238eda10"},{"name":"Receive","id":"c345f73b-a7ad-4e61-a9d4-879b66ba22ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"OrderId\": 0,\r\n  \"Quantity\": 0,\r\n  \"StartingFromNumber\": 0,\r\n  \"EndToNumber\": 0,\r\n  \"OrderPackageNo\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/Receive","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique order identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Quantity</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The quantity ordered.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartingFromNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The starting number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndToNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ending number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OrderPackageNo</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The order package number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventoryReceive4</td>\n<td>Inventory Order Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","Receive"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5d89143d-0655-4c79-a336-12c959d3fcbb","name":"Receive","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"OrderId\": 2,\r\n  \"Quantity\": 1,\r\n  \"StartingFromNumber\": 100,\r\n  \"EndToNumber\": 101,\r\n  \"OrderPackageNo\": 102\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/Receive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Dec 2021 08:58:43 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c345f73b-a7ad-4e61-a9d4-879b66ba22ab"},{"name":"Transfer","id":"edb79f2a-fc8d-40fb-98fa-cab2f5104ceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"InventoryList\": [\r\n    {\r\n      \"Id\": 0\r\n    }\r\n  ],\r\n  \"ToSafeDefinitionId\": 0,\r\n  \"FromSafeDefinitionId\": 0,\r\n  \"ToCase\": \"string\",\r\n  \"FromCase\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/Transfer","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique identifier.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ToSafeDefinitionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the safe where the transfer is being sent.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FromSafeDefinitionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the safe where the transfer is being sent from.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ToCase</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>To Case.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FromCase</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>From Case.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvTransferInsE2</td>\n<td>From Safe Definition Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>InvTransferInsE3</td>\n<td>To Safe Definition Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","Transfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"edb79f2a-fc8d-40fb-98fa-cab2f5104ceb"},{"name":"Update Safe","id":"ab356f75-d602-4f30-82ce-4a1056318898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 0,\r\n  \"SafeName\": \"string\",\r\n  \"StoreId\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/UpdateSafe","description":"<h3 id=\"description\">Description</h3>\n<p>Updates the safe's safeName or storeID.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SafeDefinitionId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>The safe definition ID allocated.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SafeName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Name assigned to the safe definition.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StoreId</td>\n<td><em>Integer</em></td>\n<td>16</td>\n<td>ID of the store associated with the safe retrievable.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventorySafeDefinition_StoreNotFound</td>\n<td>Store Not Found.</td>\n</tr>\n<tr>\n<td>InventorySafeDefinition_NotFound</td>\n<td>Inventory Safe Definition Not Found.</td>\n</tr>\n<tr>\n<td>InventorySafeDefinition_SafeName</td>\n<td>Safe Name Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Inventory","UpdateSafe"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7238a994-f21f-4b71-8e8b-282d8c133f21","name":"Update Safe","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"SafeDefinitionId\": 11,\r\n  \"SafeName\": \"Test2\",\r\n  \"StoreId\": 19\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Inventory/UpdateSafe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 14:37:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ab356f75-d602-4f30-82ce-4a1056318898"}],"id":"c55c1776-6276-4b1b-87b7-9e3a24f11bca","_postman_id":"c55c1776-6276-4b1b-87b7-9e3a24f11bca","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}},{"name":"Card Auth Simulator","item":[{"name":"Card Authorization","id":"975896c5-e80e-4bfe-b447-3369f7d6dc51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardTokenNumber\": \"511671zsnurc1677\",\r\n    \"terminalId\": \"PS000001\",\r\n    \"merchantCode\": \"000000000000001\",\r\n    \"description\": \"TEST TRANSACTION CALGARY CAN\",\r\n    \"transactionType\": 1,\r\n    \"localAmount\": 1,\r\n    \"localCurrencyCode\": \"124\",\r\n    \"settlementAmount\": 1,\r\n    \"settlementCurrencyCode\": \"124\",\r\n    \"mcc\": \"5432\",\r\n    \"countryCode\": \"CAN\",\r\n    \"transactionEntryType\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/CardAuthorizationSimulator/Authorization","description":"<h3 id=\"description\">Description</h3>\n<p>The Card Authorization API is designed to validate and approve or decline a financial transaction attempted with a payment card. It acts as the gateway for processing real-time purchases or financial actions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>cardTokenNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The tokenized card number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>terminalId</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The ID of the terminal where transaction happened.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>merchantCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The code of the merchant where the transaction happened.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>A description of the transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>transactionType</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The type of transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>localAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The amount paid by the customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>localCurrencyCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The currency code paid by the customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>settlementAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The settlement amount.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>settlementCurrencyCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The currency code of the settlement amount.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>mcc</td>\n<td><em>Array(Numeric)</em></td>\n<td>-</td>\n<td>The MCC code(s) associated with the card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The country code where the transaction took place.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>transactionEntryType</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The transaction entry type.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardNotFound</td>\n<td>Card Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","CardAuthorizationSimulator","Authorization"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"975896c5-e80e-4bfe-b447-3369f7d6dc51"},{"name":"Card Reverse Authorization","id":"666e5200-79ac-4a9b-b1ce-c35f53eb7677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardTokenNumber\": \"511671zsnurc1677\",\r\n    \"referenceNumber\": \"100000000127099674\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/CardAuthorizationSimulator/ReverseAuthorization","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The tokenuzed card number. Partially hidden for security.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The reference number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The reference number.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>The resonse code.</td>\n</tr>\n<tr>\n<td>ResponseErrorCode</td>\n<td><em>Numeric</em></td>\n<td>The code of the error encountered.</td>\n</tr>\n<tr>\n<td>ResponseErrorDetail</td>\n<td><em>String</em></td>\n<td>A description of the error encountered.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardNotFound</td>\n<td>Card Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","CardAuthorizationSimulator","ReverseAuthorization"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7f7290d2-c6e9-4e29-a7fb-e3b3b3fbe72a","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"cardTokenNumber\": \"511671zsnurc1677\",\r\n    \"referenceNumber\": \"100000000127099674\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/CardAuthorizationSimulator/ReverseAuthorization"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Jan 2022 15:35:55 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"184","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"ReferenceNumber\": \"100000000127099695\",\n        \"ResponseCode\": \"00\",\n        \"ResponseErrorCode\": \"\",\n        \"ResponseErrorDetail\": \"\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"666e5200-79ac-4a9b-b1ce-c35f53eb7677"}],"id":"c77e3d3f-472a-4928-bf4c-1f4cafbaa4be","_postman_id":"c77e3d3f-472a-4928-bf4c-1f4cafbaa4be","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","name":"Wallet ","type":"folder"}}}],"id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"c254a962-690a-4e88-9669-f1cabacef324","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6bd1991d-b958-4789-a174-35e22dc98e40","type":"text/javascript","exec":[""]}}],"_postman_id":"fcc180f7-e727-4a37-8c4d-0c3adf4fae1c","description":""},{"name":"Lender","item":[{"name":"Application","item":[{"name":"Create Applicant","id":"17e1be46-c08b-44b6-805d-5f3a4a439d3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Email\": \"Hasan.Valbuean@test.ca\",\r\n    \"FirstName\": \"Hassan\",\r\n    \"MiddleName\": \"Val\",\r\n    \"LastName\": \"Bueana\",\r\n    \"Gender\":\"M\",\r\n    \"BirthDate\": \"1993-07-23\",\r\n    \"MobilePhoneCountryCode\": \"90\",\r\n    \"MobilePhoneNumber\": \"5035117645\",\r\n    \"Address\": \"2872 Mara Dr\",\r\n    \"ZipCode\": \"V3C 5L3\",\r\n    \"City\": \"Coquitlam\",\r\n    \"Province\": \"BC\",\r\n    \"Country\": \"1\",\r\n    \"IdentityType\": \"C005\",\r\n    \"IdentityNumber\": \"23470929\",\r\n    \"IdentityCountry\": \"1\",\r\n    \"IdentityProvince\": \"BC\",\r\n    \"IdentityExpireDate\": \"2025-11-28\",\r\n    \"IdentityPlaceOfIssue\": \"BC\",\r\n    \"FinancialInstitution\": 17,\r\n    \"FinancialInstitutionBranch\": \"50911922\",\r\n    \"AccountNumber\": \"345185373\",\r\n    \"LoanType\": \"0\",\r\n    \"LoanPurpose\": \"7\",\r\n    \"PaymentFrequency\": \"M\",\r\n    \"PaymentPeriod\": 12,\r\n    \"RequestAmount\": 13400,\r\n    \"SecurityAmount\":1000\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateApplicant","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Applicant API creates a new applicant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the applicant's email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Indicates the applicant's first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Indicates the applicant's middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Indicates the applicant's last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the applicant's gender. Parameter details may be obtained using the <strong>Get Parameter API</strong> with <strong>Gender</strong> parameter.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the applicant's birth date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates mobile phone country code. Parameter details can be obtained using the <strong>Get Country Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Indicates the applicant's phone number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Indicates thr applicant's address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Indicates thr applicant's ZipCode.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the applicant's city.  <br />Parameter details can be obtained using the <strong>Get City</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the applicant's province.  <br />Parameter details can be obtained using the <strong>Get Province</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates thr applicant's country.  <br />Parameter details can be obtained using the <strong>Get Country</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityType</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates the identity type. Parameter details can be obtained by using the <strong>Get Applicant Identity Type</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>18</td>\n<td>Indicates thr applicant's identity number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityCountry</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates thr applicant's identity country. Parameter details can be obtained using the <strong>Get Country</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityProvince</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates thr applicant's identity province. Parameter details can be obtained using the <strong>Get Province</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the applicant's Identity Expiry Date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the applicant's Identity Place of issue.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the applicant's financial institution. Parameter details can be obtained using the <strong>Get Financial Institution</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>Indicates thr applicant's financial institution branch. Parameter details can be obtained using the <strong>Get Financial Institution</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>19</td>\n<td>Indicates the applicant's account number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LoanType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the loan type. Parameter details can be obtained using the <strong>Get Parameter API</strong> with <strong>LOS Loan Type</strong> parameter.  <br />  <br />Default value is <strong>secure card</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LoanPurpose</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Indicates the loan purpose. Parameter details can be obtained using the <strong>Get Parameter</strong> API, using the <strong>LOS Loan Purpose</strong> parameter.  <br />  <br />Default value is <strong>other</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PaymentFrequency</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Indicates the payment frequency. Parameter details can be obtained using the <strong>Get Parameter</strong> API, using the <strong>LOS Payment Schedule</strong> parameter.  <br />  <br />Default value is <strong>monthly</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PaymentPeriod</td>\n<td><em>Integer</em></td>\n<td>2</td>\n<td>Indicates the payment period.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>RequestAmount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the request amount.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Client ID.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Applicant Email. Another User With The Same Email Already Exists.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid First Or Last Name.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Gender.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Birth Date. Applicant Must Be Over The Age Of 18.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Country Code Or Phone Number.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Mobile Phone Number.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Address.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Zipcode.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Country.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Province.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid City.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Identity Type.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Identity Number.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Applicant Identity. Another User With The Same Identity Already Exists.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Identity Country.</td>\n</tr>\n<tr>\n<td>BadRequest</td>\n<td>Invalid Identity Province.</td>\n</tr>\n<tr>\n<td>InvalidEmail</td>\n<td>Interim Applicant List Invalid Email.</td>\n</tr>\n<tr>\n<td>InvalidEmail</td>\n<td>Invalid Applicant Email. Another User With This Email Already Exists.</td>\n</tr>\n<tr>\n<td>InvalidIdentity</td>\n<td>Invalid Applicant Identity.</td>\n</tr>\n<tr>\n<td>InvalidEmail</td>\n<td>Invalid Applicant Identity. Another User With The Same Identity Already Exists.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","CreateApplicant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a0025fe1-5598-4ad2-bc5a-8c806342c44f","name":"Create Applicant","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Email\": \"Hasan.Valbuean@test.ca\",\r\n    \"FirstName\": \"Hassan\",\r\n    \"MiddleName\": \"Val\",\r\n    \"LastName\": \"Bueana\",\r\n    \"Gender\":\"M\",\r\n    \"BirthDate\": \"1993-07-23\",\r\n    \"MobilePhoneCountryCode\": \"90\",\r\n    \"MobilePhoneNumber\": \"5035117645\",\r\n    \"Address\": \"2872 Mara Dr\",\r\n    \"ZipCode\": \"V3C 5L3\",\r\n    \"City\": \"Coquitlam\",\r\n    \"Province\": \"BC\",\r\n    \"Country\": \"1\",\r\n    \"IdentityType\": \"C005\",\r\n    \"IdentityNumber\": \"23470929\",\r\n    \"IdentityCountry\": \"1\",\r\n    \"IdentityProvince\": \"BC\",\r\n    \"IdentityExpireDate\": \"2025-11-28\",\r\n    \"IdentityPlaceOfIssue\": \"BC\",\r\n    \"FinancialInstitution\": 17,\r\n    \"FinancialInstitutionBranch\": \"50911922\",\r\n    \"AccountNumber\": \"345185373\",\r\n    \"LoanType\": \"0\",\r\n    \"LoanPurpose\": \"7\",\r\n    \"PaymentFrequency\": \"M\",\r\n    \"PaymentPeriod\": 12,\r\n    \"RequestAmount\": 13400,\r\n    \"SecurityAmount\":1000\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateApplicant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jan 2022 13:34:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 0,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"17e1be46-c08b-44b6-805d-5f3a4a439d3c"},{"name":"Create Customer","id":"2695e053-0dd4-4375-ab6c-6ea12b0d7005","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"email\": \"maliseyhan3@gmail.com\",\r\n  \"phoneCountryId\": 0,\r\n  \"phoneNumber\": \"5398920098\",\r\n  \"firstName\": \"Mali\",\r\n  \"lastName\": \"Seyhan\",\r\n  \"birthDate\": \"1997-11-16T23:32:44.814Z\",\r\n  \"identificationMethodId\": 0,\r\n  \"identificationTypeId\": 0,\r\n  \"identificationNo\": \"\",\r\n  \"identityExpirementDate\": \"2022-11-16T23:32:44.814Z\",\r\n  \"programList\": [\r\n    \"LENDER\"\r\n  ],\r\n  \"interacEmail\": \"maliseyhan3@gmail.com\",\r\n  \"addressLine1\": \"C-4611 45 Ave\",\r\n  \"addressLine2\": \"\",\r\n  \"ZipCode\": \"T4G 1P5\",\r\n  \"cityId\": 48363,\r\n  \"countryId\": 38,\r\n  \"provinceId\": 663,\r\n  \"applicantId\": 20876\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The create customer API creates a new Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique customer number, if not supplied a number will be auto-generated. It must not start with a zero and may not be longer than seven digits in length.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Customer type codes:  <br /><code>P</code> Individual Customer  <br /><code>C</code> Corporate Customer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProgramList</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>List of programs offered to customers:  <br /><code>BILL</code> - Bill Payment  <br /><code>EFT</code> - EFT Program  <br /><code>ETRANSFER</code> - Interac Etransfer Program  <br /><code>WALLET</code> - Card and Account  <br /><code>CDIC</code> - Account  <br /><code>CRDTRANSFER</code> - Visa Direct  <br /><code>LENDER</code> - Card and Account</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer email address.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no phone number is supplied, or <strong>Program List</strong> contains <code>LENDER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer interac email address.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneCountryId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Address -&gt; Get Country List</strong> API.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>Program List</strong> contains <code>LENDER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's primary phone number.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>Program List</strong> contains <code>LENDER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine1.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates ZipCode.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Country ID. Parameter details can be obtained using the <strong>Get Country List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates Province ID. Parameter details can be obtained using the <strong>Get Province List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates City ID. Parameter details can be obtained using the <strong>Get City List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationMethodID</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Method</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationTypeID</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Type</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationNo</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customer's identification number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentityExpirementDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification expiration date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessIdNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RetailName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates Unique ID for the Applicant.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code> and will be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The unique customer identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customers full name.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the customer. P(Personal), C(Corporate).</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The unique client ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The customer birth date.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The customers phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The street address for the customer.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The street address for the customer.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the customer resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the customer resides.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the customer resides.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip/postal code in which the customer resides.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>The status of the customer. Either Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicantNOTFOUND</td>\n<td>Applicant record not found for Lender Customer Registration.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","CreateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cde30f3e-f525-4d72-8ff4-04ea4cb291b8","name":"Create Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"email\": \"maliseyhan3@gmail.com\",\r\n  \"phoneCountryId\": 0,\r\n  \"phoneNumber\": \"5398920098\",\r\n  \"firstName\": \"Mali\",\r\n  \"lastName\": \"Seyhan\",\r\n  \"birthDate\": \"1997-11-16T23:32:44.814Z\",\r\n  \"identificationMethodId\": 0,\r\n  \"identificationTypeId\": 0,\r\n  \"identificationNo\": \"\",\r\n  \"identityExpirementDate\": \"2022-11-16T23:32:44.814Z\",\r\n  \"programList\": [\r\n    \"LENDER\"\r\n  ],\r\n  \"interacEmail\": \"maliseyhan3@gmail.com\",\r\n  \"addressLine1\": \"C-4611 45 Ave\",\r\n  \"addressLine2\": \"\",\r\n  \"ZipCode\": \"T4G 1P5\",\r\n  \"cityId\": 48363,\r\n  \"countryId\": 38,\r\n  \"provinceId\": 663,\r\n  \"applicantId\": 20876\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Dec 2021 13:55:15 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"372","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 51699,\n        \"CustomerNumber\": \"10220000706\",\n        \"CustomerName\": \"Mali Seyhan\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500013,\n        \"Email\": \"maliseyhan3@gmail.com\",\n        \"BirthDate\": \"1997-11-16T00:00:00\",\n        \"PhoneNumber\": \"+5398920098\",\n        \"AddressLine1\": \"C-4611 45 Ave\",\n        \"AddressLine2\": \"\",\n        \"City\": \"Innisfail\",\n        \"Province\": \"Alberta\",\n        \"Country\": \"Canada\",\n        \"ZipCode\": \"T4G 1P5\",\n        \"CustomerStatus\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"2695e053-0dd4-4375-ab6c-6ea12b0d7005"},{"name":"Create Customer v1.1","id":"2d5d3c7a-da95-43e5-ac1d-ebc9dca61adb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"email\": \"maliseyhan3@gmail.com\",\r\n  \"phoneCountryId\": 90,\r\n  \"phoneNumber\": \"5398920098\",\r\n  \"firstName\": \"Mali\",\r\n  \"lastName\": \"Seyhan\",\r\n  \"birthDate\": \"1997-11-16T23:32:44.814Z\",\r\n  \"identificationMethodId\": 0,\r\n  \"identificationTypeId\": 0,\r\n  \"identificationNo\": \"\",\r\n  \"identityExpirementDate\": \"2020-11-16T23:32:44.814Z\",\r\n  \"programList\": [\r\n    \"LENDER\"\r\n  ],\r\n  \"interacEmail\": \"maliseyhan3@gmail.com\",\r\n  \"addressLine1\": \"C-4611 45 Ave\",\r\n  \"addressLine2\": \"\",\r\n  \"ZipCode\": \"T4G 1P5\",\r\n  \"cityId\": 48363,\r\n  \"countryId\": 38,\r\n  \"provinceId\": 663,\r\n  \"applicantId\": 20876\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The create customer API creates a new Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique customer number. If not supplied, a number will be auto-generated. It must not start with a zero and may not be longer than seven digits in length.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Customer type codes:  <br /><code>P</code> Individual Customer  <br /><code>C</code> Corporate Customer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProgramList</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>List of programs offered to customers:  <br /><code>BILL</code> - Bill Payment  <br /><code>EFT</code> - EFT Program  <br /><code>ETRANSFER</code> - Interac Etransfer Program  <br /><code>WALLET</code> - Card and Account  <br /><code>CDIC</code> - Account  <br /><code>CRDTRANSFER</code> - Visa Direct  <br /><code>LENDER</code> - Card and Account  <br /><code>LENDER</code> Card and Account</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer email address.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no phone number is supplied, or <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Customer interac email address.  <br />  <br /><strong>Required</strong> if Program List contains <code>ETRANSFER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneCountryId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Address -&gt; Get Country List</strong> API.  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Customer's primary phone number.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>ETRANSFER</code> and no email is supplied, or <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentificationMethodID</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Method</strong> API.  <br />  <br /><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentificationTypeID</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Identification -&gt; Get Identification Type</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentificationNo</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customer's identification number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentityExpirementDate</td>\n<td><em>DateTime</em></td>\n<td>9</td>\n<td>Customer's identification expiration date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine1.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates AddressLine2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates ZipCode.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Country ID. This can be obtained using the <strong>Get Country List</strong> API.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Indicates Province ID. This can be obtained using the <strong>Get Province List</strong> API.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates City ID. This can be obtained using the <strong>Get City List</strong> API.  <br />  <br /><strong>Required</strong> if <strong>ProgramList</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessIdNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>RetailName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>C</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Applicant.This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>LENDER</code></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The account name for the Customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> API.  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Use the <code>ID</code> value from the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution Branch</strong> API.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>External bank account number of the customer.  <br />  <br /><strong>Required</strong> if <strong>Program List</strong> contains <code>EFT</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CustomerStatusId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OccupationId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PriorOccupationId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER OR WALLET</code> and <strong>Occupation Id</strong> is <code>Retired</code>, <code>UnemployedSocialAssistance</code> or <code>UnemploymentAssistance</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>GenderId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IntendedUseId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentityTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentityVerifiedBy</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>IdentityVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PrimaryProvincialIdentityTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>InPersonIDVerification</code> and <strong>Identity Type Id</strong> is <code>ID010</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>SecondaryIdentityTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the secondary piece if udentification.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryIdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The place of issue of the second piece of identification.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryIdentityNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The number of the piece of secondary identification.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryIdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The expiry date oif the secondary piece of identification.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryIdentityVerifiedBy</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The name of the person who verified the secondary piece of identification.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryIdentityVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The date the second piece of identification was verified.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryProvincialIdentityTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The provincial ID of the secondary piece of identification.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CreditAgencyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Credit File Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CreditFileNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Credit File Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CreditFileCompletionDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Credit File Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PrimaryDocumentId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Dual Process Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PrimaryDocumentVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Dual Process Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PrimaryDocumentNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Dual Process Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PrimaryDocumentReviewedBy</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><strong>Required</strong> if <strong>Customer Type Code</strong> contains <code>P</code> and <strong>Program List</strong> contains <code>LENDER</code> or <code>WALLET</code> and <strong>Identification Method ID</strong> is <code>Dual Process Method.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>SecondaryDocumentId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the secondary document.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryDocumentVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The date the secondary document was verified.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryDocumentNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The number on the secondary document.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecondaryDocumentReviewedBy</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The name of the person who reviewed the secondary document.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The applicant's employer's name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerAddress</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The applicant's employer's address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerZipCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The applicant's employer's zip/postal code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerCountryId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The applicant's employer's country ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerProvinceId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The applicant's employer's province ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerCityId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The applicant's employer's city ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerPhoneCountryCodeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The applicant's employer's phone country code ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmployerPhoneNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The applicant's employer's phone number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The unique customer identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The full name of the customer.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the customer. Either (P)Personal, or (C)Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The client unique ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>Customers email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>Customers birth date.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>Customers phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The street address of the customer.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The street address of the customer.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the customer resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the customer resides.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the customer resides.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip/postal code in which the customer resides.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>The status of the customer. Either Active or Inactive.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicantNOTFOUND</td>\n<td>Applicant Record Not Found For Lender Customer Registration.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n<tr>\n<td>v1.1</td>\n<td>November 2021</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Customer","CreateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f76193b1-1281-404f-b0e6-694bfc8aa101","name":"Create Customer v1.1","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"email\": \"maliseyhan3@gmail.com\",\r\n  \"phoneCountryId\": 0,\r\n  \"phoneNumber\": \"5398920098\",\r\n  \"firstName\": \"Mali\",\r\n  \"lastName\": \"Seyhan\",\r\n  \"birthDate\": \"1997-11-16T23:32:44.814Z\",\r\n  \"identificationMethodId\": 0,\r\n  \"identificationTypeId\": 0,\r\n  \"identificationNo\": \"\",\r\n  \"identityExpirementDate\": \"2022-11-16T23:32:44.814Z\",\r\n  \"programList\": [\r\n    \"LENDER\"\r\n  ],\r\n  \"interacEmail\": \"maliseyhan3@gmail.com\",\r\n  \"addressLine1\": \"C-4611 45 Ave\",\r\n  \"addressLine2\": \"\",\r\n  \"ZipCode\": \"T4G 1P5\",\r\n  \"cityId\": 48363,\r\n  \"countryId\": 38,\r\n  \"provinceId\": 663,\r\n  \"applicantId\": 20876\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Customer/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Dec 2021 13:55:15 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"372","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerId\": 51699,\n        \"CustomerNumber\": \"10220000706\",\n        \"CustomerName\": \"Mali Seyhan\",\n        \"CustomerTypeCode\": \"P\",\n        \"UniqueClientId\": 500013,\n        \"Email\": \"maliseyhan3@gmail.com\",\n        \"BirthDate\": \"1997-11-16T00:00:00\",\n        \"PhoneNumber\": \"+5398920098\",\n        \"AddressLine1\": \"C-4611 45 Ave\",\n        \"AddressLine2\": \"\",\n        \"City\": \"Innisfail\",\n        \"Province\": \"Alberta\",\n        \"Country\": \"Canada\",\n        \"ZipCode\": \"T4G 1P5\",\n        \"CustomerStatus\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"2d5d3c7a-da95-43e5-ac1d-ebc9dca61adb"},{"name":"Get Application","id":"f017e622-da69-4684-8b49-3df1b3f9055a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetApplication?applicationId={{applicationId}}","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Application API retrieves a Customer application.</p>\n<h3 id=\"querystring-parameters\">QueryString Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationId</td>\n<td><em>String</em></td>\n<td></td>\n<td>ID of the application being retrieved. If an ID is not supplied, all applications will be returned.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique customer identifier.</td>\n</tr>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>The unique applicant identifier.</td>\n</tr>\n<tr>\n<td>PartnerId</td>\n<td><em>Numeric</em></td>\n<td>Partner identifier.</td>\n</tr>\n<tr>\n<td>LoanType</td>\n<td><em>Numeric</em></td>\n<td>Type of loan requested by the applicant.</td>\n</tr>\n<tr>\n<td>LoanPurpose</td>\n<td><em>Numeric</em></td>\n<td>The intended purpose of the loan funds.</td>\n</tr>\n<tr>\n<td>PaymentFrequency</td>\n<td><em>String</em></td>\n<td>The frequency at which the loan is repayed.</td>\n</tr>\n<tr>\n<td>PaymentMethod</td>\n<td><em>String</em></td>\n<td>The method in which the loan is repayed.</td>\n</tr>\n<tr>\n<td>PaymentPeriod</td>\n<td><em>Numeric</em></td>\n<td>Payment period for the loan.</td>\n</tr>\n<tr>\n<td>RequestAmount</td>\n<td><em>Decimal</em></td>\n<td>The requested amount of the loan.</td>\n</tr>\n<tr>\n<td>SecurityAmount</td>\n<td><em>Decimal</em></td>\n<td>Customers security amount.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetApplication"],"host":["{{baseUrl}}"],"query":[{"key":"applicationId","value":"{{applicationId}}"}],"variable":[]}},"response":[{"id":"e2608cac-97c4-4ef6-90f7-b92018bd3447","name":"Get Application","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"518","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/Lender/GetApplication?applicationId={{applicationId}}","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","Lender","GetApplication"],"query":[{"key":"applicationId","value":"{{applicationId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 13:16:03 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1984","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 518,\n            \"ApplicantId\": 20578,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 519,\n            \"ApplicantId\": 20579,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 520,\n            \"ApplicantId\": 20580,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 521,\n            \"ApplicantId\": 20581,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 522,\n            \"ApplicantId\": 20582,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 523,\n            \"ApplicantId\": 20583,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 524,\n            \"ApplicantId\": 20586,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 525,\n            \"ApplicantId\": 20588,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 4000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 526,\n            \"ApplicantId\": 20589,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 527,\n            \"ApplicantId\": 20590,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 528,\n            \"ApplicantId\": 20591,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 529,\n            \"ApplicantId\": 20592,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 700,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 531,\n            \"ApplicantId\": 20594,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 7000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 532,\n            \"ApplicantId\": 20595,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 536,\n            \"ApplicantId\": 20599,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 537,\n            \"ApplicantId\": 20600,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 538,\n            \"ApplicantId\": 20601,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 539,\n            \"ApplicantId\": 20602,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 540,\n            \"ApplicantId\": 20603,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 544,\n            \"ApplicantId\": 20607,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 545,\n            \"ApplicantId\": 20608,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 12,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 548,\n            \"ApplicantId\": 20610,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 549,\n            \"ApplicantId\": 20611,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 551,\n            \"ApplicantId\": 20613,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 552,\n            \"ApplicantId\": 20615,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 130,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 555,\n            \"ApplicantId\": 20618,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 5,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 557,\n            \"ApplicantId\": 20621,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 558,\n            \"ApplicantId\": 20622,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 559,\n            \"ApplicantId\": 20623,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 562,\n            \"ApplicantId\": 20625,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 50,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 563,\n            \"ApplicantId\": 20627,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"W\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 564,\n            \"ApplicantId\": 20628,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 2500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 565,\n            \"ApplicantId\": 20629,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 566,\n            \"ApplicantId\": 20630,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 567,\n            \"ApplicantId\": 20631,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 4000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 568,\n            \"ApplicantId\": 20632,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 569,\n            \"ApplicantId\": 20635,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 570,\n            \"ApplicantId\": 20636,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 572,\n            \"ApplicantId\": 20639,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 573,\n            \"ApplicantId\": 20640,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 800,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 574,\n            \"ApplicantId\": 20642,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 575,\n            \"ApplicantId\": 20634,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 576,\n            \"ApplicantId\": 20647,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 180,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 577,\n            \"ApplicantId\": 20648,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 578,\n            \"ApplicantId\": 20649,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 579,\n            \"ApplicantId\": 20651,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 580,\n            \"ApplicantId\": 20652,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 450,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 581,\n            \"ApplicantId\": 20653,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 582,\n            \"ApplicantId\": 20654,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 420,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 583,\n            \"ApplicantId\": 20658,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 586,\n            \"ApplicantId\": 20666,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 587,\n            \"ApplicantId\": 20668,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 589,\n            \"ApplicantId\": 20669,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 2000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 590,\n            \"ApplicantId\": 20672,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 591,\n            \"ApplicantId\": 20656,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 592,\n            \"ApplicantId\": 20675,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 2000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 594,\n            \"ApplicantId\": 20678,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 595,\n            \"ApplicantId\": 20679,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 607,\n            \"ApplicantId\": 20695,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 608,\n            \"ApplicantId\": 20700,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 609,\n            \"ApplicantId\": 20703,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 612,\n            \"ApplicantId\": 20702,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 613,\n            \"ApplicantId\": 20704,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 614,\n            \"ApplicantId\": 20705,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 615,\n            \"ApplicantId\": 20693,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"0\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 35000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 616,\n            \"ApplicantId\": 20706,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 7000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 617,\n            \"ApplicantId\": 20707,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 8000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 618,\n            \"ApplicantId\": 20701,\n            \"PartnerId\": 9,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 619,\n            \"ApplicantId\": 20723,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"W\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 620,\n            \"ApplicantId\": 20727,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 621,\n            \"ApplicantId\": 20728,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 622,\n            \"ApplicantId\": 20729,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 623,\n            \"ApplicantId\": 20730,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 643,\n            \"ApplicantId\": 20754,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 544,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 644,\n            \"ApplicantId\": 20755,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 645,\n            \"ApplicantId\": 20756,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 646,\n            \"ApplicantId\": 20757,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 647,\n            \"ApplicantId\": 20758,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 648,\n            \"ApplicantId\": 20765,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 649,\n            \"ApplicantId\": 20768,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 25000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 650,\n            \"ApplicantId\": 20769,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 651,\n            \"ApplicantId\": 20770,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 652,\n            \"ApplicantId\": 20771,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 653,\n            \"ApplicantId\": 20772,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 20000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 654,\n            \"ApplicantId\": 20773,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 655,\n            \"ApplicantId\": 20775,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 656,\n            \"ApplicantId\": 20776,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 370,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 657,\n            \"ApplicantId\": 20777,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 440,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 658,\n            \"ApplicantId\": 20778,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 70,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 659,\n            \"ApplicantId\": 20779,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 660,\n            \"ApplicantId\": 20780,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 470,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 661,\n            \"ApplicantId\": 20781,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 662,\n            \"ApplicantId\": 20782,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 663,\n            \"ApplicantId\": 20783,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 125,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 664,\n            \"ApplicantId\": 20784,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 75,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 665,\n            \"ApplicantId\": 20785,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 110,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 666,\n            \"ApplicantId\": 20786,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 667,\n            \"ApplicantId\": 20787,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 668,\n            \"ApplicantId\": 20788,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 669,\n            \"ApplicantId\": 20789,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 670,\n            \"ApplicantId\": 20790,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 671,\n            \"ApplicantId\": 20791,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 672,\n            \"ApplicantId\": 20792,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 75,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 673,\n            \"ApplicantId\": 20793,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 674,\n            \"ApplicantId\": 20794,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 675,\n            \"ApplicantId\": 20795,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 676,\n            \"ApplicantId\": 20796,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 677,\n            \"ApplicantId\": 20797,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 678,\n            \"ApplicantId\": 20798,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 679,\n            \"ApplicantId\": 20799,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 340,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 680,\n            \"ApplicantId\": 20800,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 333,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 681,\n            \"ApplicantId\": 20801,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 332,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 682,\n            \"ApplicantId\": 20802,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 442,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 683,\n            \"ApplicantId\": 20803,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 542,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 684,\n            \"ApplicantId\": 20804,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 642,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 685,\n            \"ApplicantId\": 20805,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 742,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 686,\n            \"ApplicantId\": 20806,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 687,\n            \"ApplicantId\": 20807,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 688,\n            \"ApplicantId\": 20808,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 689,\n            \"ApplicantId\": 20809,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 690,\n            \"ApplicantId\": 20810,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 691,\n            \"ApplicantId\": 20811,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 850,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 692,\n            \"ApplicantId\": 20812,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 900,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 693,\n            \"ApplicantId\": 20813,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 880,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 694,\n            \"ApplicantId\": 20814,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 678,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 695,\n            \"ApplicantId\": 20815,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 696,\n            \"ApplicantId\": 20816,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 697,\n            \"ApplicantId\": 20818,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 698,\n            \"ApplicantId\": 20819,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 777,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 699,\n            \"ApplicantId\": 20820,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 440,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 700,\n            \"ApplicantId\": 20821,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 330,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 701,\n            \"ApplicantId\": 20822,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 275,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 702,\n            \"ApplicantId\": 20823,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 445,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 703,\n            \"ApplicantId\": 20824,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 445,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 704,\n            \"ApplicantId\": 20825,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 320,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 705,\n            \"ApplicantId\": 20826,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 706,\n            \"ApplicantId\": 20827,\n            \"PartnerId\": null,\n            \"LoanType\": \"2\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 707,\n            \"ApplicantId\": 20829,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 560,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 708,\n            \"ApplicantId\": 20830,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 7,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 709,\n            \"ApplicantId\": 20831,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 226,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 710,\n            \"ApplicantId\": 20832,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 227,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 711,\n            \"ApplicantId\": 20833,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 712,\n            \"ApplicantId\": 20834,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 713,\n            \"ApplicantId\": 20835,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 714,\n            \"ApplicantId\": 20836,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 715,\n            \"ApplicantId\": 20837,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 340,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 716,\n            \"ApplicantId\": 20842,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 717,\n            \"ApplicantId\": 20843,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 230,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 718,\n            \"ApplicantId\": 20844,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 719,\n            \"ApplicantId\": 20851,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 560,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 720,\n            \"ApplicantId\": 20852,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 600,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 721,\n            \"ApplicantId\": 20853,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 330,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 722,\n            \"ApplicantId\": 20854,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 723,\n            \"ApplicantId\": 20855,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 330,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 724,\n            \"ApplicantId\": 20856,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 725,\n            \"ApplicantId\": 20860,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 726,\n            \"ApplicantId\": 20868,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 727,\n            \"ApplicantId\": 20871,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 550,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 728,\n            \"ApplicantId\": 20872,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 2,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 729,\n            \"ApplicantId\": 20874,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 9,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 730,\n            \"ApplicantId\": 20875,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 550,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 732,\n            \"ApplicantId\": 20881,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1250,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 733,\n            \"ApplicantId\": 20882,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 734,\n            \"ApplicantId\": 20883,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 735,\n            \"ApplicantId\": 20884,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 736,\n            \"ApplicantId\": 20885,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 737,\n            \"ApplicantId\": 20886,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 738,\n            \"ApplicantId\": 20890,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 739,\n            \"ApplicantId\": 20894,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 740,\n            \"ApplicantId\": 20899,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 741,\n            \"ApplicantId\": 20901,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 742,\n            \"ApplicantId\": 20902,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 3500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 743,\n            \"ApplicantId\": 20906,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 4000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 744,\n            \"ApplicantId\": 20912,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 746,\n            \"ApplicantId\": 20941,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 748,\n            \"ApplicantId\": 20949,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 50,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 749,\n            \"ApplicantId\": 20950,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 51,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 750,\n            \"ApplicantId\": 20951,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 51,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 752,\n            \"ApplicantId\": 20956,\n            \"PartnerId\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 756,\n            \"ApplicantId\": 20960,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 758,\n            \"ApplicantId\": 20962,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 759,\n            \"ApplicantId\": 20963,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 760,\n            \"ApplicantId\": 20964,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 761,\n            \"ApplicantId\": 20969,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 762,\n            \"ApplicantId\": 20970,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 763,\n            \"ApplicantId\": 20971,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 764,\n            \"ApplicantId\": 20972,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 765,\n            \"ApplicantId\": 20973,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 766,\n            \"ApplicantId\": 20974,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 767,\n            \"ApplicantId\": 20978,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 768,\n            \"ApplicantId\": 20979,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 769,\n            \"ApplicantId\": 20980,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 772,\n            \"ApplicantId\": 20992,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 773,\n            \"ApplicantId\": 20993,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 774,\n            \"ApplicantId\": 20994,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 775,\n            \"ApplicantId\": 20995,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 776,\n            \"ApplicantId\": 20996,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 777,\n            \"ApplicantId\": 20997,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 778,\n            \"ApplicantId\": 20998,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 779,\n            \"ApplicantId\": 20999,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 780,\n            \"ApplicantId\": 21000,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 781,\n            \"ApplicantId\": 21001,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 782,\n            \"ApplicantId\": 21002,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 783,\n            \"ApplicantId\": 21003,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 785,\n            \"ApplicantId\": 21005,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 786,\n            \"ApplicantId\": 21006,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 787,\n            \"ApplicantId\": 21007,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 788,\n            \"ApplicantId\": 21008,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 789,\n            \"ApplicantId\": 21009,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 790,\n            \"ApplicantId\": 21010,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 791,\n            \"ApplicantId\": 21011,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 792,\n            \"ApplicantId\": 21012,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 793,\n            \"ApplicantId\": 21013,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 794,\n            \"ApplicantId\": 21014,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 795,\n            \"ApplicantId\": 21015,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 796,\n            \"ApplicantId\": 21016,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 797,\n            \"ApplicantId\": 21017,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 798,\n            \"ApplicantId\": 21018,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 799,\n            \"ApplicantId\": 21019,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 800,\n            \"ApplicantId\": 21020,\n            \"PartnerId\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 801,\n            \"ApplicantId\": 21021,\n            \"PartnerId\": 8,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentMethod\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f017e622-da69-4684-8b49-3df1b3f9055a"},{"name":"Get Applicant","id":"9d118f03-ce22-4187-baef-263b3257de81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetApplicant?applicantId={{ApplicantId}}","description":"<h3 id=\"description\">Description</h3>\n<p>The purpose of this operation is to get applicant list.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicantId</td>\n<td><em>Integer</em></td>\n<td></td>\n<td>ID of the applicant being retrieved. Returns all applicants available if no ID is supplied.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The customer/applicants unique identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer/applicant number.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The customer/applicants email address.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The first name of the customer/applicant.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The middle name of the customer/applicant.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The customer/applicants last name.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The birthdate of the customer/applicant.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>The gender of customer/applicant.</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The mobile phone country code.</td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>String</em></td>\n<td>The customer/applicants mobile phone number.</td>\n</tr>\n<tr>\n<td>IdentityType</td>\n<td><em>String</em></td>\n<td>The identity type code of the document used to verify the applicants identity.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>The number of the document used to verify the applicants identity.</td>\n</tr>\n<tr>\n<td>LoanType</td>\n<td><em>Numeric</em></td>\n<td>The type of loan the applicant has/has applied for.</td>\n</tr>\n<tr>\n<td>LoanPurpose</td>\n<td><em>Numeric</em></td>\n<td>The inteded purpose of the loan funds.</td>\n</tr>\n<tr>\n<td>PaymentFrequency</td>\n<td><em>String</em></td>\n<td>The frequency in which the loan is to be repayed.</td>\n</tr>\n<tr>\n<td>PaymentPeriod</td>\n<td><em>Numeric</em></td>\n<td>The payment period to which the loan will be repayed.</td>\n</tr>\n<tr>\n<td>RequestAmount</td>\n<td><em>Decimal</em></td>\n<td>The request amount of the loan.</td>\n</tr>\n<tr>\n<td>SecurityAmount</td>\n<td><em>Decimal</em></td>\n<td>The security amount.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetApplicant"],"host":["{{baseUrl}}"],"query":[{"key":"applicantId","value":"{{ApplicantId}}"}],"variable":[]}},"response":[{"id":"d3362928-8eb7-41a2-b98d-45598fb82bb0","name":"Get Applicant","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"20578","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/Lender/GetApplicant?applicantId={{ApplicantId}}","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","Lender","GetApplicant"],"query":[{"key":"applicantId","value":"{{ApplicantId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 13:18:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"12609","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 20581,\n            \"CustomerNumber\": \"10220000229\",\n            \"Email\": \"AWtest123@dcbank.ca\",\n            \"FirstName\": \"Adyan\",\n            \"MiddleName\": \"InterestOne\",\n            \"LastName\": \"Ward\",\n            \"BirthDate\": \"1990-09-28T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa123465678\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20582,\n            \"CustomerNumber\": \"10220000248\",\n            \"Email\": \"efkan@gmail.com\",\n            \"FirstName\": \"Efkan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Afakan\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"47372626722\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20586,\n            \"CustomerNumber\": null,\n            \"Email\": \"kristie@dcbank.ca\",\n            \"FirstName\": \"Tabitha\",\n            \"MiddleName\": null,\n            \"LastName\": \"Reed\",\n            \"BirthDate\": \"1986-07-17T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"123456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20587,\n            \"CustomerNumber\": null,\n            \"Email\": \"BettyWhite@dcbank.ca\",\n            \"FirstName\": \"Betty\",\n            \"MiddleName\": null,\n            \"LastName\": \"White\",\n            \"BirthDate\": \"1950-11-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"CP-1234567\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20588,\n            \"CustomerNumber\": \"10220000231\",\n            \"Email\": \"ayazabbas.metu@gmail.com\",\n            \"FirstName\": \"Abbas\",\n            \"MiddleName\": null,\n            \"LastName\": \"Ayaz\",\n            \"BirthDate\": \"1979-07-04T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C006\",\n            \"IdentityNumber\": \"564567575\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 4000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20589,\n            \"CustomerNumber\": \"10220000233\",\n            \"Email\": \"zberk.ayarslan@gmail.com\",\n            \"FirstName\": \"Abbas\",\n            \"MiddleName\": null,\n            \"LastName\": \"Başkan\",\n            \"BirthDate\": \"1920-07-21T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"123213213132\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20590,\n            \"CustomerNumber\": null,\n            \"Email\": \"craig@dcbank.ca\",\n            \"FirstName\": \"Second\",\n            \"MiddleName\": null,\n            \"LastName\": \"Name\",\n            \"BirthDate\": \"1990-02-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa123455\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 10000\n        },\n        {\n            \"Id\": 20591,\n            \"CustomerNumber\": \"10220000234\",\n            \"Email\": \"fariha2@lbzannualj.com\",\n            \"FirstName\": \"John\",\n            \"MiddleName\": null,\n            \"LastName\": \"Gibson\",\n            \"BirthDate\": \"1980-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa123456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 10000\n        },\n        {\n            \"Id\": 20592,\n            \"CustomerNumber\": \"10220000235\",\n            \"Email\": \"z.berkayarslan@gmail.com\",\n            \"FirstName\": \"Berkay\",\n            \"MiddleName\": null,\n            \"LastName\": \"Arslan 24 September\",\n            \"BirthDate\": \"1995-05-22T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"132123132123\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 700,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20594,\n            \"CustomerNumber\": \"10220000236\",\n            \"Email\": \"testberkay@payolog.com\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Berkay\",\n            \"BirthDate\": \"1992-12-30T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": \"\",\n            \"IdentityType\": \"C005\",\n            \"IdentityNumber\": \"123\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 7000,\n            \"SecurityAmount\": 8000\n        },\n        {\n            \"Id\": 20595,\n            \"CustomerNumber\": null,\n            \"Email\": \"CW123@dcbank.ca\",\n            \"FirstName\": \"Craig\",\n            \"MiddleName\": null,\n            \"LastName\": \"Whitby\",\n            \"BirthDate\": \"1981-07-25T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa123456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20599,\n            \"CustomerNumber\": \"10220000237\",\n            \"Email\": \"MM123@dcbank.ca\",\n            \"FirstName\": \"Marcos\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mcfarlane\",\n            \"BirthDate\": \"1981-08-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"QA1233456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20601,\n            \"CustomerNumber\": \"10220000238\",\n            \"Email\": \"sapener432@justlibre.com\",\n            \"FirstName\": \"Cihat \",\n            \"MiddleName\": null,\n            \"LastName\": \"Yasin\",\n            \"BirthDate\": \"1985-06-05T00:00:00\",\n            \"Gender\": \"O\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C000\",\n            \"IdentityNumber\": \"54365465465\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20602,\n            \"CustomerNumber\": \"10220000240\",\n            \"Email\": \"mesut@gmail.com\",\n            \"FirstName\": \"Mesut\",\n            \"MiddleName\": null,\n            \"LastName\": \"Ak\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"483838288282\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20603,\n            \"CustomerNumber\": \"10220000239\",\n            \"Email\": \"ayla@gmail.com\",\n            \"FirstName\": \"Ayla\",\n            \"MiddleName\": null,\n            \"LastName\": \"Ak\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"4828388283323\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20607,\n            \"CustomerNumber\": \"10220000241\",\n            \"Email\": \"khfddkjfd@payolog.com\",\n            \"FirstName\": \"Kasim\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1999-05-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"23322\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20608,\n            \"CustomerNumber\": \"10220000242\",\n            \"Email\": \"fatih.dikdere+1@payolog.com\",\n            \"FirstName\": \"Loan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Kasim\",\n            \"BirthDate\": \"1989-06-13T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"fdffddf\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 12,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20610,\n            \"CustomerNumber\": \"10220000245\",\n            \"Email\": \"secure1.card@dcbank.ca\",\n            \"FirstName\": \"Secure 1\",\n            \"MiddleName\": null,\n            \"LastName\": \"Card\",\n            \"BirthDate\": \"1980-07-09T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C001\",\n            \"IdentityNumber\": \"34564543\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20611,\n            \"CustomerNumber\": \"10220000246\",\n            \"Email\": \"sean@dcbank.ca\",\n            \"FirstName\": \"App\",\n            \"MiddleName\": null,\n            \"LastName\": \"User\",\n            \"BirthDate\": \"1990-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa123456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20613,\n            \"CustomerNumber\": \"10220000247\",\n            \"Email\": \"ahmeter.han.artifex@gmail.com\",\n            \"FirstName\": \"Atakan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Tarti\",\n            \"BirthDate\": \"1991-07-10T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C008\",\n            \"IdentityNumber\": \"6657432\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20614,\n            \"CustomerNumber\": null,\n            \"Email\": \"gokhan.ates@gmail.com\",\n            \"FirstName\": \"Gokhan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Ates\",\n            \"BirthDate\": \"1992-06-10T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"21864327658\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20627,\n            \"CustomerNumber\": \"10220000263\",\n            \"Email\": \"serkan@dcbank.ca\",\n            \"FirstName\": \"Serkan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Orhon\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"47372373272373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"W\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 3000\n        },\n        {\n            \"Id\": 20628,\n            \"CustomerNumber\": \"10220000264\",\n            \"Email\": \"mehmet.polat@dcbank.ca\",\n            \"FirstName\": \"Hilal\",\n            \"MiddleName\": null,\n            \"LastName\": \"Fitil\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"42387872882\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 2500,\n            \"SecurityAmount\": 2500\n        },\n        {\n            \"Id\": 20629,\n            \"CustomerNumber\": \"10220000265\",\n            \"Email\": \"serkanorhon@gmail.com\",\n            \"FirstName\": \"Serkan1\",\n            \"MiddleName\": null,\n            \"LastName\": \"Orhon1\",\n            \"BirthDate\": \"1984-02-08T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"11111111111111111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 2000\n        },\n        {\n            \"Id\": 20630,\n            \"CustomerNumber\": \"10220000266\",\n            \"Email\": \"sorhon@msn.com\",\n            \"FirstName\": \"Serkan2\",\n            \"MiddleName\": null,\n            \"LastName\": \"Orhon2\",\n            \"BirthDate\": \"1999-06-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"111111111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20631,\n            \"CustomerNumber\": \"10220000267\",\n            \"Email\": \"serkanorhon@hotmail.com\",\n            \"FirstName\": \"Serkan3\",\n            \"MiddleName\": null,\n            \"LastName\": \"Orhon3\",\n            \"BirthDate\": \"1999-02-02T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"11111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 4000,\n            \"SecurityAmount\": 3000\n        },\n        {\n            \"Id\": 20632,\n            \"CustomerNumber\": \"10220000268\",\n            \"Email\": \"lapsacetre@nedoz.com\",\n            \"FirstName\": \"Lale\",\n            \"MiddleName\": null,\n            \"LastName\": \"Aptamil\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"473726226222\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20633,\n            \"CustomerNumber\": \"10220000298\",\n            \"Email\": \"redeji9782@dxecig.com\",\n            \"FirstName\": \"Serkan4\",\n            \"MiddleName\": null,\n            \"LastName\": \"Orhon4\",\n            \"BirthDate\": \"1989-02-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"111111111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 2000\n        },\n        {\n            \"Id\": 20634,\n            \"CustomerNumber\": \"10220000293\",\n            \"Email\": \"bahadir@dcbank.ca\",\n            \"FirstName\": \"Bahadir\",\n            \"MiddleName\": null,\n            \"LastName\": \"Yalcin\",\n            \"BirthDate\": \"1990-03-27T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"111111111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20635,\n            \"CustomerNumber\": \"10220000295\",\n            \"Email\": \"yadod80404@macosnine.com\",\n            \"FirstName\": \"mooooo\",\n            \"MiddleName\": null,\n            \"LastName\": \"mooo\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 10000\n        },\n        {\n            \"Id\": 20636,\n            \"CustomerNumber\": \"10220000280\",\n            \"Email\": \"hilalfitil@gmail.com\",\n            \"FirstName\": \"hilal2\",\n            \"MiddleName\": null,\n            \"LastName\": \"fitil\",\n            \"BirthDate\": \"1990-06-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"11111111111111111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20639,\n            \"CustomerNumber\": \"10220000281\",\n            \"Email\": \"cancel@gmail.com\",\n            \"FirstName\": \"Cancel Card Testing\",\n            \"MiddleName\": null,\n            \"LastName\": \"Cancel Card Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"373728828282\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20640,\n            \"CustomerNumber\": \"10220000287\",\n            \"Email\": \"sevib55378@gameqo.com\",\n            \"FirstName\": \"Ayaz\",\n            \"MiddleName\": null,\n            \"LastName\": \"Ayazaga\",\n            \"BirthDate\": \"1979-01-07T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"77366262622\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 800,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20641,\n            \"CustomerNumber\": null,\n            \"Email\": \"pepoxo7436@heroulo.com\",\n            \"FirstName\": \"hasan\",\n            \"MiddleName\": null,\n            \"LastName\": \"tekin\",\n            \"BirthDate\": \"1969-02-05T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"22222\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"W\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 2000,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20642,\n            \"CustomerNumber\": \"10220000288\",\n            \"Email\": \"cemre@gmail.com\",\n            \"FirstName\": \"Cemre\",\n            \"MiddleName\": null,\n            \"LastName\": \"Aloglu\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"43778282828\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20643,\n            \"CustomerNumber\": null,\n            \"Email\": \"neslihan@gmail.com\",\n            \"FirstName\": \"Neslihan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Abaci\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"47377237373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20618,\n            \"CustomerNumber\": \"10220000308\",\n            \"Email\": \"kader.yazgi@dcbank.ca\",\n            \"FirstName\": \"Kader \",\n            \"MiddleName\": null,\n            \"LastName\": \"Yazgi\",\n            \"BirthDate\": \"1995-06-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C001\",\n            \"IdentityNumber\": \"3253242\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 5,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20621,\n            \"CustomerNumber\": \"10220000259\",\n            \"Email\": \"NC123@dcbank.ca\",\n            \"FirstName\": \"Noel\",\n            \"MiddleName\": null,\n            \"LastName\": \"Collins\",\n            \"BirthDate\": \"1979-02-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"123456789AB\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20622,\n            \"CustomerNumber\": null,\n            \"Email\": \"BS123@dcbank.ca\",\n            \"FirstName\": \"Benny\",\n            \"MiddleName\": null,\n            \"LastName\": \"Stevenson\",\n            \"BirthDate\": \"1969-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"12345667989AB\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20623,\n            \"CustomerNumber\": null,\n            \"Email\": \"MG123@dcbank.ca\",\n            \"FirstName\": \"Marissa\",\n            \"MiddleName\": null,\n            \"LastName\": \"Griffith\",\n            \"BirthDate\": \"1989-03-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"123446AB\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20648,\n            \"CustomerNumber\": \"10220000301\",\n            \"Email\": \"security@dcbank.ca\",\n            \"FirstName\": \"security\",\n            \"MiddleName\": null,\n            \"LastName\": \"security\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"542823882382\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20649,\n            \"CustomerNumber\": \"10220000302\",\n            \"Email\": \"unsecure@dcbank.ca\",\n            \"FirstName\": \"unsecure\",\n            \"MiddleName\": null,\n            \"LastName\": \"unsecure\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"478373723723\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 350\n        },\n        {\n            \"Id\": 20650,\n            \"CustomerNumber\": null,\n            \"Email\": \"mahmatpolat@dcbank.ca\",\n            \"FirstName\": \"mahmat\",\n            \"MiddleName\": null,\n            \"LastName\": \"polat\",\n            \"BirthDate\": \"1979-07-05T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"223232\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 25,\n            \"SecurityAmount\": 25\n        },\n        {\n            \"Id\": 20655,\n            \"CustomerNumber\": null,\n            \"Email\": \"bopisi6381@naymeo.com\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Bopisi\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"QA1234567\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20656,\n            \"CustomerNumber\": \"10220000314\",\n            \"Email\": \"testperson@dcbank.ca\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Person\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID003\",\n            \"IdentityNumber\": \"12356-98\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20657,\n            \"CustomerNumber\": null,\n            \"Email\": \"test123@dcbank.ca\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Demo\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"QA1564\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20658,\n            \"CustomerNumber\": \"10220000310\",\n            \"Email\": \"expire@dcbank.ca\",\n            \"FirstName\": \"Expire Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Expire Test\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"5883838383\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20666,\n            \"CustomerNumber\": \"10220000311\",\n            \"Email\": \"testtttt@dcbank.ca\",\n            \"FirstName\": \"testtttt\",\n            \"MiddleName\": null,\n            \"LastName\": \"testtttt\",\n            \"BirthDate\": \"1989-02-02T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"11122425245255522422\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20668,\n            \"CustomerNumber\": \"10220000312\",\n            \"Email\": \"hilaltestt@dcbank.ca\",\n            \"FirstName\": \"hilaltest\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1989-07-05T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"25555577777777744444\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 3000\n        },\n        {\n            \"Id\": 20669,\n            \"CustomerNumber\": \"10220000313\",\n            \"Email\": \"hilaltest1@dcbank.ca\",\n            \"FirstName\": \"hilaltest1\",\n            \"MiddleName\": null,\n            \"LastName\": \"fitiltest1\",\n            \"BirthDate\": \"1990-06-06T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID003\",\n            \"IdentityNumber\": \"123654-98\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 2000,\n            \"SecurityAmount\": 2000\n        },\n        {\n            \"Id\": 20672,\n            \"CustomerNumber\": \"10220000329\",\n            \"Email\": \"kodovas318@0pppp.com\",\n            \"FirstName\": \"hilaltest3\",\n            \"MiddleName\": null,\n            \"LastName\": \"fitiltest3\",\n            \"BirthDate\": \"1994-06-02T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID007\",\n            \"IdentityNumber\": \"12563\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1100,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20673,\n            \"CustomerNumber\": null,\n            \"Email\": \"mehmetaliseyhan5@gmail.com\",\n            \"FirstName\": \"testhilal\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1990-03-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"44444444444444444444\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20675,\n            \"CustomerNumber\": null,\n            \"Email\": \"testhilalcustomer@test.ca\",\n            \"FirstName\": \"Hilal Test Customer\",\n            \"MiddleName\": null,\n            \"LastName\": \"For All Client\",\n            \"BirthDate\": \"1967-07-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID011\",\n            \"IdentityNumber\": \"12358\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 2000,\n            \"SecurityAmount\": 2000\n        },\n        {\n            \"Id\": 20677,\n            \"CustomerNumber\": null,\n            \"Email\": \"nagapim116@quossum.com\",\n            \"FirstName\": \"test name\",\n            \"MiddleName\": null,\n            \"LastName\": \"testing\",\n            \"BirthDate\": \"1989-06-09T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"12356-98\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20578,\n            \"CustomerNumber\": \"10220000227\",\n            \"Email\": \"gulcin@dcbank.ca\",\n            \"FirstName\": \"Gulcin\",\n            \"MiddleName\": null,\n            \"LastName\": \"Kuvanci\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"47376727272\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20579,\n            \"CustomerNumber\": null,\n            \"Email\": \"manish@vogcalgaryappdeveloper.com\",\n            \"FirstName\": \"VOG\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test User\",\n            \"BirthDate\": \"1980-03-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa1231456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 10000\n        },\n        {\n            \"Id\": 20652,\n            \"CustomerNumber\": \"10220000303\",\n            \"Email\": \"ahmetenver@gmail.com\",\n            \"FirstName\": \"Ahmet\",\n            \"MiddleName\": null,\n            \"LastName\": \"Enver\",\n            \"BirthDate\": \"1979-01-08T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"437373737723\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 450,\n            \"SecurityAmount\": 450\n        },\n        {\n            \"Id\": 20653,\n            \"CustomerNumber\": \"10220000307\",\n            \"Email\": \"avni@gmail.com\",\n            \"FirstName\": \"Avni\",\n            \"MiddleName\": null,\n            \"LastName\": \"Anıl\",\n            \"BirthDate\": \"1989-01-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"473737373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 350\n        },\n        {\n            \"Id\": 20679,\n            \"CustomerNumber\": \"10220000322\",\n            \"Email\": \"jowodo7060@quossum.com\",\n            \"FirstName\": \"test name\",\n            \"MiddleName\": null,\n            \"LastName\": \"name\",\n            \"BirthDate\": \"1979-07-12T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID010\",\n            \"IdentityNumber\": \"1236548\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20692,\n            \"CustomerNumber\": null,\n            \"Email\": \"red@test.com\",\n            \"FirstName\": \"Lobster\",\n            \"MiddleName\": null,\n            \"LastName\": \"Red\",\n            \"BirthDate\": \"1994-11-17T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20701,\n            \"CustomerNumber\": \"10220000364\",\n            \"Email\": \"testinggtest@dcbank.ca\",\n            \"FirstName\": \"Mehmet\",\n            \"MiddleName\": \"Ali\",\n            \"LastName\": \"Tessst\",\n            \"BirthDate\": \"1984-07-06T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20702,\n            \"CustomerNumber\": null,\n            \"Email\": \"medic@test.com\",\n            \"FirstName\": \"Medical\",\n            \"MiddleName\": null,\n            \"LastName\": \"Service\",\n            \"BirthDate\": \"1964-10-29T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"11121336666\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 3,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20703,\n            \"CustomerNumber\": null,\n            \"Email\": \"teacher@test.com\",\n            \"FirstName\": \"School\",\n            \"MiddleName\": null,\n            \"LastName\": \"Teacher\",\n            \"BirthDate\": \"1965-12-31T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20704,\n            \"CustomerNumber\": null,\n            \"Email\": \"clubhouse@test.com\",\n            \"FirstName\": \"Club\",\n            \"MiddleName\": null,\n            \"LastName\": \"House\",\n            \"BirthDate\": \"1993-10-27T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"45698799966\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20695,\n            \"CustomerNumber\": \"10220000338\",\n            \"Email\": \"yasemin1@dcbank.ca\",\n            \"FirstName\": \"Yasemin\",\n            \"MiddleName\": null,\n            \"LastName\": \"Yasemin\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"6545477747\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20706,\n            \"CustomerNumber\": \"10220000351\",\n            \"Email\": \"mmouse@test.com\",\n            \"FirstName\": \"Mickey\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mouse\",\n            \"BirthDate\": \"1970-02-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID003\",\n            \"IdentityNumber\": \"12365565659\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 7000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20774,\n            \"CustomerNumber\": null,\n            \"Email\": \"mehmet1@dcbank.ca\",\n            \"FirstName\": \"testt\",\n            \"MiddleName\": null,\n            \"LastName\": \"polat\",\n            \"BirthDate\": \"1994-06-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"q\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20775,\n            \"CustomerNumber\": \"10220000360\",\n            \"Email\": \"newtest@gmail.com\",\n            \"FirstName\": \"New Fee Testim\",\n            \"MiddleName\": null,\n            \"LastName\": \"Gulcin\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"7736366262\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 350\n        },\n        {\n            \"Id\": 20776,\n            \"CustomerNumber\": \"10220000362\",\n            \"Email\": \"newinterest@gmail.com\",\n            \"FirstName\": \"New Interest Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Gulcin\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"5883838383\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 370,\n            \"SecurityAmount\": 370\n        },\n        {\n            \"Id\": 20777,\n            \"CustomerNumber\": \"10220000365\",\n            \"Email\": \"bizimtest@gmail.com\",\n            \"FirstName\": \"Bizim Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1999-01-06T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372626622\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 440,\n            \"SecurityAmount\": 440\n        },\n        {\n            \"Id\": 20778,\n            \"CustomerNumber\": \"10220000366\",\n            \"Email\": \"awdadwdwdwdwdw12awd@gmail.com\",\n            \"FirstName\": \"bahadir\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1980-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 70,\n            \"SecurityAmount\": 70\n        },\n        {\n            \"Id\": 20779,\n            \"CustomerNumber\": \"10220000367\",\n            \"Email\": \"yenitest@gmail.com\",\n            \"FirstName\": \"Yeni Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Yeni Test\",\n            \"BirthDate\": \"1999-01-05T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4738838832\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 540\n        },\n        {\n            \"Id\": 20780,\n            \"CustomerNumber\": \"10220000368\",\n            \"Email\": \"serkandep@gmail.com\",\n            \"FirstName\": \"Serkan Deployment\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372727\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 470,\n            \"SecurityAmount\": 470\n        },\n        {\n            \"Id\": 20781,\n            \"CustomerNumber\": null,\n            \"Email\": \"etstesawdawa21@gmail.com\",\n            \"FirstName\": \"test ziya\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1959-01-28T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"1312321\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20782,\n            \"CustomerNumber\": \"10220000369\",\n            \"Email\": \"awdgaj12j12@gmail.com\",\n            \"FirstName\": \"baha\",\n            \"MiddleName\": null,\n            \"LastName\": \"yalcin\",\n            \"BirthDate\": \"1990-02-08T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"123414515151\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20783,\n            \"CustomerNumber\": \"10220000370\",\n            \"Email\": \"twardawgkawfa@gmail.com\",\n            \"FirstName\": \"son\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1980-01-29T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"12412451\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 125,\n            \"SecurityAmount\": 125\n        },\n        {\n            \"Id\": 20784,\n            \"CustomerNumber\": \"10220000371\",\n            \"Email\": \"tawdawdklaw@gmail.com\",\n            \"FirstName\": \"bahadir1\",\n            \"MiddleName\": null,\n            \"LastName\": \"yalcin\",\n            \"BirthDate\": \"2000-02-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"12314124\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 75,\n            \"SecurityAmount\": 75\n        },\n        {\n            \"Id\": 20785,\n            \"CustomerNumber\": \"10220000372\",\n            \"Email\": \"nakewnkwandk@gmail.com\",\n            \"FirstName\": \"bahadir yeni\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1990-01-30T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"12312412\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 110,\n            \"SecurityAmount\": 110\n        },\n        {\n            \"Id\": 20786,\n            \"CustomerNumber\": \"10220000373\",\n            \"Email\": \"testtberkay@dcbank.ca\",\n            \"FirstName\": \"Testing Berkay\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1994-02-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"122125\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20787,\n            \"CustomerNumber\": \"10220000374\",\n            \"Email\": \"testnew@dcbank.ca\",\n            \"FirstName\": \"Test New\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1984-07-06T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"222131\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20788,\n            \"CustomerNumber\": \"10220000375\",\n            \"Email\": \"testtt@dcbank.ca\",\n            \"FirstName\": \"Test Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Berkay\",\n            \"BirthDate\": \"1990-07-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"123358889998\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20789,\n            \"CustomerNumber\": \"10220000376\",\n            \"Email\": \"tessstt@dcbank.ca\",\n            \"FirstName\": \"Deneme\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1990-06-30T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"21321431212\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20790,\n            \"CustomerNumber\": \"10220000377\",\n            \"Email\": \"tesstt@dcbank.ca\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"New\",\n            \"BirthDate\": \"1980-02-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"4565566\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20791,\n            \"CustomerNumber\": \"10220000378\",\n            \"Email\": \"tessst@dcbank.ca\",\n            \"FirstName\": \"Test Berkay\",\n            \"MiddleName\": null,\n            \"LastName\": \"New\",\n            \"BirthDate\": \"1970-07-10T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"54656566\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20792,\n            \"CustomerNumber\": \"10220000379\",\n            \"Email\": \"bahadir4444@dcbank.ca\",\n            \"FirstName\": \"baha\",\n            \"MiddleName\": null,\n            \"LastName\": \"testt baha\",\n            \"BirthDate\": \"1980-02-06T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"234241\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 75,\n            \"SecurityAmount\": 75\n        },\n        {\n            \"Id\": 20793,\n            \"CustomerNumber\": \"10220000380\",\n            \"Email\": \"test45tt@dcbank.ca\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Son\",\n            \"BirthDate\": \"1974-03-08T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"22556662\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20794,\n            \"CustomerNumber\": \"10220000381\",\n            \"Email\": \"bahadir1@dcbank.ca\",\n            \"FirstName\": \"roberta\",\n            \"MiddleName\": null,\n            \"LastName\": \"carlos\",\n            \"BirthDate\": \"1969-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"12414214\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20795,\n            \"CustomerNumber\": \"10220000382\",\n            \"Email\": \"ssstest@dcb.ca\",\n            \"FirstName\": \"Mesut\",\n            \"MiddleName\": null,\n            \"LastName\": \"Ozil\",\n            \"BirthDate\": \"1984-02-09T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"15555658963\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20796,\n            \"CustomerNumber\": \"10220000383\",\n            \"Email\": \"sdadets@ssdsa.ca\",\n            \"FirstName\": \"Alex\",\n            \"MiddleName\": null,\n            \"LastName\": \"Souze\",\n            \"BirthDate\": \"1993-06-16T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"1233265\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 150,\n            \"SecurityAmount\": 150\n        },\n        {\n            \"Id\": 20797,\n            \"CustomerNumber\": \"10220000384\",\n            \"Email\": \"tesasa@dcbc.ca\",\n            \"FirstName\": \"Muhittin\",\n            \"MiddleName\": null,\n            \"LastName\": \"Muhi\",\n            \"BirthDate\": \"1990-02-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"123255\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20798,\n            \"CustomerNumber\": \"10220000385\",\n            \"Email\": \"sadsadtest@dcss.cass\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Finished\",\n            \"BirthDate\": \"1980-03-12T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"123665885\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20799,\n            \"CustomerNumber\": \"10220000386\",\n            \"Email\": \"august21@gmail.com\",\n            \"FirstName\": \"August2021 Testing\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"473782828282\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 340,\n            \"SecurityAmount\": 340\n        },\n        {\n            \"Id\": 20800,\n            \"CustomerNumber\": null,\n            \"Email\": \"1daydelay@gmail.com\",\n            \"FirstName\": \"Kristie\",\n            \"MiddleName\": null,\n            \"LastName\": \"Late 1 day delay\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4773737373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 333,\n            \"SecurityAmount\": 333\n        },\n        {\n            \"Id\": 20801,\n            \"CustomerNumber\": \"10220000387\",\n            \"Email\": \"Daphnetesting1@gmail.com\",\n            \"FirstName\": \"Daphne\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing1\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737363622\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 332,\n            \"SecurityAmount\": 332\n        },\n        {\n            \"Id\": 20802,\n            \"CustomerNumber\": \"10220000390\",\n            \"Email\": \"daphnetesting2@gmail.com\",\n            \"FirstName\": \"Daphne\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing2\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"483827272\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 442,\n            \"SecurityAmount\": 442\n        },\n        {\n            \"Id\": 20803,\n            \"CustomerNumber\": \"10220000388\",\n            \"Email\": \"daphnetesting3@gmail.com\",\n            \"FirstName\": \"Daphne\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing3\",\n            \"BirthDate\": \"1999-01-14T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"929383733\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 542,\n            \"SecurityAmount\": 542\n        },\n        {\n            \"Id\": 20804,\n            \"CustomerNumber\": \"10220000389\",\n            \"Email\": \"daphnetesting4@gmail.com\",\n            \"FirstName\": \"Daphne\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing4\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"84763632\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 642,\n            \"SecurityAmount\": 642\n        },\n        {\n            \"Id\": 20805,\n            \"CustomerNumber\": \"10220000391\",\n            \"Email\": \"daphnetesting5@gmail.com\",\n            \"FirstName\": \"Daphne\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing5\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"383838383\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 742,\n            \"SecurityAmount\": 742\n        },\n        {\n            \"Id\": 20806,\n            \"CustomerNumber\": \"10220000392\",\n            \"Email\": \"bahadir433@dcbank.ca\",\n            \"FirstName\": \"ALEX DE\",\n            \"MiddleName\": null,\n            \"LastName\": \"SOUZA\",\n            \"BirthDate\": \"1980-06-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"124124\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20811,\n            \"CustomerNumber\": \"10220000394\",\n            \"Email\": \"daphne6@gmail.com\",\n            \"FirstName\": \"Daphne6\",\n            \"MiddleName\": null,\n            \"LastName\": \"Purchase Interest\",\n            \"BirthDate\": \"1999-01-05T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4748383833\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 850,\n            \"SecurityAmount\": 850\n        },\n        {\n            \"Id\": 20812,\n            \"CustomerNumber\": \"10220000403\",\n            \"Email\": \"daphne7@gmail.com\",\n            \"FirstName\": \"Daphne7\",\n            \"MiddleName\": null,\n            \"LastName\": \"Cash Advance\",\n            \"BirthDate\": \"1999-01-06T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"477363633\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 900,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20813,\n            \"CustomerNumber\": \"10220000395\",\n            \"Email\": \"daphne8@gmail.com\",\n            \"FirstName\": \"Daphne8\",\n            \"MiddleName\": null,\n            \"LastName\": \"Cancel Card testing\",\n            \"BirthDate\": \"1999-01-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"737326662\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 880,\n            \"SecurityAmount\": 880\n        },\n        {\n            \"Id\": 20814,\n            \"CustomerNumber\": null,\n            \"Email\": \"dcbankdemo@gmail.com\",\n            \"FirstName\": \"Daphne10\",\n            \"MiddleName\": null,\n            \"LastName\": \"ETED Testing\",\n            \"BirthDate\": \"1999-01-10T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"584837373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 678,\n            \"SecurityAmount\": 678\n        },\n        {\n            \"Id\": 20815,\n            \"CustomerNumber\": \"10220000396\",\n            \"Email\": \"epfinancialgk@gmail.com\",\n            \"FirstName\": \"Daphne11\",\n            \"MiddleName\": null,\n            \"LastName\": \"ETED\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3500,\n            \"SecurityAmount\": 3500\n        },\n        {\n            \"Id\": 20816,\n            \"CustomerNumber\": \"10220000399\",\n            \"Email\": \"annualtest@gmail.com\",\n            \"FirstName\": \"annual fee test\",\n            \"MiddleName\": null,\n            \"LastName\": \"annual\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"74736363\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20817,\n            \"CustomerNumber\": null,\n            \"Email\": \"tessstttt@dcbank.ca\",\n            \"FirstName\": \"Leo\",\n            \"MiddleName\": null,\n            \"LastName\": \"Messi\",\n            \"BirthDate\": \"1975-08-09T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"123655985\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20818,\n            \"CustomerNumber\": \"10220000400\",\n            \"Email\": \"testberkay@dcbank.ca\",\n            \"FirstName\": \"Berkay1\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1981-02-26T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"21321321321\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20819,\n            \"CustomerNumber\": \"10220000401\",\n            \"Email\": \"ademal2@gmail.com\",\n            \"FirstName\": \"Adem\",\n            \"MiddleName\": null,\n            \"LastName\": \"Aloglu\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737372772\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 777,\n            \"SecurityAmount\": 777\n        },\n        {\n            \"Id\": 20820,\n            \"CustomerNumber\": \"10220000404\",\n            \"Email\": \"Daphnetest12@gmail.com\",\n            \"FirstName\": \"Daphne Testing 12\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test12\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4733883822\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 440,\n            \"SecurityAmount\": 440\n        },\n        {\n            \"Id\": 20821,\n            \"CustomerNumber\": \"10220000405\",\n            \"Email\": \"daphne13@gmailc.om\",\n            \"FirstName\": \"Daphne 13\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"473737372\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 330,\n            \"SecurityAmount\": 330\n        },\n        {\n            \"Id\": 20822,\n            \"CustomerNumber\": \"10220000406\",\n            \"Email\": \"daphne14@gmail.com\",\n            \"FirstName\": \"Daphne14\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372727\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 275,\n            \"SecurityAmount\": 275\n        },\n        {\n            \"Id\": 20823,\n            \"CustomerNumber\": \"10220000407\",\n            \"Email\": \"nejojic438@alltekia.com\",\n            \"FirstName\": \"Daphne15\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4636272872\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 445,\n            \"SecurityAmount\": 445\n        },\n        {\n            \"Id\": 20824,\n            \"CustomerNumber\": \"10220000414\",\n            \"Email\": \"daphne16@gmail.com\",\n            \"FirstName\": \"Daphne16\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"5848383838\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 445,\n            \"SecurityAmount\": 445\n        },\n        {\n            \"Id\": 20825,\n            \"CustomerNumber\": \"10220000415\",\n            \"Email\": \"dalmaparzi@biyac.com\",\n            \"FirstName\": \"Daphne17\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 320,\n            \"SecurityAmount\": 320\n        },\n        {\n            \"Id\": 20826,\n            \"CustomerNumber\": \"10220000416\",\n            \"Email\": \"xp8vkk0tip@upimagine.com\",\n            \"FirstName\": \"Daphne20\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testim\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47373737\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 540\n        },\n        {\n            \"Id\": 20827,\n            \"CustomerNumber\": null,\n            \"Email\": \"peterpeter@gmail.com\",\n            \"FirstName\": \"Petertest\",\n            \"MiddleName\": null,\n            \"LastName\": \"test\",\n            \"BirthDate\": \"1989-01-11T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"483838832\",\n            \"LoanType\": \"2\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20828,\n            \"CustomerNumber\": null,\n            \"Email\": \"firstname@gmail.com\",\n            \"FirstName\": \"first name\",\n            \"MiddleName\": null,\n            \"LastName\": \"Last name\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47373737\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20829,\n            \"CustomerNumber\": \"10220000417\",\n            \"Email\": \"rainee60@btcproductkey.com\",\n            \"FirstName\": \"Daphne21\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"58483838\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 560,\n            \"SecurityAmount\": 560\n        },\n        {\n            \"Id\": 20830,\n            \"CustomerNumber\": \"10220000420\",\n            \"Email\": \"daphne23@gmail.com\",\n            \"FirstName\": \"Daphne23\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737737722\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 7,\n            \"SecurityAmount\": 7\n        },\n        {\n            \"Id\": 20831,\n            \"CustomerNumber\": \"10220000421\",\n            \"Email\": \"daphne25@gmail.com\",\n            \"FirstName\": \"Daphne25\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-10T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"574737383\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 226,\n            \"SecurityAmount\": 226\n        },\n        {\n            \"Id\": 20832,\n            \"CustomerNumber\": \"10220000422\",\n            \"Email\": \"daphne26@gmail.com\",\n            \"FirstName\": \"Daphne26\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"473772772\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 227,\n            \"SecurityAmount\": 227\n        },\n        {\n            \"Id\": 20833,\n            \"CustomerNumber\": \"10220000424\",\n            \"Email\": \"daphne24@gmail.com\",\n            \"FirstName\": \"Daphne24\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737727722\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20834,\n            \"CustomerNumber\": \"10220000429\",\n            \"Email\": \"daphne27@gmail.com\",\n            \"FirstName\": \"Daphne27\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"473888322\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 350,\n            \"SecurityAmount\": 350\n        },\n        {\n            \"Id\": 20835,\n            \"CustomerNumber\": \"10220000431\",\n            \"Email\": \"daphne28@gmail.com\",\n            \"FirstName\": \"Daphne28\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"477373737\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20836,\n            \"CustomerNumber\": null,\n            \"Email\": \"daphne30@gmail.com\",\n            \"FirstName\": \"Daphne30\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"48383883\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20837,\n            \"CustomerNumber\": \"10220000432\",\n            \"Email\": \"daphne29@gmail.com\",\n            \"FirstName\": \"Daphne29\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"484838383\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 340,\n            \"SecurityAmount\": 340\n        },\n        {\n            \"Id\": 20838,\n            \"CustomerNumber\": null,\n            \"Email\": \"fsfsfsffsf@gmail.com\",\n            \"FirstName\": \"test\",\n            \"MiddleName\": null,\n            \"LastName\": \"ww\",\n            \"BirthDate\": \"1988-10-11T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"we2323\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20839,\n            \"CustomerNumber\": null,\n            \"Email\": \"dsdsd@gmail.com\",\n            \"FirstName\": \"terr\",\n            \"MiddleName\": null,\n            \"LastName\": \"terr\",\n            \"BirthDate\": \"1995-07-06T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"dsds\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20840,\n            \"CustomerNumber\": null,\n            \"Email\": \"dssdsdss@gmail.com\",\n            \"FirstName\": \"sf\",\n            \"MiddleName\": \"sfsfs\",\n            \"LastName\": \"sfsf\",\n            \"BirthDate\": \"1994-11-17T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"fdf\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20841,\n            \"CustomerNumber\": null,\n            \"Email\": \"dsdsd11@gmail.com\",\n            \"FirstName\": \"dsfsf2\",\n            \"MiddleName\": null,\n            \"LastName\": \"sfsfs2\",\n            \"BirthDate\": \"1984-06-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"ffd\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20842,\n            \"CustomerNumber\": \"10220000433\",\n            \"Email\": \"jajoyej931@ampswipe.com\",\n            \"FirstName\": \"teste\",\n            \"MiddleName\": null,\n            \"LastName\": \"111\",\n            \"BirthDate\": \"1995-02-16T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"212\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20843,\n            \"CustomerNumber\": null,\n            \"Email\": \"daphne31@dcbank.ca\",\n            \"FirstName\": \"Daphne 31\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"473838832\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 230,\n            \"SecurityAmount\": 230\n        },\n        {\n            \"Id\": 20844,\n            \"CustomerNumber\": \"10220000434\",\n            \"Email\": \"mignekarze@biyac.com\",\n            \"FirstName\": \"Daphne35\",\n            \"MiddleName\": \"Testing\",\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"73437373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 540\n        },\n        {\n            \"Id\": 20845,\n            \"CustomerNumber\": null,\n            \"Email\": \"mehmet.polat1@dcbank.ca\",\n            \"FirstName\": \"ert\",\n            \"MiddleName\": \"er\",\n            \"LastName\": \"err\",\n            \"BirthDate\": \"1994-06-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"ee\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20846,\n            \"CustomerNumber\": null,\n            \"Email\": \"mwwwww2h@gmail.com\",\n            \"FirstName\": \"ert\",\n            \"MiddleName\": null,\n            \"LastName\": \"sa\",\n            \"BirthDate\": \"1994-06-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"sd\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20847,\n            \"CustomerNumber\": null,\n            \"Email\": \"sdmsmdsmd@gmail.com\",\n            \"FirstName\": \"hnh\",\n            \"MiddleName\": null,\n            \"LastName\": \"hhgg\",\n            \"BirthDate\": \"1983-10-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"h656\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20848,\n            \"CustomerNumber\": null,\n            \"Email\": \"sffsfsfssfs@gmail.com\",\n            \"FirstName\": \"dada\",\n            \"MiddleName\": null,\n            \"LastName\": \"adada\",\n            \"BirthDate\": \"1984-06-05T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"dada\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20849,\n            \"CustomerNumber\": null,\n            \"Email\": \"sddsdseeee@gmail.com\",\n            \"FirstName\": \"sdsdsd\",\n            \"MiddleName\": null,\n            \"LastName\": \"sdsdsdsds\",\n            \"BirthDate\": \"1974-06-05T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"dsd\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20850,\n            \"CustomerNumber\": null,\n            \"Email\": \"dadadada@gmail.com\",\n            \"FirstName\": \"ads\",\n            \"MiddleName\": null,\n            \"LastName\": \"sds\",\n            \"BirthDate\": \"1994-06-07T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"sdsd\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20851,\n            \"CustomerNumber\": \"10220000435\",\n            \"Email\": \"wigevig757@ampswipe.com\",\n            \"FirstName\": \"Daphne36\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"473736362\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 560,\n            \"SecurityAmount\": 560\n        },\n        {\n            \"Id\": 20852,\n            \"CustomerNumber\": \"10220000436\",\n            \"Email\": \"e3631872bc@emailnax.com\",\n            \"FirstName\": \"Daphne40\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737772322\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 600,\n            \"SecurityAmount\": 600\n        },\n        {\n            \"Id\": 20853,\n            \"CustomerNumber\": \"10220000437\",\n            \"Email\": \"xelojek528@ansomesa.com\",\n            \"FirstName\": \"Daphne45\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737377272\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 330,\n            \"SecurityAmount\": 330\n        },\n        {\n            \"Id\": 20854,\n            \"CustomerNumber\": \"10220000439\",\n            \"Email\": \"genow16156@bushdown.com\",\n            \"FirstName\": \"Daphne46\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-12-31T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"474737733\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 400\n        },\n        {\n            \"Id\": 20855,\n            \"CustomerNumber\": \"10220000440\",\n            \"Email\": \"daphne47@gmail.com\",\n            \"FirstName\": \"Daphne47\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1979-01-30T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"23423423\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 400\n        },\n        {\n            \"Id\": 20856,\n            \"CustomerNumber\": \"10220000443\",\n            \"Email\": \"jakim50012@bushdown.com\",\n            \"FirstName\": \"Daphne48\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"48383838\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20857,\n            \"CustomerNumber\": null,\n            \"Email\": \"daphne50@gmail.com\",\n            \"FirstName\": \"Daphne50\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372727\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20858,\n            \"CustomerNumber\": null,\n            \"Email\": \"jogana2535@mtlcz.com\",\n            \"FirstName\": \"malitest2\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"malitest2\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"111111\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20859,\n            \"CustomerNumber\": null,\n            \"Email\": \"ertuawogv@northsixty.com\",\n            \"FirstName\": \"malitest3\",\n            \"MiddleName\": null,\n            \"LastName\": \"malitest3\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"11111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20860,\n            \"CustomerNumber\": \"10220000445\",\n            \"Email\": \"test@dcbank.ca\",\n            \"FirstName\": \"Test45\",\n            \"MiddleName\": null,\n            \"LastName\": \"Berkay\",\n            \"BirthDate\": \"1974-06-05T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"12333365555\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20862,\n            \"CustomerNumber\": null,\n            \"Email\": \"rose@epfinancial.ca\",\n            \"FirstName\": \"Daphne501\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372727\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20863,\n            \"CustomerNumber\": null,\n            \"Email\": \"gonohilanem@vintomaper.com\",\n            \"FirstName\": \"Mali2\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali2\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"1111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20864,\n            \"CustomerNumber\": null,\n            \"Email\": \"nordigirta@biyac.com\",\n            \"FirstName\": \"Mali3\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali3\",\n            \"BirthDate\": \"1999-05-02T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"1111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20865,\n            \"CustomerNumber\": null,\n            \"Email\": \"cabani@musiccode.me\",\n            \"FirstName\": \"Mali5\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali5\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"O\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"11111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20867,\n            \"CustomerNumber\": null,\n            \"Email\": \"roserosie@gmail.com\",\n            \"FirstName\": \"Rose\",\n            \"MiddleName\": null,\n            \"LastName\": \"Rosie\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"7894563216547\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20708,\n            \"CustomerNumber\": null,\n            \"Email\": \"test1test@dcbank.ca\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Tessst\",\n            \"BirthDate\": \"1987-07-04T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20723,\n            \"CustomerNumber\": \"10220000363\",\n            \"Email\": \"test45berkay@dcbank.ca\",\n            \"FirstName\": \"Test\",\n            \"MiddleName\": null,\n            \"LastName\": \"Berkay\",\n            \"BirthDate\": \"1997-06-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"152365888\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"W\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20727,\n            \"CustomerNumber\": null,\n            \"Email\": \"bamoyoy184@ovooovo.com\",\n            \"FirstName\": \"MAli\",\n            \"MiddleName\": null,\n            \"LastName\": \"Seyhan\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C019\",\n            \"IdentityNumber\": \"123214235423654376\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20728,\n            \"CustomerNumber\": \"10220000346\",\n            \"Email\": \"test1@gmail.com\",\n            \"FirstName\": \"Test1\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test1\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"3828277272\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3500,\n            \"SecurityAmount\": 3500\n        },\n        {\n            \"Id\": 20730,\n            \"CustomerNumber\": \"10220000349\",\n            \"Email\": \"testgulcin1234@gmail.com\",\n            \"FirstName\": \"testgulcin1234\",\n            \"MiddleName\": null,\n            \"LastName\": \"testgulcin1234\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"372727711\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 400\n        },\n        {\n            \"Id\": 20754,\n            \"CustomerNumber\": \"10220000352\",\n            \"Email\": \"money1@gmail.com\",\n            \"FirstName\": \"Money1\",\n            \"MiddleName\": null,\n            \"LastName\": \"Money1\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"4737282882\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 544,\n            \"SecurityAmount\": 544\n        },\n        {\n            \"Id\": 20755,\n            \"CustomerNumber\": \"10220000353\",\n            \"Email\": \"security@gmail.com\",\n            \"FirstName\": \"Security\",\n            \"MiddleName\": null,\n            \"LastName\": \"Security\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"463727722\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20764,\n            \"CustomerNumber\": null,\n            \"Email\": \"mehmet@dcbank.ca\",\n            \"FirstName\": \"mp\",\n            \"MiddleName\": null,\n            \"LastName\": \"mp1\",\n            \"BirthDate\": \"1995-06-06T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"eew\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100.9,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20765,\n            \"CustomerNumber\": null,\n            \"Email\": \"kifib13568@activesniper.com\",\n            \"FirstName\": \"Fn \",\n            \"MiddleName\": \"Mn\",\n            \"LastName\": \"Ln\",\n            \"BirthDate\": \"1989-02-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"9\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20869,\n            \"CustomerNumber\": null,\n            \"Email\": \"koydepistu@biyac.com\",\n            \"FirstName\": \"Mali6\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali6\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"1111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3,\n            \"SecurityAmount\": 2\n        },\n        {\n            \"Id\": 20870,\n            \"CustomerNumber\": null,\n            \"Email\": \"3llt5cse8v@coffeetimer24.com\",\n            \"FirstName\": \"MAli7\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali7\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 2,\n            \"SecurityAmount\": 2\n        },\n        {\n            \"Id\": 20871,\n            \"CustomerNumber\": \"10220000448\",\n            \"Email\": \"daphne51@gmail.com\",\n            \"FirstName\": \"Daphne51\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"46363636\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 550,\n            \"SecurityAmount\": 550\n        },\n        {\n            \"Id\": 20872,\n            \"CustomerNumber\": null,\n            \"Email\": \"jifsuu@mailpoof.com\",\n            \"FirstName\": \"MAli7\",\n            \"MiddleName\": null,\n            \"LastName\": \"MAli7\",\n            \"BirthDate\": \"1999-01-10T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"1111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 2,\n            \"SecurityAmount\": 2\n        },\n        {\n            \"Id\": 20873,\n            \"CustomerNumber\": null,\n            \"Email\": \"sfsfsfsfsfs@gmail.com\",\n            \"FirstName\": \"mhk\",\n            \"MiddleName\": null,\n            \"LastName\": \"32\",\n            \"BirthDate\": \"1974-06-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"e6546\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 1\n        },\n        {\n            \"Id\": 20874,\n            \"CustomerNumber\": null,\n            \"Email\": \"czczczcz@gmail.com\",\n            \"FirstName\": \"dfsfs\",\n            \"MiddleName\": null,\n            \"LastName\": \"fs\",\n            \"BirthDate\": \"1990-02-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"xcxcxr4\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 9,\n            \"SecurityAmount\": 8\n        },\n        {\n            \"Id\": 20875,\n            \"CustomerNumber\": \"10220000449\",\n            \"Email\": \"daphne52@gmail.com\",\n            \"FirstName\": \"Daphne52\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"337737373\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 550,\n            \"SecurityAmount\": 550\n        },\n        {\n            \"Id\": 20876,\n            \"CustomerNumber\": \"10220000706\",\n            \"Email\": \"maliseyhan3@gmail.com\",\n            \"FirstName\": \"MAli8\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali8\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"11111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 300,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20877,\n            \"CustomerNumber\": null,\n            \"Email\": \"poyome4575@shensufu.com\",\n            \"FirstName\": \"Mali9\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali9\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"1111\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20878,\n            \"CustomerNumber\": null,\n            \"Email\": \"cicexu@acrossgracealley.com\",\n            \"FirstName\": \"Mali10\",\n            \"MiddleName\": null,\n            \"LastName\": \"Mali10\",\n            \"BirthDate\": \"1999-01-04T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C020\",\n            \"IdentityNumber\": \"1111\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20879,\n            \"CustomerNumber\": null,\n            \"Email\": \"daphne61@gmail.com\",\n            \"FirstName\": \"Daphne61\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372727\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20880,\n            \"CustomerNumber\": null,\n            \"Email\": \"daphne63@gmail.com\",\n            \"FirstName\": \"Daphne63\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47372727\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20881,\n            \"CustomerNumber\": \"10220000456\",\n            \"Email\": \"Patrick@epfinancial.ca\",\n            \"FirstName\": \"Patrick\",\n            \"MiddleName\": null,\n            \"LastName\": \"Campbell\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"3262525222\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1250,\n            \"SecurityAmount\": 1250\n        },\n        {\n            \"Id\": 20882,\n            \"CustomerNumber\": \"10220000463\",\n            \"Email\": \"patrick2@gmail.com\",\n            \"FirstName\": \"Patrick2\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"2000-01-02T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"376736262\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20883,\n            \"CustomerNumber\": \"10220000473\",\n            \"Email\": \"krabab100@gmail.com\",\n            \"FirstName\": \"Daphne66\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"6544445666\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20884,\n            \"CustomerNumber\": \"10220000474\",\n            \"Email\": \"daphne67@gmail.com\",\n            \"FirstName\": \"Daphne67\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-08T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"5466666\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20885,\n            \"CustomerNumber\": null,\n            \"Email\": \"patrictest3@gmail.com\",\n            \"FirstName\": \"Patrick\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test 3\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"47373273\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20886,\n            \"CustomerNumber\": \"10220000542\",\n            \"Email\": \"daphne77@gmail.com\",\n            \"FirstName\": \"Daphne77\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-02T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"55666666\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 1200,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20890,\n            \"CustomerNumber\": null,\n            \"Email\": \"seandemo@dcbank.ca\",\n            \"FirstName\": \"Sean\",\n            \"MiddleName\": null,\n            \"LastName\": \"Gallacher\",\n            \"BirthDate\": \"1990-08-11T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"14315\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20949,\n            \"CustomerNumber\": null,\n            \"Email\": \"GREENAPPLE@DCBANK.CA\",\n            \"FirstName\": \"GREEN\",\n            \"MiddleName\": null,\n            \"LastName\": \"APPLE\",\n            \"BirthDate\": \"1999-06-08T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"SA9G89849\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 50,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20950,\n            \"CustomerNumber\": null,\n            \"Email\": \"REDDOOR@DCBANK.CA\",\n            \"FirstName\": \"RED\",\n            \"MiddleName\": null,\n            \"LastName\": \"DOOR\",\n            \"BirthDate\": \"1998-12-27T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"ASG9AG88\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 51,\n            \"SecurityAmount\": 51\n        },\n        {\n            \"Id\": 20951,\n            \"CustomerNumber\": \"10220000688\",\n            \"Email\": \"PINKDOOR@DCBANK.CA\",\n            \"FirstName\": \"PINK\",\n            \"MiddleName\": null,\n            \"LastName\": \"DOOR\",\n            \"BirthDate\": \"1983-02-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"ASG98G94G9\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 51,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20956,\n            \"CustomerNumber\": \"10220000725\",\n            \"Email\": \"daphne121@gmail.com\",\n            \"FirstName\": \"Daphne121\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1989-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"3838272772\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20899,\n            \"CustomerNumber\": \"10220000637\",\n            \"Email\": \"purplepotato@dcbank.ca\",\n            \"FirstName\": \"PURPLE \",\n            \"MiddleName\": null,\n            \"LastName\": \"POTATO\",\n            \"BirthDate\": \"1960-02-02T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"989G9AGON\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 400\n        },\n        {\n            \"Id\": 20900,\n            \"CustomerNumber\": null,\n            \"Email\": \"PINKROSE@DCBANK.CA\",\n            \"FirstName\": \"PINK \",\n            \"MiddleName\": null,\n            \"LastName\": \"ROSE\",\n            \"BirthDate\": \"1950-02-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"AGAOIGO6596\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20901,\n            \"CustomerNumber\": \"10220000638\",\n            \"Email\": \"daphne80@gmail.com\",\n            \"FirstName\": \"Daphne80\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-01T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"65456688\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 3000\n        },\n        {\n            \"Id\": 20902,\n            \"CustomerNumber\": \"10220000639\",\n            \"Email\": \"daphne81@gmail.com\",\n            \"FirstName\": \"Daphne81\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-06T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"654566445\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3500,\n            \"SecurityAmount\": 3500\n        },\n        {\n            \"Id\": 20906,\n            \"CustomerNumber\": \"10220000640\",\n            \"Email\": \"daphne82@gmail.com\",\n            \"FirstName\": \"Daphne82\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1999-01-11T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"65466545\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 4000,\n            \"SecurityAmount\": 4000\n        },\n        {\n            \"Id\": 20912,\n            \"CustomerNumber\": \"10220000641\",\n            \"Email\": \"GREY@DCBANK.CA\",\n            \"FirstName\": \"GREY\",\n            \"MiddleName\": null,\n            \"LastName\": \"SKIES\",\n            \"BirthDate\": \"1950-12-15T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"665G98SG9\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20915,\n            \"CustomerNumber\": null,\n            \"Email\": \"bahadrhllyalcn@gmail.com\",\n            \"FirstName\": \"Bahadır Halil\",\n            \"MiddleName\": null,\n            \"LastName\": \"Yalçın\",\n            \"BirthDate\": \"1979-06-05T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"111111111\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20916,\n            \"CustomerNumber\": null,\n            \"Email\": \"bahadrhllyalcn@dcbank.ca\",\n            \"FirstName\": \"test canada ver\",\n            \"MiddleName\": null,\n            \"LastName\": \"verification\",\n            \"BirthDate\": \"1989-01-03T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"111111111\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20917,\n            \"CustomerNumber\": null,\n            \"Email\": \"verifybahadr@dcbank.ca\",\n            \"FirstName\": \"test verification\",\n            \"MiddleName\": null,\n            \"LastName\": \"test1\",\n            \"BirthDate\": \"1970-03-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"12312414142412412\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"SM\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 111,\n            \"SecurityAmount\": 111\n        },\n        {\n            \"Id\": 20919,\n            \"CustomerNumber\": null,\n            \"Email\": \"dskks@dcbank.ca\",\n            \"FirstName\": \"dsds\",\n            \"MiddleName\": null,\n            \"LastName\": \"sdsds\",\n            \"BirthDate\": \"1985-07-11T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"11111111111\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 1,\n            \"RequestAmount\": 1,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20939,\n            \"CustomerNumber\": null,\n            \"Email\": \"DCBTRAINING@DCBANK.CA\",\n            \"FirstName\": \"DCBTRAINING \",\n            \"MiddleName\": null,\n            \"LastName\": \"APPLICANT\",\n            \"BirthDate\": \"1966-08-13T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"SGA98498\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 400,\n            \"SecurityAmount\": 400\n        },\n        {\n            \"Id\": 20940,\n            \"CustomerNumber\": null,\n            \"Email\": \"DCBTRAIN4@DCBANK.CA\",\n            \"FirstName\": \"DCBTRAIN\",\n            \"MiddleName\": null,\n            \"LastName\": \"DEMO2\",\n            \"BirthDate\": \"1962-03-31T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"989G8G498\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"SM\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 200,\n            \"SecurityAmount\": 200\n        },\n        {\n            \"Id\": 20941,\n            \"CustomerNumber\": \"10220000681\",\n            \"Email\": \"DCBTRAIN3@DCBANK.CA\",\n            \"FirstName\": \"DCBTRAIN2\",\n            \"MiddleName\": null,\n            \"LastName\": \"DEMO\",\n            \"BirthDate\": \"1971-03-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"ASGA9G8984\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 20943,\n            \"CustomerNumber\": null,\n            \"Email\": \"DEMO100@DCBANK.CA\",\n            \"FirstName\": \"DCBTRAIN\",\n            \"MiddleName\": null,\n            \"LastName\": \"DEMO100\",\n            \"BirthDate\": \"1950-12-16T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"SG9894\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 100,\n            \"SecurityAmount\": 100\n        },\n        {\n            \"Id\": 21021,\n            \"CustomerNumber\": null,\n            \"Email\": \"rmcdonald@test.com\",\n            \"FirstName\": \"Ronald\",\n            \"MiddleName\": null,\n            \"LastName\": \"McDonald\",\n            \"BirthDate\": \"1999-02-02T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"123654-9\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 21027,\n            \"CustomerNumber\": null,\n            \"Email\": \"malitestapi@dcbank.ca\",\n            \"FirstName\": \"Malitest\",\n            \"MiddleName\": null,\n            \"LastName\": \"Malitest\",\n            \"BirthDate\": \"1999-01-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": null,\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"123456789\",\n            \"LoanType\": null,\n            \"LoanPurpose\": null,\n            \"PaymentFrequency\": null,\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 0,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20868,\n            \"CustomerNumber\": \"10220000447\",\n            \"Email\": \"daphne499@gmail.com\",\n            \"FirstName\": \"Daphne49\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1996-03-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"93\",\n            \"MobilePhoneNumber\": \"5234567821\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 540,\n            \"SecurityAmount\": 540\n        },\n        {\n            \"Id\": 20651,\n            \"CustomerNumber\": \"10220000305\",\n            \"Email\": \"asli@dcbank.ca\",\n            \"FirstName\": \"Asli\",\n            \"MiddleName\": null,\n            \"LastName\": \"Enver\",\n            \"BirthDate\": \"1987-10-29T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"93\",\n            \"MobilePhoneNumber\": \"5335475666\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"772277272\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20647,\n            \"CustomerNumber\": \"10220000299\",\n            \"Email\": \"hakan.calhanoglu@test.ca\",\n            \"FirstName\": \"Hakan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Calhanoglu\",\n            \"BirthDate\": \"1987-10-29T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"93\",\n            \"MobilePhoneNumber\": \"5335475666\",\n            \"IdentityType\": \"TL\",\n            \"IdentityNumber\": \"5466666\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 180,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20615,\n            \"CustomerNumber\": \"10220000252\",\n            \"Email\": \"merih.demiral@dcbank.ca\",\n            \"FirstName\": \"Merih\",\n            \"MiddleName\": \"Qwe\",\n            \"LastName\": \"Demi\",\n            \"BirthDate\": \"1997-09-16T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"93\",\n            \"MobilePhoneNumber\": \"5678901784\",\n            \"IdentityType\": \"C001\",\n            \"IdentityNumber\": \"5673123456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 130,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20600,\n            \"CustomerNumber\": \"10220000243\",\n            \"Email\": \"susan@dcbank.ca\",\n            \"FirstName\": \"Susan\",\n            \"MiddleName\": null,\n            \"LastName\": \"Elias\",\n            \"BirthDate\": \"1994-02-02T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032939569\",\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"11111111111111111111\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 500,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20625,\n            \"CustomerNumber\": \"10220000260\",\n            \"Email\": \"kristie.sinclair99@gmail.com\",\n            \"FirstName\": \"Kristie\",\n            \"MiddleName\": null,\n            \"LastName\": \"Sinclair\",\n            \"BirthDate\": \"1976-09-11T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": null,\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"123456\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 50,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20678,\n            \"CustomerNumber\": \"10220000321\",\n            \"Email\": \"testhilal32@gmail.com\",\n            \"FirstName\": \"testhilal32\",\n            \"MiddleName\": null,\n            \"LastName\": \"test32\",\n            \"BirthDate\": \"1990-06-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"3039677888\",\n            \"IdentityType\": \"ID008\",\n            \"IdentityNumber\": \"15663\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 3000,\n            \"SecurityAmount\": 3000\n        },\n        {\n            \"Id\": 20707,\n            \"CustomerNumber\": null,\n            \"Email\": \"dt@test.com\",\n            \"FirstName\": \"Dual\",\n            \"MiddleName\": null,\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1965-07-15T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032569874\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 8000,\n            \"SecurityAmount\": 300\n        },\n        {\n            \"Id\": 20700,\n            \"CustomerNumber\": null,\n            \"Email\": \"lemon_grass@test.com\",\n            \"FirstName\": \"Lemon\",\n            \"MiddleName\": null,\n            \"LastName\": \"Grass\",\n            \"BirthDate\": \"1973-11-30T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032569871\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"2313-69\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20705,\n            \"CustomerNumber\": null,\n            \"Email\": \"dbox@test.com\",\n            \"FirstName\": \"Doggy\",\n            \"MiddleName\": null,\n            \"LastName\": \"Box\",\n            \"BirthDate\": \"1974-12-26T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4035698785\",\n            \"IdentityType\": \"ID008\",\n            \"IdentityNumber\": \"12356333A-98\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"10\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20693,\n            \"CustomerNumber\": null,\n            \"Email\": \"cactus@test.com\",\n            \"FirstName\": \"Cactus\",\n            \"MiddleName\": null,\n            \"LastName\": \"Club\",\n            \"BirthDate\": \"1988-06-22T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"2056986321\",\n            \"IdentityType\": \"ID010\",\n            \"IdentityNumber\": \"34556-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"0\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 35000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20694,\n            \"CustomerNumber\": null,\n            \"Email\": \"michael.saltykov@dcbank.ca\",\n            \"FirstName\": \"Joe\",\n            \"MiddleName\": null,\n            \"LastName\": \"Original\",\n            \"BirthDate\": \"1975-07-24T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4035628971\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 500\n        },\n        {\n            \"Id\": 20654,\n            \"CustomerNumber\": \"10220000306\",\n            \"Email\": \"bayramgelir@gmail.com\",\n            \"FirstName\": \"Bayram\",\n            \"MiddleName\": null,\n            \"LastName\": \"Balaban\",\n            \"BirthDate\": \"1979-01-04T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5545654466\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": \"string\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 420,\n            \"SecurityAmount\": 420\n        },\n        {\n            \"Id\": 20580,\n            \"CustomerNumber\": \"10220000228\",\n            \"Email\": \"gulcinkuv@gmail.com\",\n            \"FirstName\": \"Tester\",\n            \"MiddleName\": null,\n            \"LastName\": \"Userino\",\n            \"BirthDate\": \"1970-07-31T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"7809054444\",\n            \"IdentityType\": \"C014\",\n            \"IdentityNumber\": \"qa123467\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"12\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 10000\n        },\n        {\n            \"Id\": 20807,\n            \"CustomerNumber\": null,\n            \"Email\": \"asmoke@test.com\",\n            \"FirstName\": \"Andy\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Smoke\",\n            \"BirthDate\": \"1985-02-16T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4039087012\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20808,\n            \"CustomerNumber\": null,\n            \"Email\": \"mtoast@test.com\",\n            \"FirstName\": \"Michael\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Toast\",\n            \"BirthDate\": \"1977-02-25T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874856709\",\n            \"IdentityType\": \"ID010\",\n            \"IdentityNumber\": \"99963\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20809,\n            \"CustomerNumber\": null,\n            \"Email\": \"asmoker@test.com\",\n            \"FirstName\": \"Andrew\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Smoker\",\n            \"BirthDate\": \"1986-03-31T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4039809799\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20810,\n            \"CustomerNumber\": null,\n            \"Email\": \"ptest@test.com\",\n            \"FirstName\": \"Penny\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1990-09-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874560908\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20948,\n            \"CustomerNumber\": null,\n            \"Email\": \"REDBARN@DCBANK.CA\",\n            \"FirstName\": \"RED\",\n            \"MiddleName\": null,\n            \"LastName\": \"BARN\",\n            \"BirthDate\": \"1976-08-07T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4035554448\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"6598948\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"8\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 50,\n            \"SecurityAmount\": 50\n        },\n        {\n            \"Id\": 20960,\n            \"CustomerNumber\": null,\n            \"Email\": \"dduck@test.com\",\n            \"FirstName\": \"Donald\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Duck\",\n            \"BirthDate\": \"1986-03-31T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4039809799\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20962,\n            \"CustomerNumber\": null,\n            \"Email\": \"bbons@test.com\",\n            \"FirstName\": \"Billy\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bons\",\n            \"BirthDate\": \"1977-02-25T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874856709\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"123654-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20963,\n            \"CustomerNumber\": null,\n            \"Email\": \"bkreese@test.com\",\n            \"FirstName\": \"Bonnie\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Kreese\",\n            \"BirthDate\": \"1990-09-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874560908\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20964,\n            \"CustomerNumber\": null,\n            \"Email\": \"jb@test.com\",\n            \"FirstName\": \"Julie\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Been\",\n            \"BirthDate\": \"1990-09-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874560908\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20969,\n            \"CustomerNumber\": null,\n            \"Email\": \"rmarciano@test.com\",\n            \"FirstName\": \"Rocky\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Marciano\",\n            \"BirthDate\": \"1977-02-25T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874856709\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20970,\n            \"CustomerNumber\": null,\n            \"Email\": \"sjilly@test.com\",\n            \"FirstName\": \"Jilly\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Stewart\",\n            \"BirthDate\": \"1990-09-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"7803256987\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20971,\n            \"CustomerNumber\": null,\n            \"Email\": \"js@test.com\",\n            \"FirstName\": \"Jake\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Sanders\",\n            \"BirthDate\": \"1965-03-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4035214569\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20972,\n            \"CustomerNumber\": null,\n            \"Email\": \"rroy@test.com\",\n            \"FirstName\": \"Rob\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Roy\",\n            \"BirthDate\": \"1977-02-25T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874856709\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20973,\n            \"CustomerNumber\": null,\n            \"Email\": \"ismith@test.com\",\n            \"FirstName\": \"Iren\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Smith\",\n            \"BirthDate\": \"1990-09-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"7803256987\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20974,\n            \"CustomerNumber\": null,\n            \"Email\": \"jbobers@test.com\",\n            \"FirstName\": \"John\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bobers\",\n            \"BirthDate\": \"1965-03-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4035214569\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20978,\n            \"CustomerNumber\": null,\n            \"Email\": \"mystic.ridge@test.com\",\n            \"FirstName\": \"Mystic\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ridge\",\n            \"BirthDate\": \"1971-12-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032569898\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20979,\n            \"CustomerNumber\": null,\n            \"Email\": \"val.gardena@test.com\",\n            \"FirstName\": \"Val\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gardena\",\n            \"BirthDate\": \"1980-11-21T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874596365\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20980,\n            \"CustomerNumber\": null,\n            \"Email\": \"ag@test.com\",\n            \"FirstName\": \"Aspen\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Glen\",\n            \"BirthDate\": \"1965-03-03T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874125689\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20992,\n            \"CustomerNumber\": null,\n            \"Email\": \"coach.hill@test.com\",\n            \"FirstName\": \"Coach\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Hill\",\n            \"BirthDate\": \"1969-05-15T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032507896\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20993,\n            \"CustomerNumber\": null,\n            \"Email\": \"m.mews@test.com\",\n            \"FirstName\": \"Melody\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Mews\",\n            \"BirthDate\": \"1999-12-23T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"7802569898\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20994,\n            \"CustomerNumber\": null,\n            \"Email\": \"a.ridge@test.com\",\n            \"FirstName\": \"Aspen\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ridge\",\n            \"BirthDate\": \"2000-11-16T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"2504865989\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20995,\n            \"CustomerNumber\": null,\n            \"Email\": \"cr@test.com\",\n            \"FirstName\": \"Cougar\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ridge\",\n            \"BirthDate\": \"1970-05-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032568978\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20996,\n            \"CustomerNumber\": null,\n            \"Email\": \"s.morena@test.com\",\n            \"FirstName\": \"Sierra\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Morena\",\n            \"BirthDate\": \"2000-10-10T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874512356\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20997,\n            \"CustomerNumber\": null,\n            \"Email\": \"west.park@test.com\",\n            \"FirstName\": \"West\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Park\",\n            \"BirthDate\": \"1988-04-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"2504879632\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20998,\n            \"CustomerNumber\": null,\n            \"Email\": \"cway@test.com\",\n            \"FirstName\": \"Cortina\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Way\",\n            \"BirthDate\": \"1969-09-26T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20999,\n            \"CustomerNumber\": null,\n            \"Email\": \"mickey.mouse@disney.com\",\n            \"FirstName\": \"Mickey\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Mouse\",\n            \"BirthDate\": \"1969-09-26T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21000,\n            \"CustomerNumber\": null,\n            \"Email\": \"s.hill@test.com\",\n            \"FirstName\": \"Signal\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Hill\",\n            \"BirthDate\": \"1972-05-06T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032568978\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21001,\n            \"CustomerNumber\": null,\n            \"Email\": \"k.lake@test.com\",\n            \"FirstName\": \"Kenzie\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Lake\",\n            \"BirthDate\": \"1999-12-22T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874512356\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 21002,\n            \"CustomerNumber\": null,\n            \"Email\": \"e.park@test.com\",\n            \"FirstName\": \"Elgin\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Park\",\n            \"BirthDate\": \"1988-04-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"2504879632\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 21003,\n            \"CustomerNumber\": null,\n            \"Email\": \"bgum@test.com\",\n            \"FirstName\": \"Bubble\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gum\",\n            \"BirthDate\": \"1969-09-26T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21005,\n            \"CustomerNumber\": null,\n            \"Email\": \"cg@test.com\",\n            \"FirstName\": \"Chuck\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gum\",\n            \"BirthDate\": \"1969-09-26T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21006,\n            \"CustomerNumber\": null,\n            \"Email\": \"cn@test.com\",\n            \"FirstName\": \"Chuck\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Norris\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21007,\n            \"CustomerNumber\": null,\n            \"Email\": \"mn@test.com\",\n            \"FirstName\": \"Mike\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Norris\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21008,\n            \"CustomerNumber\": null,\n            \"Email\": \"ter@test.com\",\n            \"FirstName\": \"Mike\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21009,\n            \"CustomerNumber\": null,\n            \"Email\": \"rocky.ridge@test.com\",\n            \"FirstName\": \"Rocky\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ridge\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21010,\n            \"CustomerNumber\": null,\n            \"Email\": \"m.toaster@test.com\",\n            \"FirstName\": \"Ron\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Toaster\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21011,\n            \"CustomerNumber\": null,\n            \"Email\": \"tres@test.com\",\n            \"FirstName\": \"Ronny\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Treser\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21012,\n            \"CustomerNumber\": null,\n            \"Email\": \"mscholz@test.de\",\n            \"FirstName\": \"Martin\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Scholz\",\n            \"BirthDate\": \"1970-05-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032568978\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21013,\n            \"CustomerNumber\": null,\n            \"Email\": \"s.miroa@test.com\",\n            \"FirstName\": \"Sandra\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Miro\",\n            \"BirthDate\": \"2000-10-10T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874512356\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 21014,\n            \"CustomerNumber\": null,\n            \"Email\": \"lcerveza@test.com\",\n            \"FirstName\": \"Lukas\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Cerveza\",\n            \"BirthDate\": \"1988-04-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"2504879632\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 21015,\n            \"CustomerNumber\": null,\n            \"Email\": \"rpov@test.com\",\n            \"FirstName\": \"Ricky\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Povery\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21016,\n            \"CustomerNumber\": null,\n            \"Email\": \"uattest@test.com\",\n            \"FirstName\": \"UAT\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21017,\n            \"CustomerNumber\": null,\n            \"Email\": \"uat2_tester@test.com\",\n            \"FirstName\": \"UAT_2\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Test\",\n            \"BirthDate\": \"1955-10-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874569851\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21018,\n            \"CustomerNumber\": null,\n            \"Email\": \"pdemo@test.com\",\n            \"FirstName\": \"Product\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Demo\",\n            \"BirthDate\": \"1970-05-12T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032568978\",\n            \"IdentityType\": \"ID000\",\n            \"IdentityNumber\": \"564987-01\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 21019,\n            \"CustomerNumber\": null,\n            \"Email\": \"geye@test.com\",\n            \"FirstName\": \"Golden\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Eye\",\n            \"BirthDate\": \"2000-10-10T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874512356\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 21020,\n            \"CustomerNumber\": null,\n            \"Email\": \"bspark@test.com\",\n            \"FirstName\": \"Bright\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Spark\",\n            \"BirthDate\": \"1988-04-01T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"2504879632\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20894,\n            \"CustomerNumber\": \"10220000634\",\n            \"Email\": \"daphne78@dcbank.ca\",\n            \"FirstName\": \"Daphne78\",\n            \"MiddleName\": null,\n            \"LastName\": \"Testing\",\n            \"BirthDate\": \"1996-03-09T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5234567821\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 5000,\n            \"SecurityAmount\": 5000\n        },\n        {\n            \"Id\": 20768,\n            \"CustomerNumber\": null,\n            \"Email\": \"bdisplay@test.com\",\n            \"FirstName\": \"Bank\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Display\",\n            \"BirthDate\": \"1977-09-27T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5873652569\",\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"5659866\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 25000,\n            \"SecurityAmount\": 1000\n        },\n        {\n            \"Id\": 20769,\n            \"CustomerNumber\": null,\n            \"Email\": \"bperson@test.com\",\n            \"FirstName\": \"InPerson\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bulk\",\n            \"BirthDate\": \"1988-03-25T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4036598987\",\n            \"IdentityType\": \"ID010\",\n            \"IdentityNumber\": \"32659841\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20770,\n            \"CustomerNumber\": null,\n            \"Email\": \"bcf@test.com\",\n            \"FirstName\": \"Credit File\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bulk\",\n            \"BirthDate\": \"1985-02-16T00:00:00\",\n            \"Gender\": \"F\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5874513659\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 1200\n        },\n        {\n            \"Id\": 20771,\n            \"CustomerNumber\": null,\n            \"Email\": \"bdual@test.com\",\n            \"FirstName\": \"Dual\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bulk\",\n            \"BirthDate\": \"1990-09-09T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032526515\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 900\n        },\n        {\n            \"Id\": 20772,\n            \"CustomerNumber\": null,\n            \"Email\": \"ret@test.com\",\n            \"FirstName\": \"Retired\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Person\",\n            \"BirthDate\": \"1945-02-16T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032879696\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 20000,\n            \"SecurityAmount\": 2500\n        },\n        {\n            \"Id\": 20773,\n            \"CustomerNumber\": \"10220000361\",\n            \"Email\": \"gov@test.com\",\n            \"FirstName\": \"Goverm\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bulk\",\n            \"BirthDate\": \"1977-02-05T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"5871456236\",\n            \"IdentityType\": \"ID010\",\n            \"IdentityNumber\": \"78956-99\",\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 800\n        },\n        {\n            \"Id\": 20756,\n            \"CustomerNumber\": \"10220000354\",\n            \"Email\": \"myuat@test.com\",\n            \"FirstName\": \"MyUAT\",\n            \"MiddleName\": null,\n            \"LastName\": \"Tester\",\n            \"BirthDate\": \"1989-06-22T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032545698\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20757,\n            \"CustomerNumber\": \"10220000355\",\n            \"Email\": \"fluent@test.com\",\n            \"FirstName\": \"Fluent\",\n            \"MiddleName\": null,\n            \"LastName\": \"Migrator\",\n            \"BirthDate\": \"1979-06-07T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4036529845\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 15000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20758,\n            \"CustomerNumber\": \"10220000356\",\n            \"Email\": \"dynamic@test.com\",\n            \"FirstName\": \"Dynamic\",\n            \"MiddleName\": null,\n            \"LastName\": \"Dynamit\",\n            \"BirthDate\": \"1985-07-11T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4032586598\",\n            \"IdentityType\": null,\n            \"IdentityNumber\": null,\n            \"LoanType\": \"1\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"BW\",\n            \"PaymentPeriod\": 60,\n            \"RequestAmount\": 12000,\n            \"SecurityAmount\": 0\n        },\n        {\n            \"Id\": 20729,\n            \"CustomerNumber\": \"10220000350\",\n            \"Email\": \"applicator@terst.com\",\n            \"FirstName\": \"MyTest\",\n            \"MiddleName\": null,\n            \"LastName\": \"Applicator\",\n            \"BirthDate\": \"1989-09-11T00:00:00\",\n            \"Gender\": \"M\",\n            \"MobilePhoneCountryCode\": \"1\",\n            \"MobilePhoneNumber\": \"4165879365\",\n            \"IdentityType\": \"ID002\",\n            \"IdentityNumber\": \"454566566\",\n            \"LoanType\": \"0\",\n            \"LoanPurpose\": \"7\",\n            \"PaymentFrequency\": \"M\",\n            \"PaymentPeriod\": 0,\n            \"RequestAmount\": 10000,\n            \"SecurityAmount\": 5000\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9d118f03-ce22-4187-baef-263b3257de81"},{"name":"Save Up To Create Customer","id":"07ea2989-f77c-40fd-b463-adffffdd67b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ClientUniqueId\": 500013,\r\n  \"FirstName\": \"Hakan\",\r\n  \"MiddleName\": \"\",\r\n  \"LastName\": \"Calhanoglu\",\r\n  \"BirthDate\": \"1987-09-29\",\r\n  \"Gender\": \"M\",\r\n  \"Email\": \"hakan.calhanoglu@test.ca\",\r\n  \"CellPhoneCountryCode\": \"1\",\r\n  \"CellPhoneNumber\": \"5678901784\",\r\n  \"OfficePhoneCountryCode\": \"1\",\r\n  \"OfficePhoneNumber\": \"5678901785\",\r\n  \"HomePhoneCountryCode\": \"1\",\r\n  \"HomePhoneNumber\": \"5056787804\",\r\n  \"EmailNotification\": \"Y\",\r\n  \"SmsNotification\": \"N\",\r\n  \"Language\": \"EN\",\r\n  \"IdentityType\": \"C006\",\r\n  \"IdentityNumber\": \"567399\",\r\n  \"IdentityExpiryDate\": \"2023-09-17\",\r\n  \"IdentityPlaceOfIssue\": \"NU\",\r\n  \"IdentityCountry\": \"1\",\r\n  \"IdentityProvince\": \"NU\",\r\n  \"AddressLine1\": \"76-1600 Culver Dr\",\r\n  \"AddressLine2\": \"\",\r\n  \"PostalCode\": \"N5V 3H5\",\r\n  \"Country\": \"1\",\r\n  \"Province\": \"ON\",\r\n  \"City\": \"London\",\r\n  \"CanadaPostVerificationStatus\": \"V\",\r\n  \"ApplicationType\": \"0\",\r\n  \"PaymentFrequency\": \"M\",\r\n  \"ApprovedCardLimit\": 180,\r\n  \"ApprovedSecurityAmount\": 0,\r\n  \"PurposeOfLoan\": \"7\",\r\n  \"FeeProfile\": \"Education Fee Profile\",\r\n  \"InterestCalculationMethod\": \"F\",\r\n  \"StatementDayOfMonth\": 21,\r\n  \"DueTermOfStatement\": 10,\r\n  \"ProductId\": 123\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/SaveUpToCreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Save Up to Create Customer API creates a new Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClientUniqueId</td>\n<td><em>Integer</em></td>\n<td>10</td>\n<td>The unique client ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The customers first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The customers middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The customers last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td>The customers date of birth.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><code>F</code> Female  <br /><code>M</code> Male  <br /><code>O</code>Other</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The customers email Address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CellPhoneCountryCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Phone country code.  <br />This can be obtained using the <strong>Country Code Parameter List.</strong>  <br /><code>1</code> is for Canada.</td>\n<td></td>\n</tr>\n<tr>\n<td>CellPhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer phone number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OfficePhoneCountryCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Phone country code.  <br />This can be obtained using the <strong>Country Code Parameter List.</strong>  <br /><code>1</code> is for Canada.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OfficePhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer phone number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HomePhoneCountryCode</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Phone country code.  <br />This can be obtained using the <strong>Country Code Parameter List.</strong>  <br /><code>1</code> is for Canada.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer phone number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EmailNotification</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicated whether the customer has chosen to receive notifications via email.  <br />  <br /><code>Y</code> Yes  <br /><code>N</code> No</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SmsNotification</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicated whether the customer has chosen to receive notifications via SMS.  <br />  <br /><code>Y</code> Yes  <br /><code>N</code> No</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Language</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><code>EN</code> English  <br /><code>FR</code> French</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityType</td>\n<td><em>String</em></td>\n<td>4</td>\n<td><code>C000</code> ON Driver's License,<code>C001</code> QC Driver's License,  <br /><code>C002</code> AB Driver's License,  <br /><code>C003</code> BC Driver's License,  <br /><code>C004</code> MB Driver's License,  <br /><code>C005</code> NU Driver's License,  <br /><code>C006</code> NB Driver's License,  <br /><code>C007</code> NS Driver's License,  <br /><code>C008</code> NL Driver's License,  <br /><code>C009</code> NT Driver's License,  <br /><code>C010</code> PE Driver's License,  <br /><code>C011</code> SK Driver's License,  <br /><code>C012</code> YT Driver's License,  <br /><code>C014</code> Canada Passport,  <br /><code>C018</code> Certificate of Indian Status Card,  <br /><code>C019</code> Canada Permanent Resident Card,  <br /><code>C020</code> Canadian Forces ID,  <br /><code>C043</code> Firearms Possession and Acquisition License,  <br /><code>C073</code> Canadian SIN.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Number on the document proving the identity of the customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td>Identity Expiry Date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Identity place of issue country name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityCountry</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Country code of identity.  <br />This can be obtained using the <strong>Country Code Parameter List.</strong>  <br /><code>1</code> is for Canada.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityProvince</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Province of identity. Selected from province list parameter <code>NL</code>, <code>PE</code>, <code>NS</code>, <code>NB</code>, <code>QC</code>, <code>ON</code>, <code>MB</code>, <code>SK</code>, <code>AB</code>, <code>BC</code>, <code>YT</code>, <code>NT</code>, <code>NU</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customers street address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customers street address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>Customers postal code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Customers country.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>3</td>\n<td>Province of customer address:  <br /><code>NL</code>, <code>PE</code>, <code>NS</code>, <code>NB</code>, <code>QC</code>, <code>ON</code>, <code>MB</code>, <code>SK</code>, <code>AB</code>, <code>BC</code>, <code>YT</code>, <code>NT</code>, <code>NU</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>City of address of customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CanadaPostVerificationStatus</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Indicates whether the customers identity has been verified with Canada Post:  <br /><code>V</code> Verified  <br /><code>U</code> Un-verified</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ApplicationType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Type of application:  <br /><code>0</code> Secured Card  <br /><code>1</code> Loan  <br /><code>2</code> LOC</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PaymentFrequency</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Frequency of repayment:  <br /><code>W</code> Weekly  <br /><code>BW</code> Bi-weekly  <br /><code>M</code> Monthly<code>SM</code> Semi-monthly</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ApprovedCardLimit</td>\n<td><em>Decimal</em></td>\n<td>7</td>\n<td>The limit approved for the customers card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ApprovedSecurityAmount</td>\n<td><em>Decimal</em></td>\n<td>7</td>\n<td>Security amount of the customers card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PurposeOfLoan</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>The type code for the purpose of the loan:  <br /><code>0</code> New Car  <br /><code>1</code> Used Car &lt; 2 years  <br /><code>2</code> Used Car &gt; 2 years  <br /><code>3</code> Home Furniture  <br /><code>4</code> White Goods  <br /><code>5</code> Other House Appliances  <br /><code>6</code> Leisure  <br /><code>7</code> Education  <br /><code>8</code> Health  <br /><code>9</code> Other  <br /><code>10</code> Travel  <br /><code>11</code> All  <br /><code>12</code> Rebuild Credit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FeeProfile</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Fee Profile Name defined in Fee and Rate Definition Screen.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>InterestCalculationMethod</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Method in which interest is calculated:  <br /><code>F</code> Fixed</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StatementDayOfMonth</td>\n<td><em>Integer</em></td>\n<td>2</td>\n<td>Day of month selection between 1-28.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DueTermOfStatement</td>\n<td><em>Integer</em></td>\n<td>2</td>\n<td>Due date day count after statement date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProductProfile</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><code>1</code> One Day  <br /><code>5</code> Five Days  <br /><code>10</code> Ten Days  <br /><code>21</code> 21 Days</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ApprovedPaymentPeriod</td>\n<td><em>Integer</em></td>\n<td>3</td>\n<td>The payment period approved.  <br />  <br /><strong>Required</strong> if <strong>ApplicationType</strong> is <code>Loan</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FirstPaymentDate</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td>The date of the first repayment.  <br />  <br /><strong>Required</strong> if <strong>ApplicationType</strong> is <code>Loan</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PaymentOptionFeeId</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>How fees are calculated on the loan.  <br />  <br /><strong>Required</strong> if <strong>ApplicationType</strong> is <code>Loan</code>:  <br /><code>0</code> UpFront  <br /><code>1</code> Amortized</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>ID of the product.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationNumber</td>\n<td><em>String</em></td>\n<td>The unique number of the applicant.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BadRequest</td>\n<td>Identification Method cannot be empty</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","SaveUpToCreateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"13ce2e1c-d146-4994-a502-1e2329c8c47b","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ClientUniqueId\": 500013,\r\n  \"FirstName\": \"Berkay\",\r\n  \"MiddleName\": \"\",\r\n  \"LastName\": \"Testing\",\r\n  \"BirthDate\": \"1987-09-29\",\r\n  \"Gender\": \"M\",\r\n  \"Email\": \"berkaytesting45@test.ca\",\r\n  \"CellPhoneCountryCode\": \"1\",\r\n  \"CellPhoneNumber\": \"5598901784\",\r\n  \"OfficePhoneCountryCode\": \"1\",\r\n  \"OfficePhoneNumber\": \"5598901785\",\r\n  \"HomePhoneCountryCode\": \"1\",\r\n  \"HomePhoneNumber\": \"5596787804\",\r\n  \"EmailNotification\": \"Y\",\r\n  \"SmsNotification\": \"N\",\r\n  \"Language\": \"EN\",\r\n  \"IntendedUse\": \"EDU\",\r\n  \"Occupation\": \"Editors\",\r\n  \"IdentificationMethod\": \"I\",\r\n  \"IdentityType\": \"ID000\",\r\n  \"IdentityNumber\": \"567399\",\r\n  \"IdentityExpiryDate\": \"2023-09-17\",\r\n  \"IdentityPlaceOfIssue\": \"NU\",\r\n  \"IdentityCountry\": \"1\",\r\n  \"IdentityProvince\": \"NU\",\r\n  \"IdentityVerifiedBy\": \"berkay@test.ts\",\r\n  \"IdentityVerificationDate\": \"2022-05-05\",\r\n  \"AddressLine1\": \"76-1600 Culver Dr\",\r\n  \"AddressLine2\": \"\",\r\n  \"PostalCode\": \"N5V 3H5\",\r\n  \"Country\": \"38\",\r\n  \"Province\": \"ON\",\r\n  \"City\": \"London\",\r\n  \"CanadaPostVerificationStatus\": \"V\",\r\n  \"PrimaryProvincialIdentityType\": \"AB\",\r\n  \"ApplicationType\": \"0\",\r\n  \"PaymentFrequency\": \"M\",\r\n  \"ApprovedCardLimit\": 180,\r\n  \"ApprovedSecurityAmount\": 180,\r\n  \"PurposeOfLoan\": \"7\",\r\n  \"FeeProfile\": \"Education Test  Profile\",\r\n  \"InterestCalculationMethod\": \"F\",\r\n  \"StatementDayOfMonth\": 21,\r\n  \"DueTermOfStatement\": 10,\r\n  \"ProductId\": 123,\r\n  \"SourceOfFunds\":\"Cheque\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/SaveUpToCreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Mar 2022 08:23:10 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"158","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=84da135d793d1a6b30cd9dc12f2e362e46368d998b5277708a22eabe7aaf7896;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"ApplicationNumber\": \"AP - 000856\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"07ea2989-f77c-40fd-b463-adffffdd67b1"}],"id":"bc107a48-adc5-4a67-80f6-dd681aab5cfe","_postman_id":"bc107a48-adc5-4a67-80f6-dd681aab5cfe","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Card","item":[{"name":"Activate Card","id":"c5df4715-9899-4e9b-a2ed-a9db40285dc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"Id\": 10116\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/ActivateLenderApplicationCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Activate Card API activates the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Application.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationCardStatusDesc</td>\n<td><em>String</em></td>\n<td>The status of the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CARDNOTFOUND</td>\n<td>Card Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","ActivateLenderApplicationCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"29a54ba5-65be-4405-b9a9-8474385a95b4","name":"Activate Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"Id\": 727\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/ActivateLenderApplicationCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Dec 2021 21:40:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"151","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"ApplicationCardStatusDesc\": \"Active\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c5df4715-9899-4e9b-a2ed-a9db40285dc1"},{"name":"Cancel Card","id":"8dfb50f1-a44d-4ca9-8330-246bf881aeec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 10116\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CancelLenderApplicationCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Card API cancel's the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Application.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationNOTFOUND</td>\n<td>The Application Was Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","CancelLenderApplicationCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"017abfdb-ef36-4946-a745-cdb9ba63e536","name":"Cancel Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 727\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CancelLenderApplicationCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Dec 2021 21:11:52 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8dfb50f1-a44d-4ca9-8330-246bf881aeec"},{"name":"Create Card","id":"f729b432-5acd-44f1-9d58-023eb10ea3a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 566,\r\n  \"CardEmbossName\": \"Hakan Calhanoghlu\",\r\n  \"EmbossType\": \"Instant\",\r\n  \"InstantEmbossBranchId\": 3,\r\n  \"Emboss4thLine\": \"Test Instant\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateLenderApplicationCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Card API creates a new card for a customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Application.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardEmbossName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the name embossed on the card.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>The number of the new card, partially masked for security.</td>\n</tr>\n<tr>\n<td>CardFinancialId</td>\n<td><em>Numeric</em></td>\n<td>The card financial identifier.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationNOTFOUND</td>\n<td>The Application Was Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","CreateLenderApplicationCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"828495e8-8183-4102-94bc-df00d3a2240f","name":"Create Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 727,\r\n  \"CardEmbossName\": \"Hakan Calhanoghlu\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateLenderApplicationCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Dec 2021 21:04:27 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"175","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardNumber\": \"463033******4357\",\n        \"CardFinancialId\": 11577\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"b9263d11-52af-4154-8077-de456366a856","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 566,\r\n  \"CardEmbossName\": \"Hakan Calhanoghlu\",\r\n  \"EmbossType\": \"Instant\",\r\n  \"InstantEmbossBranchId\": 3,\r\n  \"Emboss4thLine\": \"Test Instant\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateLenderApplicationCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Dec 2021 13:36:28 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CardNumber\": \"463033******4811\",\n        \"CardFinancialId\": 10650\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f729b432-5acd-44f1-9d58-023eb10ea3a2"},{"name":"Disable Card","id":"d0694ab7-1be7-4a0e-bdd6-58b2ae795b4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 10116\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/DisableLenderApplicationCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Disable Card API disables the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Application.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationNOTFOUND</td>\n<td>The Application Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","DisableLenderApplicationCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d3a4d240-0bd1-4d5c-b045-9689d403bbf7","name":"Disable Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 727\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/DisableLenderApplicationCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Dec 2021 21:10:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d0694ab7-1be7-4a0e-bdd6-58b2ae795b4e"},{"name":"Enable Card","id":"76c26660-b91c-4147-ac1f-e2ea914b91d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 10116\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/EnableLenderApplicationCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Enable Card API enables the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Application.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationNOTFOUND</td>\n<td>The Application Was Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","EnableLenderApplicationCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ff096afa-ec9c-4882-a834-a3e7d870003e","name":"Enable Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationId\": 727\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/EnableLenderApplicationCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Dec 2021 21:10:46 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"76c26660-b91c-4147-ac1f-e2ea914b91d3"},{"name":"Get Card Transaction List","id":"0707e130-c6ab-46e6-8cb5-ab5b89c67483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"14007200027\",\r\n   \"CardId\": 25615,\r\n  \"Criteria\": 1,\r\n  \"BeginDate\": \"2020-11-13T00:00:46.524Z\",\r\n  \"EndDate\": \"2020-11-18T00:00:46.524Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiry","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Card Transaction List API retrieves the transaction list for the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the customer number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the Card ID required if <code>Secure Card</code>. This can be retrieved using the <strong>Wallet -&gt; Card -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>Indicates classified the transactions:  <br /><code>1</code> - All Transactions,  <br /><code>2</code> - Decline Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates Begin Date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates End Date.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardTransactionInquiryE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryE01</td>\n<td>Card Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTransactionInquiry"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"66f118ee-f45f-49cd-92f4-5ff7eb84073a","name":"Get Card Transaction List","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000448\",\r\n   \"CardId\": 11709,\r\n  \"Criteria\": 1,\r\n  \"BeginDate\": \"2020-11-13T00:00:46.524Z\",\r\n  \"EndDate\": \"2021-11-18T00:00:46.524Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiry"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 13:31:05 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CardId\": 11709,\n            \"CardTokenNumber\": \"463033opmblh4357\",\n            \"TransactionDate\": \"2021-10-11T14:01:22.747\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Bank Account Payment\",\n            \"TransactionAmount\": 10,\n            \"AmountDisplay\": null,\n            \"TransactionCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"BillingAmount\": 10,\n            \"CardholderCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementAmount\": 10,\n            \"SettlementCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementDate\": \"2021-10-11T14:01:22.753\",\n            \"Description\": \"Bank Account Payment\",\n            \"ReferenceNumber\": \"100000000126428800\",\n            \"TransactionType\": \"Debit\",\n            \"TransactionTypeId\": 6021,\n            \"TransactionTypeCode\": \"D\",\n            \"ChannelName\": \"Cash Deposit\",\n            \"CardOwnerName\": \"Daphne51 Testing\",\n            \"MaskedCardNumber\": \"463033******4357\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 0,\n            \"WalletBalance\": 0,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 10,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Debit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"428800\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        },\n        {\n            \"CardId\": 11709,\n            \"CardTokenNumber\": \"463033opmblh4357\",\n            \"TransactionDate\": \"2021-10-07T05:23:11\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Monthly Fee\",\n            \"TransactionAmount\": 13.95,\n            \"AmountDisplay\": null,\n            \"TransactionCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"BillingAmount\": 13.95,\n            \"CardholderCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementAmount\": 13.95,\n            \"SettlementCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementDate\": \"2021-10-08T05:23:11.387\",\n            \"Description\": \"Monthly Fee\",\n            \"ReferenceNumber\": \"100000000126427055\",\n            \"TransactionType\": \"Credit\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"ChannelName\": \"Monthly Card Fee\",\n            \"CardOwnerName\": \"Daphne51 Testing\",\n            \"MaskedCardNumber\": \"463033******4357\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 822.1,\n            \"WalletBalance\": 822.1,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 13.95,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Credit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"427055\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        },\n        {\n            \"CardId\": 11709,\n            \"CardTokenNumber\": \"463033opmblh4357\",\n            \"TransactionDate\": \"2021-09-10T08:32:53\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Publix - Marietta\",\n            \"TransactionAmount\": 100,\n            \"AmountDisplay\": null,\n            \"TransactionCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"BillingAmount\": 100,\n            \"CardholderCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementAmount\": 100,\n            \"SettlementCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementDate\": \"2021-09-20T12:32:53.537\",\n            \"Description\": \"Publix - Marietta\",\n            \"ReferenceNumber\": \"100000000126184801\",\n            \"TransactionType\": \"Debit\",\n            \"TransactionTypeId\": 6021,\n            \"TransactionTypeCode\": \"D\",\n            \"ChannelName\": \"Cash Deposit\",\n            \"CardOwnerName\": \"Daphne51 Testing\",\n            \"MaskedCardNumber\": \"463033******4357\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 836.05,\n            \"WalletBalance\": 836.05,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 100,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Debit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"184801\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        },\n        {\n            \"CardId\": 11709,\n            \"CardTokenNumber\": \"463033opmblh4357\",\n            \"TransactionDate\": \"2021-09-09T07:50:14\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Publix - Marietta\",\n            \"TransactionAmount\": 100,\n            \"AmountDisplay\": null,\n            \"TransactionCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"BillingAmount\": 100,\n            \"CardholderCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementAmount\": 100,\n            \"SettlementCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementDate\": \"2021-09-20T11:50:14.317\",\n            \"Description\": \"Publix - Marietta\",\n            \"ReferenceNumber\": \"100000000126184742\",\n            \"TransactionType\": \"Debit\",\n            \"TransactionTypeId\": 6021,\n            \"TransactionTypeCode\": \"D\",\n            \"ChannelName\": \"Cash Deposit\",\n            \"CardOwnerName\": \"Daphne51 Testing\",\n            \"MaskedCardNumber\": \"463033******4357\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 736.05,\n            \"WalletBalance\": 736.05,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 100,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Debit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"184742\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        },\n        {\n            \"CardId\": 11709,\n            \"CardTokenNumber\": \"463033opmblh4357\",\n            \"TransactionDate\": \"2021-09-08T07:48:39\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Publix - Marietta\",\n            \"TransactionAmount\": 100,\n            \"AmountDisplay\": null,\n            \"TransactionCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"BillingAmount\": 100,\n            \"CardholderCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementAmount\": 100,\n            \"SettlementCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementDate\": \"2021-09-20T11:48:39.593\",\n            \"Description\": \"Publix - Marietta\",\n            \"ReferenceNumber\": \"100000000126184736\",\n            \"TransactionType\": \"Debit\",\n            \"TransactionTypeId\": 6021,\n            \"TransactionTypeCode\": \"D\",\n            \"ChannelName\": \"Cash Deposit\",\n            \"CardOwnerName\": \"Daphne51 Testing\",\n            \"MaskedCardNumber\": \"463033******4357\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 636.05,\n            \"WalletBalance\": 636.05,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 100,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Debit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"184736\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        },\n        {\n            \"CardId\": 11709,\n            \"CardTokenNumber\": \"463033opmblh4357\",\n            \"TransactionDate\": \"2021-09-07T05:02:53\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Monthly Fee\",\n            \"TransactionAmount\": 13.95,\n            \"AmountDisplay\": null,\n            \"TransactionCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"BillingAmount\": 13.95,\n            \"CardholderCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementAmount\": 13.95,\n            \"SettlementCurrency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0,\n                \"UpdateUserId\": 59\n            },\n            \"SettlementDate\": \"2021-09-08T05:02:53.183\",\n            \"Description\": \"Monthly Fee\",\n            \"ReferenceNumber\": \"100000000126123837\",\n            \"TransactionType\": \"Credit\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"ChannelName\": \"Monthly Card Fee\",\n            \"CardOwnerName\": \"Daphne51 Testing\",\n            \"MaskedCardNumber\": \"463033******4357\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 536.05,\n            \"WalletBalance\": 536.05,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 13.95,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Credit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"123837\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0707e130-c6ab-46e6-8cb5-ab5b89c67483"},{"name":"Get Card Transaction List V2","id":"0505a8b5-fc9d-444f-aa31-f68f8f25c26b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"14007200027\",\r\n   \"CardId\": 25615,\r\n  \"Criteria\": 1,\r\n  \"BeginDate\": \"2020-11-13T00:00:46.524Z\",\r\n  \"EndDate\": \"2020-11-18T00:00:46.524Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV2","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Card Transaction List API retrieves the transaction list for the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the customer number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the Card ID required if <code>Secure Card</code>. This can be retrieved using the <strong>Wallet -&gt; Card -&gt; Card List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Criteria</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>Indicates classified the transactions:  <br /><code>1</code> - All Transactions,  <br /><code>2</code> - Decline Transactions,  <br /><code>3</code> - Approved Transactions,  <br /><code>4</code> - Settled Transactions.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates Begin Date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates End Date.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>Tokenized card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date in which the transaction occurred.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>Transaction response code.</td>\n</tr>\n<tr>\n<td>Merchant</td>\n<td><em>String</em></td>\n<td>The merchant name where the transaction took place.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>AmountDisplay</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionCurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency of the transaction.</td>\n</tr>\n<tr>\n<td>BillingAmount</td>\n<td><em>Decimal</em></td>\n<td>The billed amount.</td>\n</tr>\n<tr>\n<td>CardholderCurrencyCode</td>\n<td><em>String</em></td>\n<td>The card currency.</td>\n</tr>\n<tr>\n<td>SettlementAmount</td>\n<td><em>Decimal</em></td>\n<td>The settled amount of the transaction.</td>\n</tr>\n<tr>\n<td>SettlementCurrencyCode</td>\n<td><em>String</em></td>\n<td>The settlement currency code.</td>\n</tr>\n<tr>\n<td>SettlementDate</td>\n<td><em>DateTime</em></td>\n<td>The date the settlement occurred.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The description/reason for the transaction.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>The reference number for the transaction.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction. Credit or Debit transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The identifier of the transaction type.</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>The code of the transaction type.</td>\n</tr>\n<tr>\n<td>ChannelName</td>\n<td><em>String</em></td>\n<td>The channel in which the funds flowed. Etransfer, Bill Payment, etc.</td>\n</tr>\n<tr>\n<td>CardOwnerName</td>\n<td><em>String</em></td>\n<td>The cardholders full name.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>CardBrandName</td>\n<td><em>String</em></td>\n<td>The brand of the card. Visa, MasterCard, etc.</td>\n</tr>\n<tr>\n<td>AvailableCreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The cards available credit limit.</td>\n</tr>\n<tr>\n<td>WalletBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the customers wallet.</td>\n</tr>\n<tr>\n<td>ApplicationNetwork</td>\n<td><em>String</em></td>\n<td>The application network.</td>\n</tr>\n<tr>\n<td>CardTransactionSource</td>\n<td><em>String</em></td>\n<td>The source of the transaction. Domestic or International.</td>\n</tr>\n<tr>\n<td>TerminalType</td>\n<td><em>String</em></td>\n<td>The type of terminal where the transaction occurred.</td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td><em>String</em></td>\n<td>The city in which the merchant of the transaction was located.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>OriginalAmount</td>\n<td><em>Decimal</em></td>\n<td>The original amount of the transaction.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>The response description.</td>\n</tr>\n<tr>\n<td>Mcc</td>\n<td><em>String</em></td>\n<td>The MCC category/code.</td>\n</tr>\n<tr>\n<td>SettlementStatus</td>\n<td><em>String</em></td>\n<td>The status of the settlement.</td>\n</tr>\n<tr>\n<td>TransactionEntryDesc</td>\n<td><em>String</em></td>\n<td>The description of the transaction entry.</td>\n</tr>\n<tr>\n<td>Mti</td>\n<td><em>String</em></td>\n<td>The message type indicator. A 4 digit numerical code that identifies the function/purpose of the message being sent.</td>\n</tr>\n<tr>\n<td>TransactionFee</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>AuthorizationCode</td>\n<td><em>Numeric</em></td>\n<td>The code of authorization.</td>\n</tr>\n<tr>\n<td>IsReversed</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether the transaction was reversed or not.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>ReversalType</td>\n<td><em>String</em></td>\n<td>The type of reversal.</td>\n</tr>\n<tr>\n<td>ReversedDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date the reversal took place.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardTransactionInquiryE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CardTransactionInquiryE01</td>\n<td>Card Not Found</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","CardTransactionInquiryV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fdc87f16-9069-4f98-b9cf-08f8b57ca618","name":"Get Card Transaction List V2","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000228\",\r\n   \"CardId\": 10756,\r\n  \"Criteria\": 1,\r\n  \"BeginDate\": \"2022-01-01T00:00:46.524Z\",\r\n  \"EndDate\": \"2022-01-10T00:00:46.524Z\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/CardTransactionInquiryV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jan 2022 10:14:36 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"753","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CardId\": 10756,\n            \"CardTokenNumber\": \"463033gflreo4222\",\n            \"TransactionDate\": \"2022-01-09T00:01:54.83\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Bill Payment-TELUS COMMUNICATIONS\",\n            \"TransactionAmount\": 1,\n            \"AmountDisplay\": null,\n            \"TransactionCurrencyCode\": \"CAD\",\n            \"BillingAmount\": 1,\n            \"CardholderCurrencyCode\": \"CAD\",\n            \"SettlementAmount\": 1,\n            \"SettlementCurrencyCode\": \"CAD\",\n            \"SettlementDate\": \"2022-01-09T00:01:54.837\",\n            \"Description\": \"Bill Payment\",\n            \"ReferenceNumber\": \"100000000126987348\",\n            \"TransactionType\": \"Credit\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"ChannelName\": \"Bill Payment\",\n            \"CardOwnerName\": \"Tester Userino\",\n            \"MaskedCardNumber\": \"463033******4222\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 3301.44,\n            \"WalletBalance\": 3301.44,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 1,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Credit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"987348\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        },\n        {\n            \"CardId\": 10756,\n            \"CardTokenNumber\": \"463033gflreo4222\",\n            \"TransactionDate\": \"2022-01-02T00:00:35.067\",\n            \"ResponseCode\": \"00\",\n            \"Merchant\": \"Bill Payment-TELUS COMMUNICATIONS\",\n            \"TransactionAmount\": 1,\n            \"AmountDisplay\": null,\n            \"TransactionCurrencyCode\": \"CAD\",\n            \"BillingAmount\": 1,\n            \"CardholderCurrencyCode\": \"CAD\",\n            \"SettlementAmount\": 1,\n            \"SettlementCurrencyCode\": \"CAD\",\n            \"SettlementDate\": \"2022-01-02T00:00:35.067\",\n            \"Description\": \"Bill Payment\",\n            \"ReferenceNumber\": \"100000000126912128\",\n            \"TransactionType\": \"Credit\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"ChannelName\": \"Bill Payment\",\n            \"CardOwnerName\": \"Tester Userino\",\n            \"MaskedCardNumber\": \"463033******4222\",\n            \"CardBrandName\": \"Visa\",\n            \"AvailableCreditLimit\": 3302.44,\n            \"WalletBalance\": 3302.44,\n            \"ApplicationNetwork\": \"SYSTEM\",\n            \"CardTransactionSource\": \"Domestic\",\n            \"TerminalType\": \"System\",\n            \"ErrorCode\": \"\",\n            \"ErrorDescription\": \"\",\n            \"MerchantCity\": \"Calgary\",\n            \"FeeAmount\": 0,\n            \"OriginalAmount\": 1,\n            \"ResponseDescription\": \"Approved  \",\n            \"Mcc\": \"9999\",\n            \"SettlementStatus\": \"Settled\",\n            \"TransactionEntryTypeDesc\": \"UnKnown\",\n            \"TransactionTypeDesc\": \"Credit\",\n            \"Mti\": 100,\n            \"TransactionFee\": \"\",\n            \"AuthorzationCode\": \"912128\",\n            \"IsReversed\": false,\n            \"ReversalType\": \"\",\n            \"ReversedDateTime\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0505a8b5-fc9d-444f-aa31-f68f8f25c26b"}],"id":"4bc3ea6f-c205-4c38-8747-395a806c8009","_postman_id":"4bc3ea6f-c205-4c38-8747-395a806c8009","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Statement","item":[{"name":"Get Statements","id":"c5343b11-406e-4360-a38d-f9d75a43dbca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000025\",\n    \"StatementPeriodType\": 6,\n    \"AccountId\": 20492\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatements","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Statement API retrieves the statements for the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the customer number.  <br />This can be retrieved using the <strong>Wallet -&gt; Get Wallet Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StatementPeriodType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the statement period type:  <br />LastMonth = <code>1</code>, 2Months = <code>2</code>,  <br />3Months = <code>3</code>, 6Monhts = <code>6</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>String</em></td>\n<td>16</td>\n<td>Indicates the Account ID.  <br />This can be retrieved using the <strong>Account -&gt; Get All Account</strong> API, by sending request as <code>WALLET</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique card identifier.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>Numeric</em></td>\n<td>The card number.</td>\n</tr>\n<tr>\n<td>StatementBeginDate</td>\n<td><em>DateTime</em></td>\n<td>The start date of the statement.</td>\n</tr>\n<tr>\n<td>StatementEndDate</td>\n<td><em>DateTime</em></td>\n<td>The end date of the statement.</td>\n</tr>\n<tr>\n<td>LastPaymentDate</td>\n<td><em>DateTime</em></td>\n<td>The date that a payment was last made.</td>\n</tr>\n<tr>\n<td>PaymentAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the last payment.</td>\n</tr>\n<tr>\n<td>PurchaseAmount</td>\n<td><em>Decimal</em></td>\n<td>Purchase amount.</td>\n</tr>\n<tr>\n<td>NewBalance</td>\n<td><em>Decimal</em></td>\n<td>New balance of the account.</td>\n</tr>\n<tr>\n<td>PreviousStatementBalance</td>\n<td><em>Decimal</em></td>\n<td>Previous balance of the account on the previous statement.</td>\n</tr>\n<tr>\n<td>MinPayment</td>\n<td><em>Decimal</em></td>\n<td>The minimum payment amount per contract.</td>\n</tr>\n<tr>\n<td>CardFinancialId</td>\n<td><em>Numeric</em></td>\n<td>The cards financial identifier.</td>\n</tr>\n<tr>\n<td>CATMCardId</td>\n<td><em>Numeric</em></td>\n<td>Unique identifier for a specific payment card as it is processed.</td>\n</tr>\n<tr>\n<td>StatementDetailList</td>\n<td><em>List (Decimal, DateTime, String)</em></td>\n<td>List containing statement details including amount, transaction date, transaction type and description.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetStatementsOpE2</td>\n<td>Statement Period Is Invalid.</td>\n</tr>\n<tr>\n<td>GetStatementsOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetStatements"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c4a460e7-a37a-4816-902c-800d2adf671e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000025\",\n    \"StatementPeriodType\": 6,\n    \"AccountId\": 20492\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 20073,\n            \"CardNumber\": null,\n            \"StatementBeginDate\": \"2020-02-03T00:00:00\",\n            \"StatementEndDate\": \"2020-03-02T00:00:00\",\n            \"LastPaymentDate\": \"2020-03-07T00:00:00\",\n            \"PaymentAmount\": 174,\n            \"PurchaseAmount\": 174,\n            \"NewBalance\": 174,\n            \"PreviousStatementBalance\": 174,\n            \"MinPayment\": 43.5,\n            \"CardFinancialId\": 10045,\n            \"CATMCardId\": null,\n            \"StatementDetailList\": [\n                {\n                    \"Amount\": 174,\n                    \"TransactionDate\": \"2020-02-02T13:52:32\",\n                    \"TransactionType\": \"Payment\",\n                    \"Description\": \"Payment\"\n                },\n                {\n                    \"Amount\": 87,\n                    \"TransactionDate\": \"2020-02-10T13:53:19\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"KMART - GA\"\n                },\n                {\n                    \"Amount\": 44,\n                    \"TransactionDate\": \"2020-02-17T13:53:27\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Downson's Market - Atlanta\"\n                },\n                {\n                    \"Amount\": 43,\n                    \"TransactionDate\": \"2020-02-24T13:53:39\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Cafe de'Orient - FL\"\n                }\n            ]\n        },\n        {\n            \"Id\": 20072,\n            \"CardNumber\": null,\n            \"StatementBeginDate\": \"2020-01-03T00:00:00\",\n            \"StatementEndDate\": \"2020-02-02T00:00:00\",\n            \"LastPaymentDate\": \"2020-02-07T00:00:00\",\n            \"PaymentAmount\": 662,\n            \"PurchaseAmount\": 174,\n            \"NewBalance\": 174,\n            \"PreviousStatementBalance\": 662,\n            \"MinPayment\": 43.5,\n            \"CardFinancialId\": 10045,\n            \"CATMCardId\": null,\n            \"StatementDetailList\": [\n                {\n                    \"Amount\": 662,\n                    \"TransactionDate\": \"2020-01-02T13:50:34\",\n                    \"TransactionType\": \"Payment\",\n                    \"Description\": \"Payment\"\n                },\n                {\n                    \"Amount\": 32,\n                    \"TransactionDate\": \"2020-01-10T13:51:50\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Shell Marietta - Marie's\"\n                },\n                {\n                    \"Amount\": 63,\n                    \"TransactionDate\": \"2020-01-17T13:52:02\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"KMART - GA\"\n                },\n                {\n                    \"Amount\": 79,\n                    \"TransactionDate\": \"2020-01-24T13:52:14\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Cafe de'Orient - FL\"\n                }\n            ]\n        },\n        {\n            \"Id\": 20071,\n            \"CardNumber\": null,\n            \"StatementBeginDate\": \"2019-12-03T00:00:00\",\n            \"StatementEndDate\": \"2020-01-02T00:00:00\",\n            \"LastPaymentDate\": \"2020-01-07T00:00:00\",\n            \"PaymentAmount\": 127,\n            \"PurchaseAmount\": 662,\n            \"NewBalance\": 662,\n            \"PreviousStatementBalance\": 127,\n            \"MinPayment\": 165.5,\n            \"CardFinancialId\": 10045,\n            \"CATMCardId\": null,\n            \"StatementDetailList\": [\n                {\n                    \"Amount\": 19,\n                    \"TransactionDate\": \"2019-12-02T13:44:17\",\n                    \"TransactionType\": \"Payment\",\n                    \"Description\": \"Payment\"\n                },\n                {\n                    \"Amount\": 5,\n                    \"TransactionDate\": \"2019-12-02T13:44:19\",\n                    \"TransactionType\": \"Payment\",\n                    \"Description\": \"Payment\"\n                },\n                {\n                    \"Amount\": 103,\n                    \"TransactionDate\": \"2019-12-02T13:44:21\",\n                    \"TransactionType\": \"Payment\",\n                    \"Description\": \"Payment\"\n                },\n                {\n                    \"Amount\": 68,\n                    \"TransactionDate\": \"2019-12-10T13:49:31\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Delta Airlines\"\n                },\n                {\n                    \"Amount\": 77,\n                    \"TransactionDate\": \"2019-12-11T13:48:03\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Yuen Shirts\"\n                },\n                {\n                    \"Amount\": 47,\n                    \"TransactionDate\": \"2019-12-17T13:49:41\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Yuen Shirts\"\n                },\n                {\n                    \"Amount\": 470,\n                    \"TransactionDate\": \"2019-12-24T13:49:52\",\n                    \"TransactionType\": \"Purchase\",\n                    \"Description\": \"Jiffy Lube\"\n                }\n            ]\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c5343b11-406e-4360-a38d-f9d75a43dbca"},{"name":"Get Statement","id":"f3783aaf-0b1c-457d-b76d-e076363b6162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"14007200027\",\r\n  \"StatementPeriodType\": 1,\r\n  \"AccountId\": 119264\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatements","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Statement API retrieves the statement for the specified applicant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StatementPeriodType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Idicates Statement Period Type:  <br />LastMonth = <code>1</code>, 2Months = <code>2</code>, 3Months = <code>3</code>, 6Monhts = <code>6</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the customer's Account ID.  <br />This can be retrieved using the <strong>Lender -&gt; Account -&gt; Get Wallet Balance</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>The application unique identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>WalletAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The wallet account number.</td>\n</tr>\n<tr>\n<td>StatementDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the statement.</td>\n</tr>\n<tr>\n<td>StatementPeriodStart</td>\n<td><em>DateTime</em></td>\n<td>The date of the start of the statement.</td>\n</tr>\n<tr>\n<td>StatementPeriodEnd</td>\n<td><em>DateTime</em></td>\n<td>The date of the end of the statement.</td>\n</tr>\n<tr>\n<td>PaymentDueDate</td>\n<td><em>DateTime</em></td>\n<td>The due date of payment.</td>\n</tr>\n<tr>\n<td>CreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The credit limit.</td>\n</tr>\n<tr>\n<td>AvailableBalance</td>\n<td><em>Decimal</em></td>\n<td>The available balance left.</td>\n</tr>\n<tr>\n<td>BalanceOwing</td>\n<td><em>Decimal</em></td>\n<td>The balance needing repayment.</td>\n</tr>\n<tr>\n<td>MinimumPaymentPercent</td>\n<td><em>Numeric</em></td>\n<td>The minimum percent of the repayment.</td>\n</tr>\n<tr>\n<td>MinimumPaymentAmount</td>\n<td><em>Decimal</em></td>\n<td>The minimum payment amount.</td>\n</tr>\n<tr>\n<td>PurchaseInterestRate</td>\n<td><em>Numeric</em></td>\n<td>The interest rate for purchases.</td>\n</tr>\n<tr>\n<td>CashAdvanceInterestRate</td>\n<td><em>Numeric</em></td>\n<td>The interest rate for cash advances.</td>\n</tr>\n<tr>\n<td>OverduePaymentInterestRate</td>\n<td><em>Numeric</em></td>\n<td>The interest rate for any overdue payments.</td>\n</tr>\n<tr>\n<td>OpeningBalance</td>\n<td><em>Decimal</em></td>\n<td>The opening balance on the statement.</td>\n</tr>\n<tr>\n<td>ClosingBalance</td>\n<td><em>Decimal</em></td>\n<td>The closing balance on the statement.</td>\n</tr>\n<tr>\n<td>ActivitySummary</td>\n<td><em>List (Decimal, Numeric)</em></td>\n<td>A list containing account details including: total payments, total purchases, total refunds and credits, total cash advances, total debit adjustments, total fees, and total interest.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetStatementsOpE2</td>\n<td>Statement Period Is Invalid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetStatements"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"18873625-a4fb-44ba-b1ad-13a5547f4010","name":"Get Statement","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000313\",\r\n  \"StatementPeriodType\": 1,\r\n  \"AccountId\": 157376\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 17 Dec 2021 08:30:36 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"503","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 69230,\n            \"ApplicationId\": 589,\n            \"CustomerNumber\": \"10220000313\",\n            \"CardNumber\": \"463033******9148\",\n            \"WalletAccountNumber\": 590111183,\n            \"StatementDate\": \"2021-12-16T00:00:00\",\n            \"StatementPeriodStart\": \"2021-11-18T23:59:59\",\n            \"StatementPeriodEnd\": \"2021-12-16T00:00:00\",\n            \"PaymentDueDate\": \"2022-01-06T00:00:00\",\n            \"CreditLimit\": 2000,\n            \"availableBalance\": 1964,\n            \"BalanceOwing\": 36,\n            \"MinimumPaymentPercent\": 2,\n            \"MinimumPaymentAmount\": 2,\n            \"PurchaseInterestRate\": 2,\n            \"CashAdvanceInterestRate\": 3,\n            \"OverduePaymentInterestRate\": 2,\n            \"OpeningBalance\": 36,\n            \"ClosingBalance\": 36,\n            \"ActivitySummary\": {\n                \"TotalPayments\": 0,\n                \"TotalPurchases\": 0,\n                \"TotalRefundsAndCredits\": 0,\n                \"TotalCashAdvances\": 0,\n                \"TotalDebitAdjustments\": 0,\n                \"TotalFees\": 0,\n                \"TotalInterest\": 0\n            },\n            \"StatementTransactionList\": []\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f3783aaf-0b1c-457d-b76d-e076363b6162"},{"name":"Get Statement V2","id":"ba0f0707-bdce-4cb4-bce2-2fce75feb46d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000791\",\r\n  \"StatementPeriodType\": 1,\r\n  \"AccountId\": 164030\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatementsV2","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Statement API retrieves statement information based on the number of selected time periods for an applicant</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Unique Customer Number</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StatementPeriodType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Statement begin and end date (time period) are set during the application creation.  <br />A Statement is generated for each time period.  <br />  <br />User can receive statements from:  <br /><code>1</code> = Last Period  <br /><code>2</code> = 2 periods prior  <br /><code>3</code> = 3 periods prior  <br /><code>6</code> = 6 periods prior  <br />  <br /><code>Ex1</code>: User statement is Feb 15 to March 17th. On March 31st, for query StatementPeriodType = 1, the response will display Feb 15th to March 17th statement from the last period.  <br />  <br /><code>Ex2</code>: User statement is set to report 14/15th - 14/15th of previous to the current month.  <br />On March 31st, for query StatementPeriodType = 2, the response will display statements for Jan 15 -Feb 14th and Feb 15-March 14</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the customer's Account ID.  <br />This can be retrieved using the <strong>Lender -&gt; Account -&gt; Get Wallet Balance</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>ApplicationId</td>\n<td><em>Integer</em></td>\n<td>The unique application identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customer number.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>WalletAccountNumber</td>\n<td><em>Integer</em></td>\n<td>The wallet account number.</td>\n</tr>\n<tr>\n<td>StatementDate</td>\n<td><em>DateTime</em></td>\n<td>The date of statement.</td>\n</tr>\n<tr>\n<td>StatementPeriodStart</td>\n<td><em>DateTime</em></td>\n<td>The start date of the statement.</td>\n</tr>\n<tr>\n<td>StatementPeriodEnd</td>\n<td><em>DateTime</em></td>\n<td>The end date of the statement.</td>\n</tr>\n<tr>\n<td>PaymentDueDate</td>\n<td><em>DateTime</em></td>\n<td>The due date of the payment.</td>\n</tr>\n<tr>\n<td>CreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The credit limit for the account.</td>\n</tr>\n<tr>\n<td>availableBalance</td>\n<td><em>Decimal</em></td>\n<td>The available balance of the account.</td>\n</tr>\n<tr>\n<td>BalanceOwing</td>\n<td><em>Decimal</em></td>\n<td>The balance owing for the account.</td>\n</tr>\n<tr>\n<td>MinimumPaymentPercent</td>\n<td><em>Decimal</em></td>\n<td>The minimum payment percentage.</td>\n</tr>\n<tr>\n<td>MinimumPaymentAmount</td>\n<td><em>Decimal</em></td>\n<td>The minimum payment amount.</td>\n</tr>\n<tr>\n<td>PurchaseInterestRate</td>\n<td><em>Decimal</em></td>\n<td>The interest rate for purchases.</td>\n</tr>\n<tr>\n<td>CashAdvanceInterestRate</td>\n<td><em>Decimal</em></td>\n<td>The interest rate for cash advances.</td>\n</tr>\n<tr>\n<td>OverduePaymentInterestRate</td>\n<td><em>Decimal</em></td>\n<td>The interest rate for overdue payments.</td>\n</tr>\n<tr>\n<td>OpeningBalance</td>\n<td><em>Decimal</em></td>\n<td>The account opening balance.</td>\n</tr>\n<tr>\n<td>ClosingBalance</td>\n<td><em>Decimal</em></td>\n<td>The account closing balance.</td>\n</tr>\n<tr>\n<td>TotalPayments</td>\n<td><em>Decimal</em></td>\n<td>Total payments made.</td>\n</tr>\n<tr>\n<td>TotalPurchases</td>\n<td><em>Decimal</em></td>\n<td>Total purchases made.</td>\n</tr>\n<tr>\n<td>TotalRefundsAndCredits</td>\n<td><em>Decimal</em></td>\n<td>Total number of refunds and credits.</td>\n</tr>\n<tr>\n<td>TotalCashAdvances</td>\n<td><em>Decimal</em></td>\n<td>Total of cash advances.</td>\n</tr>\n<tr>\n<td>TotalDebitAdjustments</td>\n<td><em>Decimal</em></td>\n<td>Total of debit adjustments.</td>\n</tr>\n<tr>\n<td>TotalFees</td>\n<td><em>Decimal</em></td>\n<td>Total fees accumulated.</td>\n</tr>\n<tr>\n<td>TotalInterest</td>\n<td><em>Decimal</em></td>\n<td>Total accumulated interest.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of transaction.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>Description of the transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Amount of the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetStatementsOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>GetStatementsOpE2</td>\n<td>Statement Period Is Invalid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v2.0</td>\n<td>September 2022</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetStatementsV2"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2ef1d7e9-d64b-4015-8ada-f24757da370b","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000791\",\r\n  \"StatementPeriodType\": 1,\r\n  \"AccountId\": 164030\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatementsV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Aug 2022 07:15:12 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 127069,\n            \"ApplicationId\": 855,\n            \"CustomerNumber\": \"10220000791\",\n            \"CardNumber\": \"445500******0944\",\n            \"WalletAccountNumber\": 541762779,\n            \"StatementDate\": \"2022-06-20T23:59:59\",\n            \"StatementPeriodStart\": \"2022-05-15T00:00:00\",\n            \"StatementPeriodEnd\": \"2022-06-20T23:59:59\",\n            \"PaymentDueDate\": \"2022-06-25T23:59:59\",\n            \"CreditLimit\": 2000,\n            \"availableBalance\": 1289.61,\n            \"BalanceOwing\": 710.39,\n            \"MinimumPaymentPercent\": 40,\n            \"MinimumPaymentAmount\": 284.16,\n            \"PurchaseInterestRate\": 40,\n            \"CashAdvanceInterestRate\": 50,\n            \"OverduePaymentInterestRate\": 40,\n            \"OpeningBalance\": 655.01,\n            \"ClosingBalance\": 710.39,\n            \"ActivitySummary\": {\n                \"TotalPayments\": 0,\n                \"TotalPurchases\": 0,\n                \"TotalRefundsAndCredits\": 0,\n                \"TotalCashAdvances\": 0,\n                \"TotalDebitAdjustments\": 0,\n                \"TotalFees\": 10,\n                \"TotalInterest\": 19.18\n            },\n            \"StatementTransactionList\": [\n                {\n                    \"TransactionType\": \"Fee\",\n                    \"TransactionDate\": \"2022-05-17T09:43:25\",\n                    \"Description\": \"Monthly Fee\",\n                    \"Amount\": 5\n                },\n                {\n                    \"TransactionType\": \"Fee\",\n                    \"TransactionDate\": \"2022-05-20T17:16:33\",\n                    \"Description\": \"Overdue Fee \",\n                    \"Amount\": 26.2\n                },\n                {\n                    \"TransactionType\": \"Fee\",\n                    \"TransactionDate\": \"2022-05-24T11:38:12\",\n                    \"Description\": \"Inactivity\",\n                    \"Amount\": 5\n                },\n                {\n                    \"TransactionType\": \"Interest\",\n                    \"TransactionDate\": \"2022-06-21T03:26:51\",\n                    \"Description\": \"Card Interest \",\n                    \"Amount\": 18.95\n                },\n                {\n                    \"TransactionType\": \"Interest\",\n                    \"TransactionDate\": \"2022-06-21T03:26:51\",\n                    \"Description\": \"Card Interest Round Adjustmen\",\n                    \"Amount\": 0.24\n                }\n            ]\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ba0f0707-bdce-4cb4-bce2-2fce75feb46d"},{"name":"Get Statement V3","id":"62ea626d-2e1b-4d7c-9907-dbaa3c3b8574","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10010000099\",\r\n  \"StatementPeriodType\": 11,\r\n  \"AccountId\": 16448\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatementsV3","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Statement V3 API retrieves the statement for the specified applicant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Unique Customer Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StatementPeriodType</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>This field must be between 1-12.  <br />Statement Period Type:  <br />LastMonth = <code>1</code>, 2Months = <code>2</code>, 3Months = <code>3</code>, 6Months = <code>6</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates Customer's Account ID.  <br />This can be retrieved using the <strong>Lender -&gt; Account -&gt; Get Wallet Balance</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>The statement identifier.</td>\n</tr>\n<tr>\n<td>ApplicationId</td>\n<td><em>Integer</em></td>\n<td>The applications unique identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers number.</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>The card number, partially masked for security.</td>\n</tr>\n<tr>\n<td>WalletAccountNumber</td>\n<td><em>Integer</em></td>\n<td>The wallet account number.</td>\n</tr>\n<tr>\n<td>StatementDate</td>\n<td><em>DateTime</em></td>\n<td>The statement date.</td>\n</tr>\n<tr>\n<td>StatementPeriodStart</td>\n<td><em>DateTime</em></td>\n<td>The statement period start date.</td>\n</tr>\n<tr>\n<td>StatementPeriodEnd</td>\n<td><em>DateTime</em></td>\n<td>The statement period end date.</td>\n</tr>\n<tr>\n<td>PaymentDueDate</td>\n<td><em>DateTime</em></td>\n<td>The payment due date.</td>\n</tr>\n<tr>\n<td>CreditLimit</td>\n<td><em>Decimal</em></td>\n<td>The accounts credit limit.</td>\n</tr>\n<tr>\n<td>AvailableBalance</td>\n<td><em>Decimal</em></td>\n<td>The available balance of the account.</td>\n</tr>\n<tr>\n<td>BalanceOwing</td>\n<td><em>Decimal</em></td>\n<td>The closing balance of the statement.</td>\n</tr>\n<tr>\n<td>MinimumPaymentPercent</td>\n<td><em>Decimal</em></td>\n<td>The minimum payment percentage.</td>\n</tr>\n<tr>\n<td>MinimumPaymentAmount</td>\n<td><em>Decimal</em></td>\n<td>The minimum payment amount.</td>\n</tr>\n<tr>\n<td>PurchaseInterestRate</td>\n<td><em>Decimal</em></td>\n<td>The interest rate for purchases.</td>\n</tr>\n<tr>\n<td>CashAdvanceInterestRate</td>\n<td><em>Decimal</em></td>\n<td>The interest rate for cash advances.</td>\n</tr>\n<tr>\n<td>OverduePaymentInterestRate</td>\n<td><em>Decimal</em></td>\n<td>The interest rate for overdue payments.</td>\n</tr>\n<tr>\n<td>OpeningBalance</td>\n<td><em>Decimal</em></td>\n<td>The statement opening balance.</td>\n</tr>\n<tr>\n<td>ClosingBalance</td>\n<td><em>Decimal</em></td>\n<td>The statement closing balance.</td>\n</tr>\n<tr>\n<td>WaitingPayment</td>\n<td><em>Decimal</em></td>\n<td>Waiting payment.</td>\n</tr>\n<tr>\n<td>TotalPendingBalance</td>\n<td><em>Decimal</em></td>\n<td>The total pending balance.</td>\n</tr>\n<tr>\n<td>TotalPayments</td>\n<td><em>Decimal</em></td>\n<td>Total payments made.</td>\n</tr>\n<tr>\n<td>TotalPurchases</td>\n<td><em>Decimal</em></td>\n<td>Total purchases.</td>\n</tr>\n<tr>\n<td>TotalRefundsAndCredits</td>\n<td><em>Decimal</em></td>\n<td>Total of refunds and credits.</td>\n</tr>\n<tr>\n<td>TotalCashAdvances</td>\n<td><em>Decimal</em></td>\n<td>Total cash advances.</td>\n</tr>\n<tr>\n<td>TotalDebitAdjustments</td>\n<td><em>Decimal</em></td>\n<td>The total debit adjustments.</td>\n</tr>\n<tr>\n<td>TotalFees</td>\n<td><em>Decimal</em></td>\n<td>Total amount of fees incurred.</td>\n</tr>\n<tr>\n<td>TotalInterest</td>\n<td><em>Decimal</em></td>\n<td>The total interest incurred.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The statement transaction type.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The statement transaction date.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The statement transaction description.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The statement transaction amount.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>The statement transaction fee amount.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetStatementsOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>GetStatementsOpE2</td>\n<td>Statement Period Is Invalid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>January 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GetStatementsV3"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5745f70b-33e4-4e01-9777-05c49a1c3ca7","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10010000097\",\r\n  \"StatementPeriodType\": 3,\r\n  \"AccountId\": 8820\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GetStatementsV3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 10 Jan 2023 14:01:08 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.21.6","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 12679,\n            \"ApplicationId\": 15,\n            \"CustomerNumber\": \"10010000097\",\n            \"CardNumber\": \"445500******0668\",\n            \"WalletAccountNumber\": 529406530,\n            \"StatementDate\": \"2023-11-06T00:00:00\",\n            \"StatementPeriodStart\": \"2023-10-07T00:00:00\",\n            \"StatementPeriodEnd\": \"2023-11-06T00:00:00\",\n            \"PaymentDueDate\": \"2023-11-11T00:00:00\",\n            \"CreditLimit\": 3000,\n            \"availableBalance\": 937.6,\n            \"BalanceOwing\": 1664.4,\n            \"MinimumPaymentPercent\": 0,\n            \"MinimumPaymentAmount\": 166.44,\n            \"PurchaseInterestRate\": 25,\n            \"CashAdvanceInterestRate\": 17,\n            \"OverduePaymentInterestRate\": 5,\n            \"OpeningBalance\": 1590.35,\n            \"ClosingBalance\": 1664.4,\n            \"WaitingPayment\": 0,\n            \"TotalPendingBalance\": 398,\n            \"ActivitySummary\": {\n                \"TotalPayments\": 0,\n                \"TotalPurchases\": 50,\n                \"TotalRefundsAndCredits\": 0,\n                \"TotalCashAdvances\": 0,\n                \"TotalDebitAdjustments\": 0,\n                \"TotalFees\": 23,\n                \"TotalInterest\": 1.05\n            },\n            \"StatementTransactionList\": [\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Shell Marietta - Marie's\",\n                    \"Amount\": 10,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Publix - Marietta\",\n                    \"Amount\": 10,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Shell Marietta - Marie's\",\n                    \"Amount\": 10,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Shell Marietta - Marie's\",\n                    \"Amount\": 10,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Jiffy Lube\",\n                    \"Amount\": 10,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Fee\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Monthly Card Fee - Monthly Fee\",\n                    \"Amount\": 13,\n                    \"FeeAmount\": 0\n                },\n                {\n                    \"TransactionType\": \"Interest\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Interest charged\",\n                    \"Amount\": 1.05,\n                    \"FeeAmount\": 0\n                }\n            ],\n            \"PendingStatementTransactionList\": [\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:39:33.247\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 14,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:39:57.42\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 16,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:41:08.63\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 90,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:41:27.817\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 100,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:44:24.51\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 110,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:48:10.283\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T15:07:53.85\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 5\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T15:22:08.147\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 16,\n                    \"FeeAmount\": 5\n                }\n            ]\n        },\n        {\n            \"Id\": 12678,\n            \"ApplicationId\": 15,\n            \"CustomerNumber\": \"10010000097\",\n            \"CardNumber\": \"445500******0668\",\n            \"WalletAccountNumber\": 529406530,\n            \"StatementDate\": \"2023-10-06T00:00:00\",\n            \"StatementPeriodStart\": \"2023-09-07T00:00:00\",\n            \"StatementPeriodEnd\": \"2023-10-06T00:00:00\",\n            \"PaymentDueDate\": \"2023-10-11T00:00:00\",\n            \"CreditLimit\": 3000,\n            \"availableBalance\": 1011.65,\n            \"BalanceOwing\": 1590.35,\n            \"MinimumPaymentPercent\": 0,\n            \"MinimumPaymentAmount\": 159.04,\n            \"PurchaseInterestRate\": 25,\n            \"CashAdvanceInterestRate\": 17,\n            \"OverduePaymentInterestRate\": 5,\n            \"OpeningBalance\": 1345.5,\n            \"ClosingBalance\": 1590.35,\n            \"WaitingPayment\": 0,\n            \"TotalPendingBalance\": 398,\n            \"ActivitySummary\": {\n                \"TotalPayments\": 0,\n                \"TotalPurchases\": 218,\n                \"TotalRefundsAndCredits\": 0,\n                \"TotalCashAdvances\": 0,\n                \"TotalDebitAdjustments\": 0,\n                \"TotalFees\": 25,\n                \"TotalInterest\": 1.85\n            },\n            \"StatementTransactionList\": [\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Yuen Shirts\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Fee\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Monthly Card Fee - Monthly Fee\",\n                    \"Amount\": 13,\n                    \"FeeAmount\": 0\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 101.5,\n                    \"FeeAmount\": 5\n                },\n                {\n                    \"TransactionType\": \"Interest\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Interest charged\",\n                    \"Amount\": 1.85,\n                    \"FeeAmount\": 0\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 101.5,\n                    \"FeeAmount\": 5\n                }\n            ],\n            \"PendingStatementTransactionList\": [\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:39:33.247\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 14,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:39:57.42\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 16,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:41:08.63\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 90,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:41:27.817\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 100,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:44:24.51\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 110,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:48:10.283\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T15:07:53.85\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 5\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T15:22:08.147\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 16,\n                    \"FeeAmount\": 5\n                }\n            ]\n        },\n        {\n            \"Id\": 12677,\n            \"ApplicationId\": 15,\n            \"CustomerNumber\": \"10010000097\",\n            \"CardNumber\": \"445500******0668\",\n            \"WalletAccountNumber\": 529406530,\n            \"StatementDate\": \"2023-09-06T00:00:00\",\n            \"StatementPeriodStart\": \"2023-08-07T00:00:00\",\n            \"StatementPeriodEnd\": \"2023-09-06T00:00:00\",\n            \"PaymentDueDate\": \"2023-09-11T00:00:00\",\n            \"CreditLimit\": 3000,\n            \"availableBalance\": 1256.5,\n            \"BalanceOwing\": 1345.5,\n            \"MinimumPaymentPercent\": 0,\n            \"MinimumPaymentAmount\": 134.55,\n            \"PurchaseInterestRate\": 25,\n            \"CashAdvanceInterestRate\": 17,\n            \"OverduePaymentInterestRate\": 5,\n            \"OpeningBalance\": 1200.76,\n            \"ClosingBalance\": 1345.5,\n            \"WaitingPayment\": 0,\n            \"TotalPendingBalance\": 398,\n            \"ActivitySummary\": {\n                \"TotalPayments\": 0,\n                \"TotalPurchases\": 218,\n                \"TotalRefundsAndCredits\": 100,\n                \"TotalCashAdvances\": 0,\n                \"TotalDebitAdjustments\": 0,\n                \"TotalFees\": 25,\n                \"TotalInterest\": 1.74\n            },\n            \"StatementTransactionList\": [\n                {\n                    \"TransactionType\": null,\n                    \"TransactionDate\": \"0001-01-01T00:00:00\",\n                    \"Description\": null,\n                    \"Amount\": 0,\n                    \"FeeAmount\": 0\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Delta Airlines\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Fee\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Monthly Card Fee - Monthly Fee\",\n                    \"Amount\": 13,\n                    \"FeeAmount\": 0\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 101.5,\n                    \"FeeAmount\": 5\n                },\n                {\n                    \"TransactionType\": \"Interest\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Interest charged\",\n                    \"Amount\": 1.74,\n                    \"FeeAmount\": 0\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 101.5,\n                    \"FeeAmount\": 5\n                },\n                {\n                    \"TransactionType\": \"Payment\",\n                    \"TransactionDate\": \"2022-12-07T00:00:00\",\n                    \"Description\": \"Refunds and Credits - Yuen Shirts\",\n                    \"Amount\": 100,\n                    \"FeeAmount\": 2\n                }\n            ],\n            \"PendingStatementTransactionList\": [\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:39:33.247\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 14,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:39:57.42\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 16,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:41:08.63\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 90,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:41:27.817\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 100,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:44:24.51\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 110,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T13:48:10.283\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 2\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T15:07:53.85\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 15,\n                    \"FeeAmount\": 5\n                },\n                {\n                    \"TransactionType\": \"Purchase\",\n                    \"TransactionDate\": \"2022-12-07T15:22:08.147\",\n                    \"Description\": \"SPEND.COM\",\n                    \"Amount\": 16,\n                    \"FeeAmount\": 5\n                }\n            ]\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"62ea626d-2e1b-4d7c-9907-dbaa3c3b8574"},{"name":"Generate Statement Pdf File","id":"aa613983-8708-4ddc-b101-de47570590ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"12345","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GenerateStatementPdfFile","description":"<h3 id=\"description\">Description</h3>\n<p>The Generate Statement PDF File API generates the specified statement and converts it into a PDF file.</p>\n<p><b>NOTE:</b> The ID which retrieved from the response body of the Get Statement api must be sent.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LoanStatementPdfFileReport_FileGenerationFailed</td>\n<td>Generating Loan Statement PDF File Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","GenerateStatementPdfFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"37704140-ab54-4029-8a0c-7e4cbb2ae00c","name":"Generate Statement Pdf File","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"125988","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GenerateStatementPdfFile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 11:58:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"4297","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": \"JVBERi0xLjMNCjEgMCBvYmoNClsvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJXQ0KZW5kb2JqDQo2IDAgb2JqDQo8PCAvTGVuZ3RoIDI4NjcgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4gc3RyZWFtDQpYCa1bTXPcuBG9b5X/Aw5OVbJlc4lv4ChbcWqz3thrq8qHVA5cDW2PMzPyzoy88b/PaxD8mCGHIkFZVZaGIvp1NxqvGw3oyQ9/sJzxPHPMGJspxZzIs9yxfck+sN0T/JoLl3HDlDKZE3jV4JNhXGZ557UXN+ynV5L5zHvPbj5CJn3tPzGlRWa5YzevGXc+c0ZBks+sU+xmxf76lD/Luc28/hu7+cJufmR/v3nyw28EK2QH1bsMWopMzYQkIa5CVN4ExJebu8N694m9KDbF7rbs4cpcZdYwwwFpgvGSkP0s3CCEpAgOxQn2/bE4lttyd2TX+GEAVWfSMO19ZjS8LGxmID7By0ESRJhcZKZy8tvie4V8X46jO2irYC5mxBK6SEbXTmbanFn+ttyv71Y9dCVNZrWHyz3GcsBzhGOC6QoBlnvyuoA5LqBfl7dM8GdM5IIPINssB3Ll9gZZz0f2PARNLuHzCvifxQ7yArDoA2N+OQHD44Y8ThrnPMloEmVp8lQ932Qz15XNz0ccAGGZzgVEvvsHo0D9k/37P/i0wjSKYI/UWJqebZnWPFM0R/HJhr2fMF5bG8K5HV8/CeOrwPO0ynUmBDyvZDA1Yb1BDgQo5TJRxfz9/vZzcSgP7OfdsdyXhyN7dyn0SQNhoAHjRoEoktddUEH4jPtKiZfF4TO7Wn0jopmoRw4DOBQB7+WpCzCoAU43rgrFN9/K/Qprv+aBQQWUPpkKrwl/vhs0uCOXojMTGvkk/0sfz7oQEdHzViCUeMraaxBl/gAiLKTVTj528DFMTMpjmoOvkCkVsUW14vgQ4tjykMHXBukJvqblEeiyftBfXfixPxypWBnRGR4fhOHwJb6gOVIQEqmVKuN4MUcO5QzsjKwKoz+GVGuJ/S1oWIeJyKv/Kp9UP9NX+OHk3dst++nnrWLXdyx4mFd5xEpHv+VgV6WZcY2siXUCSSExHuNtNaXXL18Uu/+y63J7N9nLQlMaYA7T5clL8XPliUhAFBMKzxTyNRU3pCs4oA6I+IS+wtPT10/NH1EkzICjOifo0ZmQDRiRY+5473N8fcMObTVkiJ4QwQKzQEuMCD+hHLI5wjVm5xfF52K13u/37HuxuV3vut6dIRJUk7lYYV09nytEykCZXSF8tgyXISpPZLAPoNtVsSnZ1beSpVqGjEWCg2Vfiv89Y292xwKFTKo8g6VjK3m/zJaBCtqdiLCz/YQIFqdqvJ7tG+TpUN52hKjZMlDtiRMR7+eK0EiS/FSNfpEXi1uLktwLzoQKtI+6K6mwtTmWXq+yLXYr9vL+cLzblnsk+o93+21xXN/tzpRpOBmVLm1uUP1hU4TIkFlFl1zylpVF9Y4Cno07oPnJiqRYEgO1RZWsmkLk5edi/6nsF+QVMtJxJoxeiqzhdxELkVcl6rEHULHvElYuRgXJCtcrwi6BYlEIxxeDStL9rP68BInRAnO/FBIJSTRl/+/rIyz9gkCkqLwIbXwm/OKQ0qgHZPTxu/Lj/W51qNbBvlytL4M7g52OWgzuAnt0dreXAGlPJrlYCmhQW5GYUE9/LXdjLQQuVBd5UctEZ45YsoN+uWUScWsXL8AVYDuK5I6bn1KJexEyhtRjQHbCahwzrqDHwOysonHMSBSPgdkhi3HMyIiPgdmy4jhkpP7HgOzQ/yhmnegeAbOb7IYwL1fqVV6m3p/s7Bji5wd6Hqc5vRlcP4gbjkhKIieJ2GiHxJ/NLOMjJaGi1FUAvb/fbov9d3b3kV3d3t7doyS5uj2uv62P3y/UQxyVsqUeDRe0beZhT5LUZ6SubuSIpgT61/kurQNrqfRajGpRgeYqJvj9agiRGgI2FyeGapcASn1F2vB3TUWY5uGfH2grokxHiWhsnjkDQKw6Rb0c58U8XLiK2pmw1cWuosqVMOLH8C/32g+2r43DrltjUOPn+dihgw0HG9TYdbP+Q7HZlMcmwoZcHvuaDXqq5Z46CO4EXSMzSC+5mdFmyUOzkva7vuqTCHJo/PxgD7MabRTtKG07vH7Q9DArj9NvJfiL+lmJJwbwN6UiGbebVSXFXq+36+Ng79pFWIREetdcE2sKdZoEUWPkg2xdWRszIRKh4lWfMtFaWXcJr74V603xO/bqYTlfKq0UBkipAjzPyWpwYVrjnNp4FGOkA49Z8fnT4cqqmWPKBNSvB7UEWPjc2DTTsTKtrZswwVr25k+UlZdnmo5lwvFM4ilFM9NYlvbBarK2WXnUgBLFgPBVbzylKR1tzpuO6a/r3Xp7v6170oMTzbvoMFonTjSFKvgTyxyTV8EPtIcbe504neN0e6mmqZn7zGB2tSUS7dtNrRVXlQ1W2NAMdWknEhqFlTGVFnWunFcO0TFOqO6xSsFJDQPWDyacAlFJZB3yL2+H1w8igfLQ2xTeZLmizoxM6c+QEEtSXHP017ZnYnnULz0rZORXpYjXM4+PXPWh7Sg0xhG0pbem7RARYrltkT0k5Ho+MjZ61FLsIt/cHYsNuyn3W3azL3aH4pb6UP3NMXfIbq7RgE5OQWTzbUdsSUD3VQi9HuoH1O2m/v7cKsy4bXSgaiGnKwZzlRBWh55cX4l6scVMSupUrYr+6gfPgOHaYAAJODlfF4VNv+KnujxA70ZnmovWDTmdwvsEaGPD0V8XeiLrxIWgia7SFwKKP7rfIbRvePZyeqmXQMRMXQIc2y7sB04wh7eZMeAjXmrAC+RdukryMGAT3hExObwleFzbKZBNENcTmRrEdNXGuYkz2QRwbWhqAFN94pV60ND89GSUi87ZKBKHEJIJzK8HNW4Zpj3EWXwwdLQ6LqB+gM0YLc8hAUPj4+utAhPHn+k7aTwfFcCRbinyRzywVIGh8Y0DavypDjxVd9J4PipA0Mk1rcSJHkjRYGh844FGgYkCzhWeJoGPi5DeVuQw0QtpSgxKaBzR6DBRwrnO0yTwcRF0yyLw1URHpCkxKKFxRKPDRAnnOk+TwMdFUBmvZjBDmhKDEhpHNDpMNeNc6WkiljL0YIpoGS4+oO1NPnQ57oKA+H6rwYiAUYpdOn4mwaXgD+aoxgG1AhMN6DHs0vFzqS1FgcEk1Xig0WCiCX1yXS5hLq+l6TCcpxpHNEpMNKNPrsslzOW1NB2G81TjiEaJiWb0yXW5hLncmqbDcJ5qHNEoMVXEudYXRPxBZ3bSMEk7b62YDb3s2Z0nHzpO0urMxs7TeOeFjqUASlcxpWOWDvHCZjs/P5bSD7W8IAh7X0lHBnG/P3C9n8M7Bits4MRSuKCJMcF8rN7cZMK1T+ozS7qU7FqVuYXrvUrROYjy5kTnjrfYdXm43a+/Dt6dumTGudZYfMgvzvpzO6QTdH2uNsOZjI4D5xsR5JwZMdhYuaxz0NB1VKazPnXm+ZGZC2fNUtpMKNteAK4f1NHNKbrpUr2BoRf/huahMIMUOj5VJnwPUbY+3G7uDvf7gbsvARPvCsmXQtI5W7w68Gt5OBSf+u2zkeP4cFGZrkQLzk/vSNOD+v5vWPq+XY2u6vnPD4ogyZ6uxldlOdYCvTy/Z9HQTvBpQHOHmW2XJdYWT9Kd5Ch3cVHefP86g1RM0KnR/IxkWuIF6Qn6JumGlM10EvPScZYQPNOxXfS23K2o8f4gA9MNE0+hYBYyMChf5HSlwKURsCE3iOCGioC5a590CJge1xovJGBODdOOzo9BwF2tKwK2IOAzO4g46XFtxyIGtmdWJDBwV8WKgqU+U3qUg+kPBJ3MctQe1RJV7YMOwZDQJtgWEQxdjOvavIhgurY26p/NGJhB6zbuljBMaGFfiLq5DAOdWs3PVlHQPKzz0T9s/e3/UnSU7Q0KZW5kc3RyZWFtDQplbmRvYmoNCjIgMCBvYmoNCjw8IC9UeXBlIC9QYWdlIC9QYXJlbnQgNyAwIFIgL01lZGlhQm94IFswIDAgNjY3LjQ0IDg0MS42OF0gL0NvbnRlbnRzIDYgMCBSIC9SZXNvdXJjZXMgPDwgL1Byb2NTZXQgMSAwIFIgL1hPYmplY3QgPDwgL0ltNCA0IDAgUiA+PiAvRm9udCA8PCAvRjMgMyAwIFIgL0Y1IDUgMCBSID4+ID4+ID4+DQplbmRvYmoNCjQgMCBvYmoNCjw8IC9UeXBlIC9YT2JqZWN0IC9TdWJ0eXBlIC9JbWFnZSAvQ29sb3JTcGFjZSAvRGV2aWNlUkdCIC9CaXRzUGVyQ29tcG9uZW50IDggL0ZpbHRlciAvRmxhdGVEZWNvZGUgL01hc2sgWzAgMCAwIDAgMCAwXSAvV2lkdGggMSAvSGVpZ2h0IDEgL0xlbmd0aCAxMSA+Pg0Kc3RyZWFtDQpYCWNgYAAAAAMAAQ0KZW5kc3RyZWFtDQplbmRvYmoNCjkgMCBvYmoNCjw8IC9MZW5ndGggNDUgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4gc3RyZWFtDQpYCePlKlQwUDA00LNQMDMz1zMxUbAwMtAzsFAoSlUIV8jj5QrkJagCAMYVDZkNCmVuZHN0cmVhbQ0KZW5kb2JqDQo4IDAgb2JqDQo8PCAvVHlwZSAvUGFnZSAvUGFyZW50IDcgMCBSIC9NZWRpYUJveCBbMCAwIDY2Ny40NCA4NDEuNjhdIC9Db250ZW50cyA5IDAgUiAvUmVzb3VyY2VzIDw8IC9Qcm9jU2V0IDEgMCBSIC9YT2JqZWN0IDw8ID4+IC9Gb250IDw8ID4+ID4+ID4+DQplbmRvYmoNCjMgMCBvYmoNCjw8IC9UeXBlIC9Gb250IC9TdWJ0eXBlIC9UeXBlMSAvQmFzZUZvbnQgL0hlbHZldGljYSAvRW5jb2RpbmcgL1dpbkFuc2lFbmNvZGluZyA+Pg0KZW5kb2JqDQo1IDAgb2JqDQo8PCAvVHlwZSAvRm9udCAvU3VidHlwZSAvVHlwZTEgL0Jhc2VGb250IC9IZWx2ZXRpY2EtQm9sZCAvRW5jb2RpbmcgL1dpbkFuc2lFbmNvZGluZyA+Pg0KZW5kb2JqDQo3IDAgb2JqDQo8PCAvVHlwZSAvUGFnZXMgL0tpZHMgWyAyIDAgUiA4IDAgUiBdIC9Db3VudCAyID4+DQplbmRvYmoNCjEwIDAgb2JqDQo8PCAvVHlwZSAvQ2F0YWxvZyAvUGFnZXMgNyAwIFIgPj4NCmVuZG9iag0KMTEgMCBvYmoNCjw8IC9UaXRsZSA8ZmVmZjAwNTMwMDc0MDA2MTAwNzQwMDY1MDA2ZDAwNjUwMDZlMDA3NDAwNTAwMDY0MDA2NjAwNDYwMDY5MDA2YzAwNjU+DQovQXV0aG9yIDw+DQovU3ViamVjdCA8Pg0KL0NyZWF0b3IgKE1pY3Jvc29mdCBSZXBvcnRpbmcgU2VydmljZXMgMTUuMC4wLjApDQovUHJvZHVjZXIgKE1pY3Jvc29mdCBSZXBvcnRpbmcgU2VydmljZXMgUERGIFJlbmRlcmluZyBFeHRlbnNpb24gMTUuMC4wLjApDQovQ3JlYXRpb25EYXRlIChEOjIwMjExMjIyMDEwNTQ4LTA1JzAwJykNCj4+DQplbmRvYmoNCnhyZWYNCjAgMTINCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAxMCAwMDAwMCBuDQowMDAwMDAzMDEwIDAwMDAwIG4NCjAwMDAwMDM2NzMgMDAwMDAgbg0KMDAwMDAwMzE5NiAwMDAwMCBuDQowMDAwMDAzNzczIDAwMDAwIG4NCjAwMDAwMDAwNjUgMDAwMDAgbg0KMDAwMDAwMzg3OCAwMDAwMCBuDQowMDAwMDAzNTE4IDAwMDAwIG4NCjAwMDAwMDMzOTcgMDAwMDAgbg0KMDAwMDAwMzk0NiAwMDAwMCBuDQowMDAwMDAzOTk5IDAwMDAwIG4NCnRyYWlsZXIgPDwgL1NpemUgMTIgL1Jvb3QgMTAgMCBSIC9JbmZvIDExIDAgUiA+Pg0Kc3RhcnR4cmVmDQo0Mjk0DQolJUVPRg==\",\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"aa613983-8708-4ddc-b101-de47570590ef"}],"id":"4adcec96-da8b-4df6-a795-28c404122379","_postman_id":"4adcec96-da8b-4df6-a795-28c404122379","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Account","item":[{"name":"Add Wallet Account","id":"d75985ec-5604-419c-a6e1-7c9a83b11bf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000333\",\r\n  \"AccountOwnerName\": \"Hakan Calhanoglu\",\r\n  \"AccountName\": \"Hakan Calhanoglu's Wallet Account\",\r\n  \"ApplicantId\": 10123\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/AddWalletAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Add Wallet Account API creates a wallet account for the specified applicant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the account owner name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the account name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Applicant.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestCustomerNumberNullCheck</td>\n<td>Customer Number Cannot Be Null.</td>\n</tr>\n<tr>\n<td>RequestAccountOwnerNameNullCheck</td>\n<td>Account Owner Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>RequestAccountNameNullCheck</td>\n<td>Account Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>AssignClientCustomerE13</td>\n<td>Customer Number Not Found For Wallet Program.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Wallet","AddWalletAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d75985ec-5604-419c-a6e1-7c9a83b11bf2"},{"name":"Create Security Number","id":"9a7842dd-f990-45a3-acf3-31cac5fbe2d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicantId\": 10116,\r\n  \"ApplicationId\": 10106\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateLenderSecurityAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Security Number API creates the security number for specified applicant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Applicant.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Application.  <br />This can be retrieved using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SecurityAccountId</td>\n<td><em>Numeric</em></td>\n<td>The unique security account identifier.</td>\n</tr>\n<tr>\n<td>SecurityAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The security account number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","CreateLenderSecurityAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7179715b-adf7-44b7-9d38-623ad7a6156c","name":"Create Security Number","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicantId\": 20871,\r\n  \"ApplicationId\": 727\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/CreateLenderSecurityAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 09:18:30 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"175","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"SecurityAccountId\": 161225,\n        \"SecurityAccountNumber\": 547730788\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9a7842dd-f990-45a3-acf3-31cac5fbe2d7"},{"name":"Funds Transfer To Card","id":"a7800fb4-6c2b-4b72-8203-540d6a128439","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"TransactionType\": \"C\",\r\n  \"SourceAccountId\": 12345,\r\n  \"CardId\": 12345,\r\n  \"CardFinancialId\": null,\r\n  \"Amount\": 250.00,\r\n  \"Description\": \"Test Quick Funds Transfer via Lender API\",\r\n  \"TransactionCodeId\":0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferToCard","description":"<h3 id=\"description\">Description</h3>\n<p>The Funds Transfer to Card API transfers funds to the Customer's card.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Lenght</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type code:  <br />Credit <code>C</code>  <br />Debit <code>D</code></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Account ID for the funds transfer.  <br />This can be retrieved using the <strong>Client -&gt; Account -&gt; Get All Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates Card ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card -&gt; Card List</strong> API.  <br />  <br /><strong>Required</strong> if <code>Secure Card</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CardFinancialId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the card financial ID.  <br />This can be retrieved using the <strong>Wallet -&gt; Card -&gt; Card List</strong> API.  <br />  <br /><strong>Required</strong> if <code>Credit Card</code>, <code>Debit Card</code>, <code>No Name Card</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>9</td>\n<td>The amount of funds to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the description/ reason for the transfer.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CheckMoneyRequestE1</td>\n<td>Amount Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE2</td>\n<td>Transaction Type Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CheckMoneyRequestE3</td>\n<td>Card Cannot Be Null.</td>\n</tr>\n<tr>\n<td>AssignSourceAccountE1</td>\n<td>Source Account Not Found.</td>\n</tr>\n<tr>\n<td>AssignSourceAccountE2</td>\n<td>Insufficient Balance.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","FundsTransfer","FundsTransferToCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e579424a-4b41-4e83-8b0f-9481e92a9ce8","name":"Funds Transfer To Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"TransactionType\": \"C\",\r\n  \"SourceAccountId\":24065,\r\n  \"CardId\": 11805,\r\n  \"CardFinancialId\": 11660,\r\n  \"Amount\": 5.00,\r\n  \"Description\": \"Test Quick Funds Transfer via Lender API\",\r\n  \"TransactionCodeId\":0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferToCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 10:13:55 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a7800fb4-6c2b-4b72-8203-540d6a128439"},{"name":"Get Wallet Balance","id":"4d8ff474-f46f-44e7-9f6d-6579b759b69b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000000000333\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllCustomerAccounts","description":"<h3 id=\"description\">Description</h3>\n<p>The purpose of this API is to get Wallet Balance of the specified Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Lenght</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>AccountFullNumber</td>\n<td><em>Numeric</em></td>\n<td>Full account number, including the bank/transit number where the account is held.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The owner of the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the account.</td>\n</tr>\n<tr>\n<td>PendingBalance</td>\n<td><em>Decimal</em></td>\n<td>Any funds pending clearance to/from the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","GetAllCustomerAccounts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"76c5038c-9952-452d-a143-9477ecef1210","name":"Get Wallet Balance","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000448\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllCustomerAccounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 09:23:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"251","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 161224,\n            \"AccountNumber\": \"575052840\",\n            \"AccountFullNumber\": \"35210009575052840\",\n            \"AccountName\": \"Wallet Account\",\n            \"AccountOwnerName\": \"Daphne51 Testing\",\n            \"Balance\": 818.15,\n            \"PendingBalance\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4d8ff474-f46f-44e7-9f6d-6579b759b69b"},{"name":"Get Security Number Balance","id":"d26532ee-532f-42b1-b21f-be3adb6b689c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicantId\": 10123,\r\n  \"CustomerNumber\": \"10220000333\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetLenderSecurityAccountBalance","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Security Number Balance API retrieves the security number for the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Lenght</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicantId</td>\n<td><em>Numeric</em></td>\n<td>7</td>\n<td>Indicates the unique ID for the Applicant.  <br />This can be retreived using the <strong>Lender -&gt; Application -&gt; Get Application</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Unique Customer Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SecurityAccountId</td>\n<td><em>Numeric</em></td>\n<td>The security accounts unique identifier.</td>\n</tr>\n<tr>\n<td>SecurityAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The security account number.</td>\n</tr>\n<tr>\n<td>SecurityAccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the security account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetLenderSecurityAccountBalance"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5ba90282-1bca-4d28-b7af-20eee893e5c1","name":"Get Security Number Balance","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ApplicantId\": 20871,\r\n  \"CustomerNumber\": \"10220000448\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetLenderSecurityAccountBalance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 09:24:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"199","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"SecurityAccountId\": 161225,\n        \"SecurityAccountNumber\": \"35210009547730788\",\n        \"SecurityAccountBalance\": 550\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d26532ee-532f-42b1-b21f-be3adb6b689c"}],"id":"640a18d8-5b37-426d-8de9-e8cd2b7d64f7","_postman_id":"640a18d8-5b37-426d-8de9-e8cd2b7d64f7","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"1d681906-7644-4b2f-a732-ae372299badd","_postman_id":"1d681906-7644-4b2f-a732-ae372299badd","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"VISA Direct","item":[{"name":"Customer","item":[{"name":"Create Customer","id":"d250897a-7279-4654-bc20-205aceee99c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  //\"customerNumber\": \"\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"email\": \"merchantapi19+3@gmail.com\",\r\n \"interacEmail\": \"kalai.dhanabalanEoHD2H3FQexHyZNfFAUttJqCeIR5ksAhbAajG6Lz0Bfu6QQHx@dcbank.ca\",\r\n  \"mobilePhoneCountryId\":38,\r\n  \"mobilePhoneNumber\": \"5875003033\",\r\n  \"homePhoneCountryId\":38,\r\n  \"homePhoneNumber\": \"5678953423\",\r\n  \"firstName\": \"Fern1\",\r\n  ///\"middleName\": \"Brad\",\r\n \"lastName\": \"Vint \",\r\n  \"birthDate\": \"2025-08-20\",\r\n  \"addressLine1\": \"736 Meridian Road NE\",\r\n  //\"addressLine2\": \"addressLine2\",\r\n  \"cityId\": \"10107\",\r\n  \"countryId\": \"38\",\r\n  \"provinceId\": \"663\",\r\n  \"postalCode\": \"T2A 2N7\",\r\n  //\"mailingAddressLine1\": \"153 EvansparkCircle NW\",\r\n  //\"mailingAddressLine2\": \"153 EvansparkCircle NW\",\r\n  //\"mailingCityId\": \"10107\",\r\n // \"mailingCountryId\": 38,\r\n  //\"mailingProvinceId\": \"663\",\r\n  //\"mailingPostalCode\": \"T3P0A7\",\r\n //\"mailingPoBox\": \"POBox2345\",\r\n  \"occupationId\": \"25026\",\r\n  \"identificationMethodId\":106682 ,\r\n  \"identityTypeId\": 96279,\r\n  \"identityVerificationDate\": \"2025-08-20\",\r\n  \"identityPlaceOfIssue\": \"10093\",\r\n  \"countryOfIssueId\": \"38\",\r\n  \"provinceOfIssueId\": \"664\",\r\n  \"identityNumber\":12345,\r\n  \"identityExpireDate\": \"2025-08-20\",\r\n  //\"creditAgencyId\": 1086,\r\n  //\"creditFileNumber\": \"1234\",\r\n  //\"reliableSource1Name\": \"Ferickc\",\r\n  //\"reliableSource2Name\": \"Dravid\",\r\n  //\"reliableSource1Number\": \"11111\",\r\n // \"reliableSource2Number\": \"2222222\",\r\n //\"legalName\": \"Warren Warew\",\r\n  //\"businessIdNumber\": \"1434\",\r\n  //\"businessName\": \"Real estate\",\r\n  //\"companyName\": \"Vintage Villa\",\r\n  //\"registrationName\": \"Housing Inc.\",\r\n //\"retailName\": \"Show HomesShow HomesShow HomesR\",\r\n  \"programList\": [\r\n    \"ETRANSFER\"\r\n  ],\r\n  \"accountName\": \"EFT\",\r\n  \"financialInstitutionId\": 46,\r\n  \"financialInstitutionBranchId\": 14829,\r\n  \"accountNumber\": \"543564435\",\r\n  \"applicantId\": 0,\r\n  \"canadianTaxResident\": true,\r\n  \"SIN\": \"12345657\",\r\n  //\"AmericanTaxResident\": false\r\n  //\"TIN\": \"111111111\",\r\n  //\"AmericanHasNoTIN\": null,\r\n  //\"AmericanNoTinReasonId\": null,\r\n  //\"AmericanNoTinOtherReason\": null,\r\n  //\"ForeignTaxResident\": true,\r\n  //\"FTIN\": \"22222222222\",\r\n  //\"ForeignHasNoFTIN\": false,\r\n  //\"ForeignNoFtinReasonId\": null,\r\n  //\"ForeignNoFtinOtherReason\": null\r\n}"},"url":"localhost:19100/integrationapi/v2.0/Customer/CreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>DCBank use customer registration to associate cards and payouts. This structure makes it simple to manage and reconcile payment instruments and payout history. Additionally, the Identity resource is optionally used to collect for periodic review of KYC information.</p>\n<p>On the DCBank platform, a customer record is created for each Client's customers. Customer number is unique on the basis of Client. In order for a Customer to benefit from Client's services, a Customer record must first be created. All senders needs to be register in the system for to create AFT transactions. First of all, make sure that create customer process is done for all your customers who will use Visa Direct AFT services.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>If Client wants to use their own system unique customer number instead of DCBank generated customer number, fill this field with their own customer number.  <br />This Customer number will be unique number between Client and DCBank for data exchange.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Customer first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Customer middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Customer last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td>Customer birth date.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Customer Phone number country code.  <br />Select country code from <strong>Parameter &gt; Address &gt; Get Country List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer Phone Number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EMail</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customer Email Address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdType</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Select ID type from the <strong>Parameter -&gt; Identification -&gt; Get Identification Type</strong> API.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdNumber</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Selected ID Number.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td>The ID expiry date.  <br />Optional for KYC Control</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Select <code>ID</code> form <strong>Parameter &gt; Address &gt; Get Country List</strong> API.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Select <code>ID</code> from <strong>Parameter -&gt; Address -&gt; Get Province List By Country</strong> API.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td>Select <code>ID</code> from <strong>Parameter -&gt; Address -&gt; Get City List By Province</strong> API_._  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customers street address.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Customers street address.  <br />Optional for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Customers postal code.  <br /><strong>Required</strong> for KYC Control.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Response Code</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>Response Description</td>\n<td><em>String</em></td>\n<td>Description of the response code.</td>\n</tr>\n<tr>\n<td>Customer Number</td>\n<td><em>Numeric</em></td>\n<td>This customer number will be unique number between Client and DCBank system for data exchange for this specific customer.</td>\n</tr>\n<tr>\n<td>Internal Blacklist Check Result</td>\n<td><em>String</em></td>\n<td>The check result from the internal blacklist.</td>\n</tr>\n<tr>\n<td>ID Verification Result</td>\n<td><em>String</em></td>\n<td>The result of identity verification.</td>\n</tr>\n<tr>\n<td>Watchlist Verification Result</td>\n<td><em>String</em></td>\n<td>The result of the watchlist check.</td>\n</tr>\n<tr>\n<td>Address Verification Result</td>\n<td><em>String</em></td>\n<td>The result of address verification.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address Verification Errors. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address entered is invalid. Please use a suggested address from the ParameterList or visit Canada Post for more valid addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"port":"19100","path":["integrationapi","v2.0","Customer","CreateCustomer"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"580cb80a-ef3c-4c59-8a12-92a6e1298efc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"(Required) ","type":"text"},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"FirstName\": \"string\",\r\n  \"MiddleName\": \"string\",\r\n  \"LastName\": \"string\",\r\n  \"BirthDate\": 0,\r\n  \"PhoneCountryCode\": 0,\r\n  \"PhoneNumber\": 0,\r\n  \"EMail\": \"string\",\r\n  \"IdType\": 0,\r\n  \"IdNumber\": \"string\",\r\n  \"IdExpireDate\": 0,\r\n  \"Region\": 0,\r\n  \"Country\": 0,\r\n  \"Province\": 0,\r\n  \"City\": 0,\r\n  \"AddressLine1\": \"string\",\r\n  \"AddressLine2\": \"string\",\r\n  \"PostalCode\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"Item\": {\r\n    \"CustomerNumber\": 0,\r\n    \"InternalBlackListCheckResult\": \"string\",\r\n    \"IdVerificationResult\": \"string\",\r\n    \"WatchListVerificationResult\": \"string\",\r\n    \"AddressVerificationResult\": \"string\",\r\n    \"ResponseCode\": \"string\",\r\n    \"ResponseDescription\": \"string\"\r\n  },\r\n  \"IsSucceeded\": true,\r\n  \"ErrorList\": [\r\n    {\r\n      \"ErrorCode\": \"string\",\r\n      \"ErrorDescription\": \"string\",\r\n      \"ParameterList\": [\r\n        \"string\"\r\n      ]\r\n    }\r\n  ],\r\n  \"ParameterList\": [\r\n    \"string\"\r\n  ]\r\n}"},{"id":"bad23ac3-7b5d-40d5-b9d4-e76ccb21f1a5","name":"Create Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"FirstName\": \"Mehmet\",\r\n  \"MiddleName\": \"\",\r\n  \"LastName\": \"Seyhan\",\r\n  \"BirthDate\": 19750704,\r\n  \"PhoneCountryCode\": 38,\r\n  \"PhoneNumber\": 1000000000,\r\n  \"EMail\": \"malitestdcbank@dcbank.ca\",\r\n  \"IdType\": 108673,\r\n  \"IdNumber\": \"78956-99\",\r\n  \"IdExpireDate\": 20230223,\r\n  \"CountryId\": 38,\r\n  \"ProvinceId\": 663,\r\n  \"CityId\": 10107,\r\n  \"AddressLine1\": \"2520 37 St SW\",\r\n  \"AddressLine2\": \"\",\r\n  \"PostalCode\": \"T3E6N7\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 13:01:19 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": 10220000711,\n        \"InternalBlackListCheckResult\": null,\n        \"IdVerificationResult\": null,\n        \"WatchListVerificationResult\": null,\n        \"AddressVerificationResult\": null,\n        \"CustomerId\": 51914,\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d250897a-7279-4654-bc20-205aceee99c8"},{"name":"Update Customer","id":"6e837f35-323d-4f9a-b0d4-cf9d96d951b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": 0,\r\n  \"firstName\": \"string\",\r\n  \"middleName\": \"string\",\r\n  \"lastName\": \"string\",\r\n  \"birthDate\": 0,\r\n  \"phoneCountryCode\": 0,\r\n  \"phoneNumber\": 0,\r\n  \"eMail\": \"string\",\r\n  \"idType\": 0,\r\n  \"idNumber\": \"string\",\r\n  \"idExpireDate\": 0,\r\n  \"region\": 0,\r\n  \"countryId\": 0,\r\n  \"provinceId\": 0,\r\n  \"cityId\": 0,\r\n  \"addressLine1\": \"string\",\r\n  \"addressLine2\": \"string\",\r\n  \"postalCode\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/UpdateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>Client can update registered customer information by using update customer API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Customer Number</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The customer number will be a unique number between Client and DCBank for data exchange.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>First Name</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Customer first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Middle Name</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Customer middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Last Name</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Customer last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Birth Date</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td>Customers date of birth.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Phone Country Code</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Select code from Country Code list.  <br />  <br /><strong>Required</strong> for KYC Control</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Phone Number</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>The customer phone number.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The customer email.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ID Type</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Select from ID Type parameter list.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ID Number</td>\n<td><em>Numeric</em></td>\n<td>40</td>\n<td>Selected ID Number.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ID Expire Date</td>\n<td><em>DateTime</em></td>\n<td>8  <br />yyyy-mm-dd</td>\n<td><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Region</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Select from region parameter list.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Select from country parameter list.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Select from Province parameter list.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Select from city parameter list.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address Line 1</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The civic address.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address Line 2</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The civic address.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Postal Code</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>The postal code.  <br />  <br /><strong>Required</strong> for KYC Control.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Response Code</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>Response Description</td>\n<td><em>String</em></td>\n<td>Description of the response code.</td>\n</tr>\n<tr>\n<td>Customer Number</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address Verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address entered is invalid. Please use a suggested address from the ParameterList or visit Canada Post for more valid addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","UpdateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bf17eca0-10ac-4767-853c-33b8c1f4ff66","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"(Required) ","type":"text"},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": 0,\r\n  \"firstName\": \"string\",\r\n  \"middleName\": \"string\",\r\n  \"lastName\": \"string\",\r\n  \"birthDate\": 0,\r\n  \"phoneCountryCode\": 0,\r\n  \"phoneNumber\": 0,\r\n  \"eMail\": \"string\",\r\n  \"idType\": 0,\r\n  \"idNumber\": \"string\",\r\n  \"idExpireDate\": 0,\r\n  \"region\": 0,\r\n  \"country\": 0,\r\n  \"province\": 0,\r\n  \"city\": 0,\r\n  \"addressLine1\": \"string\",\r\n  \"addressLine2\": \"string\",\r\n  \"postalCode\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/UpdateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"item\": {\r\n    \"customerNumber\": 0,\r\n    \"responseCode\": \"string\",\r\n    \"responseDescription\": \"string\"\r\n  },\r\n  \"isSucceeded\": true,\r\n  \"errorList\": [\r\n    {\r\n      \"errorCode\": \"string\",\r\n      \"errorDescription\": \"string\",\r\n      \"parameterList\": [\r\n        \"string\"\r\n      ]\r\n    }\r\n  ],\r\n  \"parameterList\": [\r\n    \"string\"\r\n  ]\r\n}"},{"id":"d228e821-2987-4786-9378-ab0bc3410645","name":"Update Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 10220000709,\r\n  \"FirstName\": \"Germ\",\r\n  \"MiddleName\": \"\",\r\n  \"LastName\": \"Kreuz\",\r\n  \"BirthDate\": 19750704,\r\n  \"PhoneCountryCode\": 38,\r\n  \"PhoneNumber\": 2131232131,\r\n  \"EMail\": \"kreuztest@dcbank.ca\",\r\n  \"IdType\": 108673,\r\n  \"IdNumber\": \"78956-99\",\r\n  \"IdExpireDate\": 20230223,\r\n  \"region\": 0,\r\n  \"countryId\": 38,\r\n  \"ProvinceId\": 663,\r\n  \"CityId\": 10107,\r\n  \"AddressLine1\": \"2520 37 St SW\",\r\n  \"AddressLine2\": \"\",\r\n  \"PostalCode\": \"T3E6N7\",\r\n  \"ClientTypeId\":8011\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/UpdateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 14:21:34 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": 10220000709,\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"6e837f35-323d-4f9a-b0d4-cf9d96d951b5"},{"name":"Search Customer","id":"c0a846e1-3828-426b-8d50-672077334261","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000709\",\r\n  \"CustomerName\": \"Germ  Kreuz\",\r\n  \"Email\": \"kreuztest@dcbank.ca\",\r\n  \"PhoneNumber\": \"4034034033\",\r\n  \"BeginDate\": \"2021-07-29\",\r\n  \"EndDate\": \"2021-12-30\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/SearchCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>Client can update registered customer information by using update customer API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Customer number value to search customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Name of the customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Email address of customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Phone Number of customer.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Response Code</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>Response Description</td>\n<td>Alphabetic</td>\n<td>Description of response code.</td>\n</tr>\n<tr>\n<td>Customer Number</td>\n<td><em>Numeric</em></td>\n<td>Unique customer number.</td>\n</tr>\n<tr>\n<td>Card Emboss Name</td>\n<td><em>String</em></td>\n<td>Card emboss name.</td>\n</tr>\n<tr>\n<td>Client Customer Number</td>\n<td><em>Numeric</em></td>\n<td>Client customer number.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>Email.</td>\n</tr>\n<tr>\n<td>Client Customer Name</td>\n<td><em>String</em></td>\n<td>Client customer name.</td>\n</tr>\n<tr>\n<td>Middle Name</td>\n<td><em>String</em></td>\n<td>Middle name.</td>\n</tr>\n<tr>\n<td>last Name</td>\n<td><em>String</em></td>\n<td>Last name.</td>\n</tr>\n<tr>\n<td>id Type</td>\n<td><em>Numeric</em></td>\n<td>ID type.</td>\n</tr>\n<tr>\n<td>id Number</td>\n<td><em>Numeric</em></td>\n<td>ID number.</td>\n</tr>\n<tr>\n<td>ClientRegistredId</td>\n<td><em>String</em></td>\n<td>Client registred ID.</td>\n</tr>\n<tr>\n<td>Expiration Year</td>\n<td><em>Numeric</em></td>\n<td>Expiration year.</td>\n</tr>\n<tr>\n<td>Expiration Month</td>\n<td><em>Numeric</em></td>\n<td>Expiration month.</td>\n</tr>\n<tr>\n<td>CardTokenNumber</td>\n<td><em>String</em></td>\n<td>Card token number.</td>\n</tr>\n<tr>\n<td>MaskedCardNumber</td>\n<td><em>String</em></td>\n<td>Masked Card Number</td>\n</tr>\n<tr>\n<td>PaymentInstrumentId</td>\n<td><em>Numeric</em></td>\n<td>Payment instrument ID.</td>\n</tr>\n<tr>\n<td>Bin</td>\n<td><em>String</em></td>\n<td>Client customer number.</td>\n</tr>\n<tr>\n<td>Last Four</td>\n<td><em>Numeric</em></td>\n<td>Last four.</td>\n</tr>\n<tr>\n<td>Brand</td>\n<td><em>String</em></td>\n<td>Brand.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>Account number.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>Account name.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>Account owner name.</td>\n</tr>\n<tr>\n<td>AddressLine 1</td>\n<td><em>String</em></td>\n<td>The customers street address.</td>\n</tr>\n<tr>\n<td>AddressLine 2</td>\n<td><em>String</em></td>\n<td>The customers street address.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>Customers first Name.</td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>Phone country code of the customers number.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>Customers phone number.</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>Postal Code of the customer.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>Country where the customer resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>Province where the customer resides.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>City where the customer resides.</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>Country ID.</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>Province ID.</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>City ID.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>ID.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>Card ID.</td>\n</tr>\n<tr>\n<td>BirthDateValue</td>\n<td><em>DateTime</em></td>\n<td>The customers birthdate.</td>\n</tr>\n<tr>\n<td>IdExpireDateValue</td>\n<td><em>DateTime</em></td>\n<td>ID expiry date.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","SearchCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"982a0c60-76f0-4f64-9042-571dae180129","name":"Search Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": \"10220000709\",\r\n  \"CustomerName\": \"Germ  Kreuz\",\r\n  \"Email\": \"kreuztest@dcbank.ca\",\r\n  \"PhoneNumber\": \"4034034033\",\r\n  \"BeginDate\": \"2021-07-29 14:36:24.203\",\r\n  \"EndDate\": \"2021-12-30 14:36:24.203\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/SearchCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 11:03:28 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"639","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CardEmbossName\": null,\n            \"CustomerNumber\": \"10220000709\",\n            \"ClientCustomerNumber\": \"10220000709\",\n            \"EMail\": \"kreuztest@dcbank.ca\",\n            \"ClientCustomerName\": \"Germ  Kreuz\",\n            \"MiddleName\": null,\n            \"LastName\": \"Kreuz\",\n            \"IdType\": null,\n            \"IdNumber\": null,\n            \"ClientRegistredId\": null,\n            \"ExpirationYear\": null,\n            \"ExpirationMonth\": null,\n            \"CardTokenNumber\": null,\n            \"MaskedCardNumber\": null,\n            \"PaymentInstrumentId\": null,\n            \"Bin\": null,\n            \"LastFour\": null,\n            \"Brand\": null,\n            \"AccountNumber\": \"522524487\",\n            \"AccountName\": \"Ddt Sub Account\",\n            \"AccountOwnerName\": \"Germ  Kreuz\",\n            \"AddressLine1\": \"Kreuzbrüderstr. 5\",\n            \"AddressLine2\": \"\",\n            \"FirstName\": \"Germ\",\n            \"PhoneCountryCode\": 38,\n            \"PhoneNumber\": \"2131232131\",\n            \"Region\": null,\n            \"PostalCode\": \"50259\",\n            \"Country\": \"Germany\",\n            \"Province\": \"Nordrhein-Westfalen\",\n            \"City\": \"Pulheim\",\n            \"CountryId\": 82,\n            \"ProvinceId\": 1387,\n            \"CityId\": 19839,\n            \"Id\": 51850,\n            \"CardId\": null,\n            \"BirthDateValue\": \"1975-07-04T00:00:00\",\n            \"IdExpireDateValue\": null,\n            \"Currency\": null,\n            \"CardTransferType\": null,\n            \"CardTransferTypeId\": null,\n            \"ClientTypeId\": null,\n            \"ClientType\": null,\n            \"WatchListVerificationResult\": null,\n            \"BusinessName\": null,\n            \"CompanyLegalName\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c0a846e1-3828-426b-8d50-672077334261"}],"id":"a3cdc58d-d713-46d9-a9c8-0fc825b6fc3d","_postman_id":"a3cdc58d-d713-46d9-a9c8-0fc825b6fc3d","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Payment Instrument","item":[{"name":"Add Payment Instrument","id":"db01be31-6124-4c75-90b3-50b281235194","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"customerNumber\": \"10010000001\",\r\n    \"name\": \"Markus P Body\",\r\n    \"encryptedPan\": \"UZdkqbeo/QIw4n2fpSR0okZLupQ5Dc3gqlqiiOP9IC0RA7GaMLUVOhbRoJZWJ/RADzylZmIEHlRasdfasdfUojylbqCrpn8F6WBk7u0mfsYk8vl1RHECEpgY/IufBi89EkZYdghIcF5X37yH9to5BcGgylfxkV/Sv4iUe5khn+V7M6lAPs99nxuZsk1VFCe+n30tFVfuWn63w1eiC9Inw0Ip7FaBkQq7P7upOzu4raYIq/ADB+mMMrK82qcOOf+n0l9CNdlbGmuCQM56LZnLluvxuwIGo+qn0ycusZJwn7W7c9UYZFFfAiR22Voa6H6Iq4MntRR5M0DSpUmRbsFdfAco8Yg==\",\r\n    \"encryptedVerificationCode\": \"L3eBHJjJmApgd1wJZ5yPZFoe5Zk1SeRcWNZ6snAcpMi7AWeq28XxywsZkcylPuePCwaf/7m9Z6zJu+J6PwD/p+dicYRC0nasdfadsf5i6DIlX7H3vlL2QPTySPk2YsWV5wdAJHpR7dp8VXFx8nqP+FNf0hbCad3n20K1xy132I+G+0xToMQvstJWa1uzYz55oiruvJ94My7yUZ9kTRAfLOhMYvdcAAkudC9+R8MjdNuiyca1IHg/gVOXC2/ouXl1dMewHX0Wf5lJWUJwnlR8Nr9YqC9z+D1JjcQny7ZjWuU1voSAbwU/q5BnozFB7EECBHwDmOsVU9Y7oqQ7J+mw==\",\r\n    \"RsaKeyId\": 1001,\r\n    \"expirationMonth\": \"06\",\r\n    \"expirationYear\": \"2025\",\r\n    \"currenyId\": 26\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/AddPaymentInstrument","description":"<h3 id=\"description\">Description</h3>\n<p>This is only one time card sensitive data sharing for each card, between client and DCBank. DCBank will tokenize Sender's/Recipient’s card information and save it to its tokenization system. After this initial registration, no card information will be requested for create transaction. Only Unique Customer number and card ID will use for to create transaction.</p>\n<p>DCBank will provide Clients with RSA key API for the exchange of sensitive card data. Clients will transmit and encrypt card sensitive data using this RSA Key. Encrypt the values with UTF8 encoding, RSA Encrption padding <code>Pkcs1</code> and converted to a Base64 string.</p>\n<p>The following card numbers should be used for testing</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Card Type</th>\n<th>Number</th>\n<th>CVV</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Visa (debit card)</td>\n<td>4895142232120006</td>\n<td>3-digit number</td>\n</tr>\n<tr>\n<td>Visa (credit card)</td>\n<td>4957030420210454</td>\n<td>3-digit number</td>\n</tr>\n<tr>\n<td>Mastercard (debit card)</td>\n<td>5123280115058611</td>\n<td>3-digit number</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Name on the card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaKeyId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>The <code>RsaKeyId</code> value.  <br />This can be obtained using the <strong>Generate Rsa Key</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EncryptedPAN</td>\n<td><em>String</em></td>\n<td>19</td>\n<td>Encrypted card number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EncryptedVerificationCode</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Encrypted card verification code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Expiration Month</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>Card expiration month, <code>mm</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Expiration Year</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Card expiration year, <code>yyyy</code>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CurrenyId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td><code>ID</code> value.  <br />This can be obtained using the G<strong>et All Currencies</strong> API.  <br />  <br />Defaults to <code>CAD</code> if not supplied.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>Description of response code.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>Unique customer number.</td>\n</tr>\n<tr>\n<td>CardID</td>\n<td><em>Numeric</em></td>\n<td>Unique card ID.</td>\n</tr>\n<tr>\n<td>CardVerificationResult</td>\n<td><em>Boolean</em></td>\n<td>The card verification result.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddVisaDirectPaymentInstrumentOpE1</td>\n<td>Visa Direct Sender/Recipient Registration Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","AddPaymentInstrument"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"264339df-84df-49c2-a452-f228dd8288b5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"customerNumber\": \"10010000001\",\r\n    \"name\": \"Markus P Body\",\r\n    \"encryptedPan\": \"UZdkqbeo/QIw4n2fpSR0okZLupQ5Dc3gqlqiiOP9IC0RA7GaMLUVOhbRoJZWJ/RADzylZmIEHlRasdfasdfUojylbqCrpn8F6WBk7u0mfsYk8vl1RHECEpgY/IufBi89EkZYdghIcF5X37yH9to5BcGgylfxkV/Sv4iUe5khn+V7M6lAPs99nxuZsk1VFCe+n30tFVfuWn63w1eiC9Inw0Ip7FaBkQq7P7upOzu4raYIq/ADB+mMMrK82qcOOf+n0l9CNdlbGmuCQM56LZnLluvxuwIGo+qn0ycusZJwn7W7c9UYZFFfAiR22Voa6H6Iq4MntRR5M0DSpUmRbsFdfAco8Yg==\",\r\n    \"encryptedVerificationCode\": \"L3eBHJjJmApgd1wJZ5yPZFoe5Zk1SeRcWNZ6snAcpMi7AWeq28XxywsZkcylPuePCwaf/7m9Z6zJu+J6PwD/p+dicYRC0nasdfadsf5i6DIlX7H3vlL2QPTySPk2YsWV5wdAJHpR7dp8VXFx8nqP+FNf0hbCad3n20K1xy132I+G+0xToMQvstJWa1uzYz55oiruvJ94My7yUZ9kTRAfLOhMYvdcAAkudC9+R8MjdNuiyca1IHg/gVOXC2/ouXl1dMewHX0Wf5lJWUJwnlR8Nr9YqC9z+D1JjcQny7ZjWuU1voSAbwU/q5BnozFB7EECBHwDmOsVU9Y7oqQ7J+mw==\",\r\n    \"RsaKeyId\": 1001,\r\n    \"expirationMonth\": \"06\",\r\n    \"expirationYear\": \"2025\",\r\n    \"currenyId\": 26\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/AddPaymentInstrument"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 23:25:43 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"199","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4e627c158a787ef098d2fc64fac1aa1045efbce9cf4366b0fb867333237b2444;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4e627c158a787ef098d2fc64fac1aa1045efbce9cf4366b0fb867333237b2444;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": 10010000001,\n        \"CardId\": 1,\n        \"CardVerificationResult\": null,\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"db01be31-6124-4c75-90b3-50b281235194"},{"name":"Search Payment Instruments","id":"d14d35ae-b579-4e99-858b-1642d7afe94c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/SearchPaymentInstruments?CustomerNumber={{customerNumber}}","description":"<h3 id=\"description\">Description</h3>\n<p>This API use for customer payment instrument list tokenized in DCBank system.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Response Code</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>Response Description</td>\n<td><em>String</em></td>\n<td>Description of response code.</td>\n</tr>\n<tr>\n<td>Customer Number</td>\n<td><em>Numeric</em></td>\n<td>Unique customer number.</td>\n</tr>\n<tr>\n<td>Payment Instrument List</td>\n<td><em>List</em></td>\n<td>Contains card details. ID, last 4-digits, card status.</td>\n</tr>\n<tr>\n<td>Card ID</td>\n<td><em>Numeric</em></td>\n<td>Unique Card ID</td>\n</tr>\n<tr>\n<td>Last 4 Digit</td>\n<td><em>Numeric</em></td>\n<td>Last 4 digit of registered card</td>\n</tr>\n<tr>\n<td>Card Status</td>\n<td><em>String</em></td>\n<td>Active - Inactive</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","SearchPaymentInstruments"],"host":["{{baseUrl}}"],"query":[{"key":"CustomerNumber","value":"{{customerNumber}}"}],"variable":[]}},"response":[{"id":"ce2dce1e-e981-4cd1-a077-8ebbaf62777a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/SearchPaymentInstruments?CustomerNumber=10010000001","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","VisaDirect","SearchPaymentInstruments"],"query":[{"key":"CustomerNumber","value":"10010000001"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 11 Dec 2020 00:03:12 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"227","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4e627c158a787ef098d2fc64fac1aa1045efbce9cf4366b0fb867333237b2444;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4e627c158a787ef098d2fc64fac1aa1045efbce9cf4366b0fb867333237b2444;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": 10010000001,\n        \"PaymentInstrumentList\": [\n            {\n                \"CardId\": 1,\n                \"Last4Digits\": \"1234\",\n                \"CardStatus\": \"Active\"\n            }\n        ],\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"e5e89dc9-b671-4311-8076-956f3a8aa467","name":"Search Payment Instruments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/SearchPaymentInstruments?CustomerNumber={{customerNumber}}","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","VisaDirect","SearchPaymentInstruments"],"query":[{"key":"CustomerNumber","value":"{{customerNumber}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 15 Dec 2021 14:33:23 GMT","enabled":true},{"key":"Content-Length","value":"0","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"WWW-Authenticate","value":"Bearer","enabled":true}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d14d35ae-b579-4e99-858b-1642d7afe94c"},{"name":"Generate Rsa Key","id":"aa23e71d-64e9-4c4c-a035-e389f1b62d4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/GenerateRsaKey","description":"<h3 id=\"description\">Description</h3>\n<p>The Generate RSA Key API generates an RSA public key to be used to encrypt the <strong>Visa Direct &gt; Payment Insturment &gt; Add Payment Insturments</strong> <code>encryptedPan</code> and <code>encryptedVerificationCode</code> fields.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","GenerateRsaKey"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"90590d57-5932-4bd7-9568-93fb8424a8ac","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Wallet/GenerateRsaKey"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull.\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"RsaKeyId\": 1001,\n        \"PublicKeyInPemFormat\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIIBIjANBgkqhkiG9w0BAQEFAOACAQ8AMIIBCgKCAQEAw0seBlIo8k9GOoz3jjFv\\r\\nGcbeiWH/6xHrqDEUPRxgvG2fxqnu407hYRy1adfasdfmYUL/6YyMeieAchUdPsV\\r\\n6ohlMkbkQUodj+rmK5F3jUCfsND2rHPjJD1o+Atwy+9G+izONWNGmKi1qxCTx2Rw\\r\\nZBHq4v2n/U50bogb+nOilyJAJZPJjfBfrlLoe8Jy8PpnxB8k2NEK/Ai2SDEzr1Gd\\r\\n3uaI986G/CVcPFfkxEmCxxQJmwWza0NhOfhiMHilJMGOg5EO5OcCY4yoK8q7tF+7\\r\\nwRD5n9YTinUVN5v/cs4/YbVY9UZk3rpflzYGvMk1jR+t1ZkXgprQjnZ4jKdc8VEK\\r\\n0QIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\n        \"ModulusBase64\": \"w0seBlIo8k9GOoz3jjFvGcbeiWH/6xHrqDEUPRxgvG2fxqnu407hYRy1eBdcqnhCmUYL/6YyMeieAchUdPsV6ohlMkbkQUodj+rmK5F3jUCfsND2rHPjJD1o+sadasdf/U50bogb+nOilyJJAZPJjfBfrlLoe8Jy8PpnxB8k2NEK/Ai2SDEzr1Gd3uaI986G/CVcPFfkxEmCxxQJmwWza0NhOfhiHMilJMGOg5EO5OcCY4yoK8q7tF+7wRD5n9YTinUVN5v/cs4/YbVY9UZk3rpflzYGvMk1jR+t1ZkXgprQjnZ4jKdc8VEK0Q==\",\n        \"ExponentBase64\": \"AAQB\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"aa23e71d-64e9-4c4c-a035-e389f1b62d4f"},{"name":"Get All Currencies","id":"59fbfdd3-6539-46a1-8223-131eafe7e051","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetAllCurrency","description":"<h3 id=\"description\">Description</h3>\n<p>The purpose of this API is to get the Parameters that is to be used with the specific query parameter.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsActive</td>\n<td>Boolean</td>\n<td>Whether active or not. A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>Description of the code, US Dollar, Canadian Dollar, etc.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>String</em></td>\n<td>The currency code. CAD, USD, etc.</td>\n</tr>\n<tr>\n<td>Symbol</td>\n<td><em>Symbol</em></td>\n<td>The symbol representing the currency value.</td>\n</tr>\n<tr>\n<td>Order</td>\n<td><em>Numeric</em></td>\n<td>The order number.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetAllCurrency"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f5466804-3a40-4fcc-93b0-2e9c8db9d916","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetAllCurrency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 23:43:25 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"324","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4e627c158a787ef098d2fc64fac1aa1045efbce9cf4366b0fb867333237b2444;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4e627c158a787ef098d2fc64fac1aa1045efbce9cf4366b0fb867333237b2444;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"IsActive\": true,\n            \"Description\": \"Canadian Dollar\",\n            \"Code\": \"CAD\",\n            \"IsoCode\": \"124\",\n            \"Symbol\": \"$\",\n            \"Order\": 1000,\n            \"Id\": 26\n        },\n        {\n            \"IsActive\": true,\n            \"Description\": \"US Dollar\",\n            \"Code\": \"USD\",\n            \"IsoCode\": \"840\",\n            \"Symbol\": \"$\",\n            \"Order\": 900,\n            \"Id\": 147\n        },\n        {\n            \"IsActive\": true,\n            \"Description\": \"Euro\",\n            \"Code\": \"EUR\",\n            \"IsoCode\": \"978\",\n            \"Symbol\": \"€\",\n            \"Order\": 800,\n            \"Id\": 50\n        },\n        {\n            \"IsActive\": true,\n            \"Description\": \"Mexican Peso\",\n            \"Code\": \"MXP\",\n            \"IsoCode\": \"484\",\n            \"Symbol\": \"$\",\n            \"Order\": 0,\n            \"Id\": 91\n        },\n        {\n            \"IsActive\": true,\n            \"Description\": \"Turkish Lira\",\n            \"Code\": \"TRY\",\n            \"IsoCode\": \"949\",\n            \"Symbol\": \"₺\",\n            \"Order\": 0,\n            \"Id\": 143\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"59fbfdd3-6539-46a1-8223-131eafe7e051"}],"id":"192d006b-4ed2-4e01-a99b-ba18f4ae39da","_postman_id":"192d006b-4ed2-4e01-a99b-ba18f4ae39da","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Create Visa Direct Transactions","item":[{"name":"Create Payout Transaction","id":"0c971669-b5a3-401c-b251-2f09c6dd1f62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 11080000018,\r\n  \"CardId\": 19,\r\n  \"CurrencyId\": 26,\r\n  \"Amount\": 2,\r\n  \"TransactionDescription\": \"Money Transfer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/CreatePayoutTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>For to create payout transaction Client can initiate transaction without using any card sensitive information. Only Unique Customer Number and Card ID will be enough for to create transaction. DCBank system will find PAN number from tokenization system for registered cards. Only destination PAN information is required in create transaction API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Card ID</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Unique card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Currency ID</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>The ID of the currency.  <br />This can be obtained using the Selection form from the <strong>Currency Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>7</td>\n<td>The amount of the payout transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDescription</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The description/ reason for the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Response Code</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>Response Description</td>\n<td><em>String</em></td>\n<td>Description of response code.</td>\n</tr>\n<tr>\n<td>Card ID</td>\n<td><em>Numeric</em></td>\n<td>Unique card ID.</td>\n</tr>\n<tr>\n<td>Transaction ID</td>\n<td><em>Numeric</em></td>\n<td>Transaction unique ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n<tr>\n<td>VisaDirectTransactionOpV5</td>\n<td>Currency Code Not Found.</td>\n</tr>\n<tr>\n<td>VisaDirectTransactionOpV8</td>\n<td>DDT Customer Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","CreatePayoutTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5ed71b33-39d7-4ce0-9853-5df4ab3fbb6c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"(Required) ","type":"text"},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"CardId\": 0,\r\n  \"CurrencyCode\": 0,\r\n  \"Amount\": 0,\r\n  \"TransactionDescription\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/CreatePayoutTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"item\": {\r\n    \"cardId\": 0,\r\n    \"transactionId\": 0,\r\n    \"responseCode\": \"string\",\r\n    \"responseDescription\": \"string\"\r\n  },\r\n  \"isSucceeded\": true,\r\n  \"errorList\": [\r\n    {\r\n      \"errorCode\": \"string\",\r\n      \"errorDescription\": \"string\",\r\n      \"parameterList\": [\r\n        \"string\"\r\n      ]\r\n    }\r\n  ],\r\n  \"parameterList\": [\r\n    \"string\"\r\n  ]\r\n}"},{"id":"587900ff-fe97-4185-ad74-730830cc118e","name":"Create Payout Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 10220000698,\r\n  \"CardId\": 375,\r\n  \"CurrencyId\": 26,\r\n  \"Amount\": 2.00,\r\n  \"TransactionDescription\": \"Money Transfer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/CreatePayoutTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Dec 2021 08:54:17 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"336","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionDate\": \"2021-12-23T08:54:14.75Z\",\n        \"CustomerNumber\": \"10220000698\",\n        \"Name\": \"API Testing\",\n        \"MiddleName\": \"string\",\n        \"LastName\": \"Testing\",\n        \"OrderId\": null,\n        \"TransactionUniqueId\": 100000000126851511,\n        \"Amount\": 2,\n        \"Currency\": \"CAD\",\n        \"TransactionType\": \"C\",\n        \"TransactionStatus\": \"SUCCEEDED\",\n        \"CardId\": 375,\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0c971669-b5a3-401c-b251-2f09c6dd1f62"},{"name":"Pull From Card","id":"72ac877f-e5d6-4642-a277-65f0d7418af9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"CardId\": 0,\r\n  \"CurrencyId\": 0,\r\n  \"Amount\": 0,\r\n  \"TransactionDescription\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/PullFromCard","description":"<h3 id=\"description\">Description</h3>\n<p>Client can use this API for to pull funds from a customers card.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>NAME</th>\n<th>TYPE</th>\n<th>MAX LENGTH</th>\n<th>DESCRIPTION</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Unique card ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Currency ID.  <br />This can be obtained from using Selection from the <strong>Currency Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>7</td>\n<td>The amount of the transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDescription</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>A description/ reason for the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>NAME</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>Response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>Description of response code.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>Unique card ID.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>Transaction unique ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>VisaDirectTransactionOpV5</td>\n<td>Currency Code Not Found.</td>\n</tr>\n<tr>\n<td>VisaDirectTransactionOpV8</td>\n<td>DDT Customer Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","PullFromCard"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f9fdadfe-6b98-41e6-8b6f-bd9c0543fcd8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"(Required) ","type":"text"},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"CardId\": 0,\r\n  \"CurrencyCode\": 0,\r\n  \"Amount\": 0,\r\n  \"TransactionDescription\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/PullFromCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"item\": {\r\n    \"cardId\": 0,\r\n    \"transactionId\": 0,\r\n    \"responseCode\": \"string\",\r\n    \"responseDescription\": \"string\"\r\n  },\r\n  \"isSucceeded\": true,\r\n  \"errorList\": [\r\n    {\r\n      \"errorCode\": \"string\",\r\n      \"errorDescription\": \"string\",\r\n      \"parameterList\": [\r\n        \"string\"\r\n      ]\r\n    }\r\n  ],\r\n  \"parameterList\": [\r\n    \"string\"\r\n  ]\r\n}"},{"id":"bc2b0832-fbb1-4fc4-a771-c07ef873613a","name":"Pull From Card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 10220000700,\r\n  \"CardId\": 373,\r\n  \"CurrencyId\": 147,\r\n  \"Amount\": 10,\r\n  \"TransactionDescription\": \"test\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/PullFromCard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 12:23:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"325","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionDate\": \"2022-01-11T12:22:51.77Z\",\n        \"CustomerNumber\": \"10220000700\",\n        \"Name\": \"Berkay\",\n        \"MiddleName\": null,\n        \"LastName\": \"Visa\",\n        \"OrderId\": null,\n        \"TransactionUniqueId\": 100000000127014696,\n        \"Amount\": 10,\n        \"Currency\": \"USD\",\n        \"TransactionType\": \"D\",\n        \"TransactionStatus\": \"SUCCEEDED\",\n        \"CardId\": 373,\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"72ac877f-e5d6-4642-a277-65f0d7418af9"},{"name":"Get Transaction List","id":"dd18c256-2865-4b88-8ffb-1ccaf79893ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"CardId\": 0,\r\n  \"CurrencyCode\": 0,\r\n  \"Amount\": 0,\r\n  \"TransactionDescription\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/GetTransactionList?CustomerNumer={{customerNumer}}&CardId={{cardId}}&StartDate={{startDate}}&EndDate={{endDate}}","description":"<h3 id=\"description\">Description</h3>\n<p>Client can inquiry customer specific payouts list. If Customer Number and Card ID is empty API provides all Client customer transaction list for last 33 days.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Unique customer number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>5</td>\n<td>Unique card ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>7  <br />yyyy-mm-dd</td>\n<td>Start date of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>7  <br />yyyy-mm-dd</td>\n<td>End date of the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>Response coded</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>Description of response code.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>Unique customer number.</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>Unique card Identifier.</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>The start date of the search request.</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>The end date of the search request.</td>\n</tr>\n<tr>\n<td>TransactionList</td>\n<td><em>List</em></td>\n<td>List of transactions and their respective details.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>Deposit or Withdrawal.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>Unique transaction reference number.</td>\n</tr>\n<tr>\n<td>Date</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction..</td>\n</tr>\n<tr>\n<td>Fee</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td><em>String</em></td>\n<td>The currency code of the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","VisaDirect","GetTransactionList"],"host":["{{baseUrl}}"],"query":[{"key":"CustomerNumer","value":"{{customerNumer}}"},{"key":"CardId","value":"{{cardId}}"},{"key":"StartDate","value":"{{startDate}}"},{"key":"EndDate","value":"{{endDate}}"}],"variable":[]}},"response":[{"id":"6adea823-917b-4551-8ba7-54c017170fcf","name":"Get Transaction List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/VisaDirect/GetTransactionList?CustomerNumer={{customerNumer}}&CardId={{cardId}}&StartDate={{startDate}}&EndDate={{endDate}}","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","VisaDirect","GetTransactionList"],"query":[{"key":"CustomerNumer","value":"{{customerNumer}}","description":"10220000700"},{"key":"CardId","value":"{{cardId}}","description":"373"},{"key":"StartDate","value":"{{startDate}}","description":"20220101"},{"key":"EndDate","value":"{{endDate}}","description":"20220101"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 12:40:27 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"6080","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumer\": 0,\n        \"CardId\": 0,\n        \"StartDate\": 0,\n        \"EndDate\": 0,\n        \"TransactionList\": [\n            {\n                \"Date\": 20220111,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000127014688,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2022-01-11T12:21:05.067\"\n            },\n            {\n                \"Date\": 20220111,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000127014696,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2022-01-11T12:22:53.843\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126963855,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2022-01-06T12:08:40.07\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126963876,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2022-01-06T12:10:05.997\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": \"10220000716\",\n                \"Name\": \"Craig  Whitby\",\n                \"MiddleName\": null,\n                \"LastName\": \"Whitby\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126968269,\n                \"Amount\": 75,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2022-01-06T22:26:26.17\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126965016,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2022-01-06T14:42:34.47\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126965106,\n                \"Amount\": 8.13,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2022-01-06T14:54:52.113\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": \"10220000716\",\n                \"Name\": \"Craig  Whitby\",\n                \"MiddleName\": null,\n                \"LastName\": \"Whitby\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126968296,\n                \"Amount\": 75,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2022-01-06T22:28:35.127\"\n            },\n            {\n                \"Date\": 20220106,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126963884,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2022-01-06T12:12:03.613\"\n            },\n            {\n                \"Date\": 20220105,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126955227,\n                \"Amount\": 110,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2022-01-05T17:25:39.503\"\n            },\n            {\n                \"Date\": 20211230,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126879467,\n                \"Amount\": 6.76,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-12-30T09:17:16.16\"\n            },\n            {\n                \"Date\": 20211223,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126851464,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-12-23T07:37:09.077\"\n            },\n            {\n                \"Date\": 20211223,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126851501,\n                \"Amount\": 2,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-12-23T08:41:56.9\"\n            },\n            {\n                \"Date\": 20211223,\n                \"CustomerNumber\": \"10220000441\",\n                \"Name\": \"Test Card  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126851509,\n                \"Amount\": 2,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-12-23T08:52:47.837\"\n            },\n            {\n                \"Date\": 20211223,\n                \"CustomerNumber\": \"10220000698\",\n                \"Name\": \"API Testing string Testing\",\n                \"MiddleName\": \"string\",\n                \"LastName\": \"Testing\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126851511,\n                \"Amount\": 2,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2021-12-23T08:54:16.347\"\n            },\n            {\n                \"Date\": 20211223,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126851668,\n                \"Amount\": 0.22,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2021-12-23T13:52:12.06\"\n            },\n            {\n                \"Date\": 20211223,\n                \"CustomerNumber\": \"10220000698\",\n                \"Name\": \"API Testing string Testing\",\n                \"MiddleName\": \"string\",\n                \"LastName\": \"Testing\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126851518,\n                \"Amount\": 1,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2021-12-23T08:58:07.04\"\n            },\n            {\n                \"Date\": 20211220,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126842749,\n                \"Amount\": 6.69,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-12-20T14:24:24.073\"\n            },\n            {\n                \"Date\": 20211209,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126774500,\n                \"Amount\": 12,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2021-12-09T08:13:12.2\"\n            },\n            {\n                \"Date\": 20211209,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126774505,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2021-12-09T08:14:35.44\"\n            },\n            {\n                \"Date\": 20211208,\n                \"CustomerNumber\": \"10220000700\",\n                \"Name\": \"Berkay  Visa\",\n                \"MiddleName\": null,\n                \"LastName\": \"Visa\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126768482,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2021-12-08T09:29:20.653\"\n            },\n            {\n                \"Date\": 20211203,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126746007,\n                \"Amount\": 6.78,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-12-03T16:03:43.207\"\n            },\n            {\n                \"Date\": 20211110,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126592966,\n                \"Amount\": 3.41,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-10T21:46:33.897\"\n            },\n            {\n                \"Date\": 20211110,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126592971,\n                \"Amount\": 8.86,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-10T21:47:35.87\"\n            },\n            {\n                \"Date\": 20211110,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126592973,\n                \"Amount\": 6.81,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-10T21:48:08.297\"\n            },\n            {\n                \"Date\": 20211110,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126592981,\n                \"Amount\": 13.63,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-10T21:49:56.823\"\n            },\n            {\n                \"Date\": 20211110,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126592978,\n                \"Amount\": 10.22,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-10T21:49:35.673\"\n            },\n            {\n                \"Date\": 20211110,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126592968,\n                \"Amount\": 14.99,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-10T21:47:03.323\"\n            },\n            {\n                \"Date\": 20211103,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126514296,\n                \"Amount\": 10.2,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-03T09:05:34.44\"\n            },\n            {\n                \"Date\": 20211103,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126514405,\n                \"Amount\": 10.2,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-11-03T09:45:10.953\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438645,\n                \"Amount\": 6.8,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T11:46:00.173\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438647,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T12:16:10.01\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438649,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T12:19:16.773\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438655,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"EST - Estonia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T12:35:31.427\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438683,\n                \"Amount\": 8.15,\n                \"FeeAmount\": 2,\n                \"Currency\": \"GRC - Greece\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:06:07.317\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438688,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:08:14.387\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438689,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ITA - Italy\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:09:37.737\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438690,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LVA - Latvia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:11:28.647\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438697,\n                \"Amount\": 6.77,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LTU - Lithuania\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:13:58.767\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438698,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LUX - Luxemburg\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:15:31.973\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438699,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MLT - Malta\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:17:20.053\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438704,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MCO - Monaco\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:20:45.507\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438705,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:22:28.97\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438706,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PRT - Portugal\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:24:22.683\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438708,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SMR - San Marino\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:25:43.093\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438713,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:28:20.977\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438714,\n                \"Amount\": 8.12,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ESP - Spain\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:30:07.997\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438749,\n                \"Amount\": 8.18,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T14:07:04.85\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438779,\n                \"Amount\": 6.81,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T14:16:32.727\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438657,\n                \"Amount\": 1.36,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T12:41:45.49\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438659,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T12:44:31.803\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438710,\n                \"Amount\": 7.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVK - Slovakia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T13:27:15.667\"\n            },\n            {\n                \"Date\": 20211027,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126438656,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-27T12:39:54.747\"\n            },\n            {\n                \"Date\": 20211015,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126431459,\n                \"Amount\": 6.82,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-15T11:49:07.343\"\n            },\n            {\n                \"Date\": 20211015,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126431463,\n                \"Amount\": 6.82,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-15T12:01:06.443\"\n            },\n            {\n                \"Date\": 20211015,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126431473,\n                \"Amount\": 6.82,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-15T12:28:08.59\"\n            },\n            {\n                \"Date\": 20211015,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126431481,\n                \"Amount\": 6.82,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-15T12:54:41.967\"\n            },\n            {\n                \"Date\": 20211015,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126431442,\n                \"Amount\": 6.82,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-15T11:27:46.663\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430316,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:14:18.793\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430317,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:18:23.143\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430321,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:21:27.17\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430324,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"EST - Estonia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:27:16.06\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430325,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:29:21.47\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430328,\n                \"Amount\": 3.4,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:31:29.06\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430329,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:33:19.53\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430331,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"GRC - Greece\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:35:42.643\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430332,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:37:27.723\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430334,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ITA - Italy\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:40:02.3\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430337,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LVA - Latvia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:42:14.96\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430340,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LTU - Lithuania\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:43:56.95\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430341,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LUX - Luxemburg\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:45:31.723\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430342,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MLT - Malta\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:47:13.423\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430344,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MCO - Monaco\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:48:55.523\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430345,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:51:28.217\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430348,\n                \"Amount\": 3.4,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SMR - San Marino\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:54:06.413\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430349,\n                \"Amount\": 3.4,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVK - Slovakia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:55:46.223\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430351,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:57:26.943\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430353,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ESP - Spain\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T13:58:37.813\"\n            },\n            {\n                \"Date\": 20211013,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126430355,\n                \"Amount\": 6.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PRT - Portugal\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-13T14:01:55.097\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426575,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:30:05.087\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426576,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:31:35.537\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426578,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:32:31.227\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426579,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LVA - Latvia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:34:00.79\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426580,\n                \"Amount\": 10.08,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LTU - Lithuania\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:35:04.92\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426582,\n                \"Amount\": 10.08,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LUX - Luxemburg\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:35:47.413\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426585,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVK - Slovakia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:38:02.883\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426587,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:43:02.69\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426589,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ESP - Spain\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:44:19.417\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426591,\n                \"Amount\": 6.72,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MCO - Monaco\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T06:49:50.203\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426710,\n                \"Amount\": 10.09,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T13:58:39.527\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426717,\n                \"Amount\": 6.73,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T14:27:00.133\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426731,\n                \"Amount\": 6.73,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T14:51:14.897\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426732,\n                \"Amount\": 10.09,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T14:52:39.897\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426721,\n                \"Amount\": 13.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T14:32:46.797\"\n            },\n            {\n                \"Date\": 20211007,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126426725,\n                \"Amount\": 13.45,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PRT - Portugal\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-07T14:34:56.477\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126270950,\n                \"Amount\": 10.05,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T07:31:30.26\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126271274,\n                \"Amount\": 13.4,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T07:33:25.73\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126272386,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"EST - Estonia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T07:40:21.787\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126281472,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:00:53.843\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126291108,\n                \"Amount\": 8.04,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:14:50.76\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126296292,\n                \"Amount\": 8.71,\n                \"FeeAmount\": 2,\n                \"Currency\": \"GRC - Greece\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:21:02.69\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126382888,\n                \"Amount\": 6.71,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SMR - San Marino\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T10:33:19.557\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126423843,\n                \"Amount\": 6.71,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T13:25:34.11\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126423906,\n                \"Amount\": 13.41,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T13:32:00.54\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126313262,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ITA - Italy\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:46:50.067\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126371904,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MLT - Malta\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T09:53:19.263\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126372849,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T09:58:07.097\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126374137,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T10:01:05.413\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126372809,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MLT - Malta\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T09:55:33.943\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126313949,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ITA - Italy\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:48:37.747\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126365644,\n                \"Amount\": 3.35,\n                \"FeeAmount\": 2,\n                \"Currency\": \"EST - Estonia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T09:46:01.333\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126303638,\n                \"Amount\": 8.71,\n                \"FeeAmount\": 2,\n                \"Currency\": \"GRC - Greece\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:36:22.507\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126292930,\n                \"Amount\": 8.04,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:16:33.753\"\n            },\n            {\n                \"Date\": 20211006,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126283232,\n                \"Amount\": 6.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-06T08:05:05.773\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267101,\n                \"Amount\": 150,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T10:32:22.723\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267136,\n                \"Amount\": 6.68,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T10:59:43.533\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267150,\n                \"Amount\": 13.35,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T12:05:07.993\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267167,\n                \"Amount\": 333.61,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:24:53.463\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267170,\n                \"Amount\": 220.18,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:26:55.34\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267172,\n                \"Amount\": 10102.29,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CZE - Czech Republic\",\n                \"CurrencyCode\": \"CZK\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:29:08.85\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267174,\n                \"Amount\": 150.79,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:31:13.91\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267177,\n                \"Amount\": 183.49,\n                \"FeeAmount\": 2,\n                \"Currency\": \"EST - Estonia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:32:58.557\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267180,\n                \"Amount\": 293.58,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:34:58.017\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267182,\n                \"Amount\": 222.19,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:39:25.153\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267186,\n                \"Amount\": 84.07,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:41:15.573\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267189,\n                \"Amount\": 90.08,\n                \"FeeAmount\": 2,\n                \"Currency\": \"GRC - Greece\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:43:49.783\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267192,\n                \"Amount\": 23585.27,\n                \"FeeAmount\": 2,\n                \"Currency\": \"INR - India\",\n                \"CurrencyCode\": \"INR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:48:03.47\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267194,\n                \"Amount\": 436.36,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:50:32.28\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267196,\n                \"Amount\": 76.06,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ITA - Italy\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:52:10.573\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267197,\n                \"Amount\": 113.43,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ITA - Italy\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:52:54.72\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267198,\n                \"Amount\": 78.73,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LVA - Latvia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:54:09.81\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267201,\n                \"Amount\": 98.08,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LTU - Lithuania\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:55:44.85\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267202,\n                \"Amount\": 103.42,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LTU - Lithuania\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:56:26.753\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267205,\n                \"Amount\": 220.85,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LUX - Luxemburg\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:58:28.19\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267207,\n                \"Amount\": 1554.75,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LKA - Sri Lanka \",\n                \"CurrencyCode\": \"LKR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:01:49.217\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267212,\n                \"Amount\": 60.05,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MCO - Monaco\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:04:49.387\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267215,\n                \"Amount\": 147.81,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:14:32.857\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267216,\n                \"Amount\": 24.08,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:15:15.7\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267208,\n                \"Amount\": 58.05,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MLT - Malta\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:00:44.447\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267218,\n                \"Amount\": 8800.1,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PHL - Philippines \",\n                \"CurrencyCode\": \"PHP\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:17:51.603\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267222,\n                \"Amount\": 1079.09,\n                \"FeeAmount\": 2,\n                \"Currency\": \"POL- Poland\",\n                \"CurrencyCode\": \"PLN\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:19:55.353\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267229,\n                \"Amount\": 306.99,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SMR - San Marino\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:26:08.463\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267231,\n                \"Amount\": 57.52,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVK - Slovakia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:28:35.923\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267239,\n                \"Amount\": 61.53,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:30:57.273\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267243,\n                \"Amount\": 63.54,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:31:49.66\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267251,\n                \"Amount\": 6.69,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:36:51.417\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267255,\n                \"Amount\": 78587.21,\n                \"FeeAmount\": 2,\n                \"Currency\": \"KOR - South Korea\",\n                \"CurrencyCode\": \"KRW\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:45:13.48\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267259,\n                \"Amount\": 510.98,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ESP - Spain\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:48:25.427\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267261,\n                \"Amount\": 15432.33,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LKA - Sri Lanka \",\n                \"CurrencyCode\": \"LKR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:50:30.93\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267264,\n                \"Amount\": 311.15,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:54:44.403\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267265,\n                \"Amount\": 665.87,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:55:49.54\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267262,\n                \"Amount\": 100543.99,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LKA - Sri Lanka \",\n                \"CurrencyCode\": \"LKR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:51:17.297\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267260,\n                \"Amount\": 58.19,\n                \"FeeAmount\": 2,\n                \"Currency\": \"ESP - Spain\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:49:07.21\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267257,\n                \"Amount\": 84983.84,\n                \"FeeAmount\": 2,\n                \"Currency\": \"KOR - South Korea\",\n                \"CurrencyCode\": \"KRW\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:46:19.8\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267253,\n                \"Amount\": 51.5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:38:50.327\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267249,\n                \"Amount\": 50.16,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVN - Slovenia Euro\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:35:56.107\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267233,\n                \"Amount\": 56.18,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SVK - Slovakia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:29:18.717\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267230,\n                \"Amount\": 305.65,\n                \"FeeAmount\": 2,\n                \"Currency\": \"SMR - San Marino\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:27:36.177\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267225,\n                \"Amount\": 2644.52,\n                \"FeeAmount\": 2,\n                \"Currency\": \"POL- Poland\",\n                \"CurrencyCode\": \"PLN\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:21:39.57\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267226,\n                \"Amount\": 311,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PRT - Portugal\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:23:47.187\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267227,\n                \"Amount\": 61.53,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PRT - Portugal\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:24:54.777\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267221,\n                \"Amount\": 4834.39,\n                \"FeeAmount\": 2,\n                \"Currency\": \"PHL - Philippines \",\n                \"CurrencyCode\": \"PHP\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:18:46.273\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267209,\n                \"Amount\": 42.7,\n                \"FeeAmount\": 2,\n                \"Currency\": \"MLT - Malta\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:01:22.523\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267217,\n                \"Amount\": 370.53,\n                \"FeeAmount\": 2,\n                \"Currency\": \"NLD - Nederland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T14:16:02.007\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267206,\n                \"Amount\": 348.29,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LUX - Luxemburg\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:59:11.4\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267203,\n                \"Amount\": 149.46,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LTU - Lithuania\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:57:10.48\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267200,\n                \"Amount\": 79.4,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LVA - Latvia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:54:46.94\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267195,\n                \"Amount\": 77.4,\n                \"FeeAmount\": 2,\n                \"Currency\": \"IRL - Ireland\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:51:13.3\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267193,\n                \"Amount\": 23585.27,\n                \"FeeAmount\": 2,\n                \"Currency\": \"INR - India\",\n                \"CurrencyCode\": \"INR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:49:10.66\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267190,\n                \"Amount\": 74.06,\n                \"FeeAmount\": 2,\n                \"Currency\": \"GRC - Greece\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:44:31.483\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267187,\n                \"Amount\": 148.12,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:41:57.49\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267188,\n                \"Amount\": 93.41,\n                \"FeeAmount\": 2,\n                \"Currency\": \"DEU - Germany\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:42:41.33\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267185,\n                \"Amount\": 298.25,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FRA - France\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:40:05.04\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267181,\n                \"Amount\": 53.38,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:35:36.363\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267178,\n                \"Amount\": 90.74,\n                \"FeeAmount\": 2,\n                \"Currency\": \"EST - Estonia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:33:41.287\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267175,\n                \"Amount\": 40.03,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CYP - Cyprus\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:31:50.24\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267173,\n                \"Amount\": 841.86,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CZE - Czech Republic\",\n                \"CurrencyCode\": \"CZK\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:29:47.027\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267171,\n                \"Amount\": 80.07,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:27:40.087\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267168,\n                \"Amount\": 213.51,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T13:25:47.8\"\n            },\n            {\n                \"Date\": 20211004,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126267109,\n                \"Amount\": 320,\n                \"FeeAmount\": 2,\n                \"Currency\": \"AUT - Austria\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-04T10:34:26.177\"\n            },\n            {\n                \"Date\": 20211001,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126262002,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"BEL-Belgium\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-01T11:10:46.893\"\n            },\n            {\n                \"Date\": 20211001,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126262224,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LKA - Sri Lanka \",\n                \"CurrencyCode\": \"LKR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-01T14:39:30.52\"\n            },\n            {\n                \"Date\": 20211001,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126262285,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"LKA - Sri Lanka \",\n                \"CurrencyCode\": \"LKR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-01T15:08:49.883\"\n            },\n            {\n                \"Date\": 20211001,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126262305,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"FIN - Finlandia\",\n                \"CurrencyCode\": \"EUR\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-10-01T15:15:53.79\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210451,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T12:11:44.467\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210701,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T13:44:25.77\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210875,\n                \"Amount\": 3,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T14:39:32.277\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210884,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T14:42:29.763\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210893,\n                \"Amount\": 6,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T14:44:34.58\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210896,\n                \"Amount\": 65,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T14:45:28.897\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210902,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T14:47:13.297\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210828,\n                \"Amount\": 12,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T14:25:20.247\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210462,\n                \"Amount\": 8,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-29T12:17:27.383\"\n            },\n            {\n                \"Date\": 20210929,\n                \"CustomerNumber\": \"10220000441\",\n                \"Name\": \"Test Card  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126210440,\n                \"Amount\": 5,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-29T12:05:26.71\"\n            },\n            {\n                \"Date\": 20210927,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126197958,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-27T06:45:07.74\"\n            },\n            {\n                \"Date\": 20210927,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126198548,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-27T11:20:26.737\"\n            },\n            {\n                \"Date\": 20210926,\n                \"CustomerNumber\": null,\n                \"Name\": null,\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126197498,\n                \"Amount\": 5,\n                \"FeeAmount\": null,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-26T23:49:48.757\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191296,\n                \"Amount\": 2.7,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-23T08:59:14.377\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191458,\n                \"Amount\": 1.6,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-23T09:22:26.937\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191535,\n                \"Amount\": 3.7,\n                \"FeeAmount\": 0,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-23T09:49:37.17\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000441\",\n                \"Name\": \"Test Card  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191696,\n                \"Amount\": 1,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-23T11:28:05.52\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000470\",\n                \"Name\": \"Mehmet  Polat\",\n                \"MiddleName\": null,\n                \"LastName\": \"Polat\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191721,\n                \"Amount\": 1,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-23T11:52:24.45\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000470\",\n                \"Name\": \"Mehmet  Polat\",\n                \"MiddleName\": null,\n                \"LastName\": \"Polat\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191727,\n                \"Amount\": 3,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-23T11:57:06.017\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000471\",\n                \"Name\": \"Berkay  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191887,\n                \"Amount\": 8,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-23T16:20:19.893\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000471\",\n                \"Name\": \"Berkay  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126192063,\n                \"Amount\": 23,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-23T20:53:12.463\"\n            },\n            {\n                \"Date\": 20210923,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126191547,\n                \"Amount\": 3,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2021-09-23T09:56:52.75\"\n            },\n            {\n                \"Date\": 20210922,\n                \"CustomerNumber\": \"10220000458\",\n                \"Name\": \"Test  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126190217,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-22T20:25:07.7\"\n            },\n            {\n                \"Date\": 20210922,\n                \"CustomerNumber\": \"10220000458\",\n                \"Name\": \"Test  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126190232,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-22T20:40:13.657\"\n            },\n            {\n                \"Date\": 20210922,\n                \"CustomerNumber\": \"10220000458\",\n                \"Name\": \"Test  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126190255,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-22T21:13:28.84\"\n            },\n            {\n                \"Date\": 20210922,\n                \"CustomerNumber\": \"10220000458\",\n                \"Name\": \"Test  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126190305,\n                \"Amount\": 15,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-22T21:52:44.823\"\n            },\n            {\n                \"Date\": 20210922,\n                \"CustomerNumber\": \"10220000458\",\n                \"Name\": \"Test  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126190271,\n                \"Amount\": 25,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-22T21:28:45.983\"\n            },\n            {\n                \"Date\": 20210922,\n                \"CustomerNumber\": \"10220000458\",\n                \"Name\": \"Test  Mastercard\",\n                \"MiddleName\": null,\n                \"LastName\": \"Mastercard\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126190278,\n                \"Amount\": 12,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": null,\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-09-22T21:32:50.18\"\n            },\n            {\n                \"Date\": 20210920,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126184813,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-20T12:39:37.793\"\n            },\n            {\n                \"Date\": 20210920,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126184825,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-20T12:42:15.763\"\n            },\n            {\n                \"Date\": 20210914,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126159070,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-14T13:08:41.197\"\n            },\n            {\n                \"Date\": 20210913,\n                \"CustomerNumber\": \"10220000444\",\n                \"Name\": \"Deneme  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126153866,\n                \"Amount\": 5,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2021-09-13T12:32:11.303\"\n            },\n            {\n                \"Date\": 20210913,\n                \"CustomerNumber\": \"10220000444\",\n                \"Name\": \"Deneme  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126153874,\n                \"Amount\": 5,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2021-09-13T12:34:35.627\"\n            },\n            {\n                \"Date\": 20210913,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126153878,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-13T12:36:22.653\"\n            },\n            {\n                \"Date\": 20210909,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126130697,\n                \"Amount\": 5,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-09T07:58:50.237\"\n            },\n            {\n                \"Date\": 20210909,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126132776,\n                \"Amount\": 20,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-09T09:21:25.743\"\n            },\n            {\n                \"Date\": 20210909,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126132884,\n                \"Amount\": 8,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-09T09:27:02.073\"\n            },\n            {\n                \"Date\": 20210908,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126126650,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-08T15:22:58.38\"\n            },\n            {\n                \"Date\": 20210908,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126126774,\n                \"Amount\": 5,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-08T15:55:31.843\"\n            },\n            {\n                \"Date\": 20210908,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000126126829,\n                \"Amount\": 5,\n                \"FeeAmount\": 0,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"FAILED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-09-08T16:09:48.453\"\n            },\n            {\n                \"Date\": 20210827,\n                \"CustomerNumber\": \"10220000444\",\n                \"Name\": \"Deneme  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125955573,\n                \"Amount\": 15,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0454\",\n                \"CreateDate\": \"2021-08-27T10:35:12.14\"\n            },\n            {\n                \"Date\": 20210826,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125950104,\n                \"Amount\": 25,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Credit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0006\",\n                \"CreateDate\": \"2021-08-26T15:42:22.61\"\n            },\n            {\n                \"Date\": 20210826,\n                \"CustomerNumber\": \"10220000441\",\n                \"Name\": \"Test Card  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125949725,\n                \"Amount\": 10,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"\",\n                \"CreateDate\": \"2021-08-26T14:13:09.977\"\n            },\n            {\n                \"Date\": 20210826,\n                \"CustomerNumber\": \"10220000441\",\n                \"Name\": \"Test Card  Transfer\",\n                \"MiddleName\": null,\n                \"LastName\": \"Transfer\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125949909,\n                \"Amount\": 30,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-26T15:05:15.633\"\n            },\n            {\n                \"Date\": 20210826,\n                \"CustomerNumber\": \"10220000442\",\n                \"Name\": \"Visa  Deneme\",\n                \"MiddleName\": null,\n                \"LastName\": \"Deneme\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125949961,\n                \"Amount\": 50,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-26T15:11:22.403\"\n            },\n            {\n                \"Date\": 20210823,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125934772,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-23T07:43:23.093\"\n            },\n            {\n                \"Date\": 20210820,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125925787,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-20T14:48:32.66\"\n            },\n            {\n                \"Date\": 20210819,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125925280,\n                \"Amount\": 2,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-19T08:02:51.433\"\n            },\n            {\n                \"Date\": 20210819,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125925306,\n                \"Amount\": 2,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-19T08:15:03.863\"\n            },\n            {\n                \"Date\": 20210819,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125925434,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-19T10:37:30.277\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923364,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T14:41:51.807\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923365,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T14:44:03.363\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923366,\n                \"Amount\": 1,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T14:45:00.127\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923367,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T14:48:19.357\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923368,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"CAN - Canada\",\n                \"CurrencyCode\": \"CAD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T14:52:16.493\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923371,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T15:02:18.823\"\n            },\n            {\n                \"Date\": 20210818,\n                \"CustomerNumber\": \"10220000402\",\n                \"Name\": \"Testim testim  Testim\",\n                \"MiddleName\": null,\n                \"LastName\": \"Testim\",\n                \"OrderNumber\": null,\n                \"TransactionReferenceNumber\": 100000000125923385,\n                \"Amount\": 5,\n                \"FeeAmount\": 2,\n                \"Currency\": \"US - United States\",\n                \"CurrencyCode\": \"USD\",\n                \"TransactionType\": \"Debit\",\n                \"TransactionState\": \"SUCCEEDED\",\n                \"CardLast4\": \"0018\",\n                \"CreateDate\": \"2021-08-18T15:35:44.233\"\n            }\n        ],\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"dd18c256-2865-4b88-8ffb-1ccaf79893ed"}],"id":"ac540446-5087-4bca-ac28-ea300d23e7cc","_postman_id":"ac540446-5087-4bca-ac28-ea300d23e7cc","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"66f76790-8dbd-465a-9a40-ec6646779ee8","_postman_id":"66f76790-8dbd-465a-9a40-ec6646779ee8","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Bill Payment","item":[{"name":"Individual Bill Payment ","item":[{"name":"Create Individual Bill Payment","id":"1bf4c870-6fd2-4937-aaf3-a3e786237fc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"PayeeCode\": \"\",\n    \"PayeeName\": \"\",\n    \"Amount\": 0.0,\n    \"PayeeAccountNumber\": \"\",\n    \"Description\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CreateIndividualBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Individual Bill Payment API creates the bill transaction so that only one payment is required.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates the unique customer ID.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates payee code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates payee name.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>Indicates amount that is to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates payee account number, which is written on the bill to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Indicates the description/ reason for the payment.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BalanceTransactionInsertOpE1:</td>\n<td>Error Occurred When Adding Balance Transaction.</td>\n</tr>\n<tr>\n<td>BillInformationControlE1:</td>\n<td>Bill URL Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE2:</td>\n<td>Transaction Amount Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE3:</td>\n<td>Account Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE4:</td>\n<td>Payee Not Found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE5:</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE6:</td>\n<td>Insufficient Balance.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","CreateIndividualBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"37ba9840-1bd1-4711-b3d9-f163dccddc54","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10380000089\",\n    \"PayeeCode\": \"000005\",\n    \"PayeeName\": \"TELUS MOBILITY INC\",\n    \"Amount\": 4,\n    \"PayeeAccountNumber\": \"33213533\",\n    \"Description\": \"ApiTest\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CreateIndividualBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 295,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"1bf4c870-6fd2-4937-aaf3-a3e786237fc6"},{"name":"Cancel Individual Bill Payment","id":"53051351-4e14-4329-9fbd-343a489f8f9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"BillId\": 12345\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CancelIndividualBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Individual Bill Payment API cancels the current billing cycle.</p>\n<p><i>Note:</i> To do this, ensure that the paid bill that is going to be cancelled is not in the file that is going to be sent to the Payee processor. Once the file includes the Individual Bill, it cannot be cancelled.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BillId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>Indicates the unique ID for the individual transantion.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Bill Payment List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReverseBillE1</td>\n<td>Bill Not Found.</td>\n</tr>\n<tr>\n<td>ReverseBillE4</td>\n<td>Bill Already Cancelled.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","CancelIndividualBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7169f153-f743-40ba-b6c8-c9ee56029321","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"BillId\": 295\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CancelIndividualBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": false,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"53051351-4e14-4329-9fbd-343a489f8f9d"}],"id":"680bc17c-49c8-46e2-bb4e-f060c03d688a","_postman_id":"680bc17c-49c8-46e2-bb4e-f060c03d688a","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Recurring Bill Payment ","item":[{"name":"Create Recurring Bill Payment","id":"90ebee35-529a-45ee-9d32-8cadc8a61c37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"PayeeCode\": \"\",\n    \"PayeeName\": \"\",\n    \"CustomerNumber\": \"\",\n    \"PayeeAccountNumber\": \"\",\n    \"RecurringAmount\": 0.0,\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-0:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"Description\": \"\",\n    \"FirstDueDateOption\": 0,\n    \"PeriodWeekly\": 0,\n    \"PeriodBiWeekly\": 0,\n    \"PeriodMonthly\": 0,\n    \"PeriodQuarterly\": 0\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CreateRecurringBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Recurring Bill Payment API creates the bill transaction so that the payment will re-occur each pay period.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates the unique customer ID.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates the payee code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates the payee name.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RecurringAmount</td>\n<td><em>Decimal</em></td>\n<td>15</td>\n<td>Indicates the amount that is to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates payee account number, which is written on the bill to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Indicates the description/ reason for the payment.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indcates the start date of the recurring payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indcates the end date of the recurring payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstDueDateOption</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td><code>1</code> Weekly,  <br /><code>2</code> Bi-Weekly,  <br /><code>3</code> SemiMonthly,  <br /><code>4</code> Monthly,  <br /><code>5</code> Month End,  <br /><code>6</code> Quarterly,  <br /><code>7</code> Quarter End.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PeriodWeekly</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td><code>0</code> Sunday,  <br /><code>1</code> Monday,  <br /><code>2</code> Tuesday,  <br /><code>3</code> Wednesday,  <br /><code>4</code> Thursday,  <br /><code>5</code> Friday,  <br /><code>6</code> Saturday.  <br />  <br /><strong>Required</strong> if <strong>First Due Date Option</strong> is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PeriodBiWeekly</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td><code>0</code> Sunday,  <br /><code>1</code> Monday,  <br /><code>2</code> Tuesday,  <br /><code>3</code> Wednesday,  <br /><code>4</code> Thursday,  <br /><code>5</code> Friday,  <br /><code>6</code> Saturday.  <br />  <br /><strong>Required</strong> if <strong>First Due Date Option</strong> is <code>2</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PeriodMonthly</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>The number of the month.  <br />  <br /><strong>Required</strong> if <strong>First Due Date Option</strong> is <code>4</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PeriodQuarterly</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>The date of the month.  <br />  <br /><strong>Required</strong> if <strong>First Due Date Option</strong> is <code>6</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateRecurringBillPaymentOpE1</td>\n<td>The Starting Date Cannot Be Greater Than Or Equal To The Ending Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE2</td>\n<td>The Ending Date Cannot Be Smaller Than Or Equal To The Starting Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE6</td>\n<td>That Period Is Not Valid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","CreateRecurringBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6c78212d-ab60-46a6-bdc2-cb13b22bd90a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PayeeCode\": \"000007\",\n    \"PayeeName\": \"BELL CANADA\",\n    \"CustomerNumber\": \"0220000001\",\n    \"PayeeAccountNumber\": \"24704420ZZZ804\",\n    \"RecurringAmount\": 2.3,\n    \"StartDate\": \"2020-04-07T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-07-10T00:00:00.0000000+00:00\",\n    \"Description\": \"ApiTest\",\n    \"FirstDueDateOption\": 4,\n    \"PeriodWeekly\": 0,\n    \"PeriodBiWeekly\": 0,\n    \"PeriodMonthly\": 7,\n    \"PeriodQuarterly\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CreateRecurringBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 437,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"90ebee35-529a-45ee-9d32-8cadc8a61c37"},{"name":"Cancel Recurring Bill Payment","id":"f90ab4fe-714b-4554-a098-3bf19b3ae43d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"BillId\": 12345\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CancelRecurringBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Recurring Bill Payment API cancels the re-curring bill payment schedule. <em>Note</em> The BillId to be canceled is required.</p>\n<p><i>Note:</i> Re-curring bills can only be cancelled if the payment has not already been sent to the Payee Processor and not included in Settlement File.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BillId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>Indicates the unique ID for the recurring transantion.  <br />This can be retrieved using the <em><strong>Bill Payment -&gt; Get All Bill Recurring Bill List</strong></em> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateBillPaymentRecurringTransactionOpE1</td>\n<td>Data Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","CancelRecurringBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"28fd8bc1-2940-47de-9f53-f94c239bf626","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"BillId\": 437\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CancelRecurringBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": false,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f90ab4fe-714b-4554-a098-3bf19b3ae43d"},{"name":"Freeze Recurring Bill Payment","id":"e2b975e3-7979-45ab-ae0e-b25cfa015b92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"BillId\": 12345,\n    \"FreezeStartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"FreezeEndDate\": \"2020-01-01T00:00:00.0000000-00:00\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/FreezeRecurringBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>Freezes an ongoing bill payment for a specified time period.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BillId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>Unique ID associated with the recurring transaction.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Bill Recurring Bill List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeStartDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>The starting date of the bill Freeze.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeEndDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>The end date of the bill Freeze.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateRecurringBillPaymentTransactionE1</td>\n<td>No Bill Found Matching The ID Provided.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentRecurringTransactionOpE2</td>\n<td>No Bill Found Matching The ID Provided.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentRecurringTransactionOpE3</td>\n<td>The Bill Provided Is Cancelled And Cannot Be Frozen.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentRecurringTransactionOpE4</td>\n<td>The Bill Provided Is Completed And Cannot Be Frozen.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentRecurringTransactionOpE5</td>\n<td>The Bill Provided Has Experience An Error And Cannot Be Frozen.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE3</td>\n<td>Freeze End Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE4</td>\n<td>Freeze Starting Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE5</td>\n<td>Freeze End Date Cannot Be Before The Freeze Start Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE11</td>\n<td>Freeze Starting Date Must Be Before The Freeze Ending Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE12</td>\n<td>Freeze End Date Must Be After The Starting Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE13</td>\n<td>Freeze End Date Cannot Be Before The Bill Starting Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE14</td>\n<td>Freeze End Date Must Be Before The Bill End Date.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE5</td>\n<td>Billing Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE</td>\n<td>Billing Account Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","FreezeRecurringBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"85fb8820-cb5c-4e46-bdf6-5f381abe5c0a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"BillId\": 437,\n    \"FreezeStartDate\": \"2020-06-01T00:00:00.0000000-00:00\",\n    \"FreezeEndDate\": \"2020-06-25T00:00:00.0000000-00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/FreezeRecurringBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e2b975e3-7979-45ab-ae0e-b25cfa015b92"}],"id":"36374323-9a7f-42f2-a892-d37ee9bdf858","_postman_id":"36374323-9a7f-42f2-a892-d37ee9bdf858","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Transaction","item":[{"name":"Get All Bill Payment List","id":"15c0ab34-fb98-4a5f-90b1-912efb28b057","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"PayeeCode\": \"\",\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllBillPaymentList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Bill Payment List API retrieves bill payments, including single (Individual) transactions and the period that has been paid for each transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates the customer unique number.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates the payee code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>The starting date of the bill Freeze.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>The end date of the bill Freeze.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>ClientName</td>\n<td><em>String</em></td>\n<td>The name of the client.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The name of the customer.</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>The payee code.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>Date</td>\n<td><em>DateTime</em></td>\n<td>The date of the payment.</td>\n</tr>\n<tr>\n<td>BillAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The payee account number, the funds destination.</td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>The name of the payee.</td>\n</tr>\n<tr>\n<td>LastPayment</td>\n<td><em>Decimal</em></td>\n<td>The amount of the most recent payment.</td>\n</tr>\n<tr>\n<td>LastPaymentDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the most recent payment.</td>\n</tr>\n<tr>\n<td>AutoPayPeriod</td>\n<td><em>Numeric</em></td>\n<td>The auto pay period.</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td><em>DateTime</em></td>\n<td>The bill start date.</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td><em>DateTime</em></td>\n<td>The bill end date.</td>\n</tr>\n<tr>\n<td>AutoPayAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount if auto pay is enabled.</td>\n</tr>\n<tr>\n<td>TotalAmount</td>\n<td><em>Decimal</em></td>\n<td>The total bill amount.</td>\n</tr>\n<tr>\n<td>Fee</td>\n<td><em>Decimal</em></td>\n<td>Any fees incurred on the bill.</td>\n</tr>\n<tr>\n<td>IsAutoPayPeriod</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating if auto pay is enabled or not.</td>\n</tr>\n<tr>\n<td>CreateDate</td>\n<td><em>DateTime</em></td>\n<td>The date the bill was created.</td>\n</tr>\n<tr>\n<td>FreezeStartDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the payment, this is the start date.</td>\n</tr>\n<tr>\n<td>FreezeEndDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the payment, this is the end date of the freeze.</td>\n</tr>\n<tr>\n<td>PayIndex</td>\n<td><em>Numeric</em></td>\n<td>The pay index.</td>\n</tr>\n<tr>\n<td>PaymentCount</td>\n<td><em>Numeric</em></td>\n<td>How many payments have been made.</td>\n</tr>\n<tr>\n<td>BillDescription</td>\n<td><em>String</em></td>\n<td>The description/reason for the bill.</td>\n</tr>\n<tr>\n<td>PeriodCode</td>\n<td><em>Numeric</em></td>\n<td>The period code.</td>\n</tr>\n<tr>\n<td>BillStatus</td>\n<td><em>String</em></td>\n<td>The status of the bill.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique transaction reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetAllBillPaymentList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"43761443-34ad-4a08-83cb-aa80ce8baed0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ClientCustomerId\": \"0220000001\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllBillPaymentList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 67,\n            \"ClientName\": \"EP Financial\",\n            \"CustomerName\": \"Demi Lovato\",\n            \"PayeeCode\": \"000006\",\n            \"Amount\": 3,\n            \"Date\": \"2019-11-23T13:45:36.227\",\n            \"BillAccountNumber\": \"6024523148\",\n            \"PayeeName\": \"TELUS COMMUNICATIONS\",\n            \"LastPayment\": null,\n            \"LastPaymentDate\": null,\n            \"AutoPayPeriod\": null,\n            \"FromDate\": null,\n            \"ToDate\": null,\n            \"AutoPayAmount\": null,\n            \"TotalAmount\": null,\n            \"Fee\": 0,\n            \"IsAutoPayPeriod\": true,\n            \"CreateDate\": \"2019-11-23T13:45:36.227\",\n            \"FreezeStartDate\": null,\n            \"FreezeEndDate\": null,\n            \"PayIndex\": 0,\n            \"PaymentCount\": null,\n            \"BillDescription\": \"TestApi\",\n            \"PeriodCode\": null,\n            \"BillStatus\": \"Waiting\",\n            \"TransactionReferenceNumber\": \"100000000125106638\"\n        },\n        {\n            \"Id\": 68,\n            \"ClientName\": \"EP Financial\",\n            \"CustomerName\": \"Demi Lovato\",\n            \"PayeeCode\": \"000006\",\n            \"Amount\": 7,\n            \"Date\": \"2019-11-23T13:47:19.783\",\n            \"BillAccountNumber\": \"6024523148\",\n            \"PayeeName\": \"TELUS COMMUNICATIONS\",\n            \"LastPayment\": null,\n            \"LastPaymentDate\": null,\n            \"AutoPayPeriod\": null,\n            \"FromDate\": null,\n            \"ToDate\": null,\n            \"AutoPayAmount\": null,\n            \"TotalAmount\": null,\n            \"Fee\": 0,\n            \"IsAutoPayPeriod\": true,\n            \"CreateDate\": \"2019-11-23T13:47:19.783\",\n            \"FreezeStartDate\": null,\n            \"FreezeEndDate\": null,\n            \"PayIndex\": 0,\n            \"PaymentCount\": null,\n            \"BillDescription\": \"TestApiTransaction\",\n            \"PeriodCode\": null,\n            \"BillStatus\": \"Waiting\",\n            \"TransactionReferenceNumber\": \"100000000125106639\"\n        },\n        {\n            \"Id\": 72,\n            \"ClientName\": \"EP Financial\",\n            \"CustomerName\": \"Demi Lovato\",\n            \"PayeeCode\": \"000006\",\n            \"Amount\": 13,\n            \"Date\": \"2019-11-24T14:04:27.553\",\n            \"BillAccountNumber\": \"6024523148\",\n            \"PayeeName\": \"TELUS COMMUNICATIONS\",\n            \"LastPayment\": null,\n            \"LastPaymentDate\": null,\n            \"AutoPayPeriod\": null,\n            \"FromDate\": null,\n            \"ToDate\": null,\n            \"AutoPayAmount\": null,\n            \"TotalAmount\": null,\n            \"Fee\": 0,\n            \"IsAutoPayPeriod\": true,\n            \"CreateDate\": \"2019-11-24T14:04:27.553\",\n            \"FreezeStartDate\": null,\n            \"FreezeEndDate\": null,\n            \"PayIndex\": 0,\n            \"PaymentCount\": null,\n            \"BillDescription\": \"TestTransaction\",\n            \"PeriodCode\": null,\n            \"BillStatus\": \"Waiting\",\n            \"TransactionReferenceNumber\": \"100000000125106645\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"15c0ab34-fb98-4a5f-90b1-912efb28b057"},{"name":"Get All Bill Recurring Bill List","id":"c230d94b-adf5-445c-b752-9cd398f65bb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"PayeeCode\": \"\",\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllBillRecurringBillList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Bill Recurring Bill List API retrieves all bill payments, including single (Individual) transactions and the period that has been paid for each recurring transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td>Indicates the payee code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>Indicates the start date of the recurring bill.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>Indicates the end date of the recurring bill.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>ClientName</td>\n<td><em>String</em></td>\n<td>The client name.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customer name.</td>\n</tr>\n<tr>\n<td>BillerCode</td>\n<td><em>Numeric</em></td>\n<td>The biller code.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>BillAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account to which the funds are being sent.</td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>The payee name.</td>\n</tr>\n<tr>\n<td>AutoPayPeriod</td>\n<td><em>String</em></td>\n<td>The auto pay period for the bill.</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td><em>DateTime</em></td>\n<td>The start date of the bill.</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td><em>DateTime</em></td>\n<td>The end date of the bill.</td>\n</tr>\n<tr>\n<td>AutoPayAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount that is on an auto pay schedule.</td>\n</tr>\n<tr>\n<td>TotalAmount</td>\n<td><em>Decimal</em></td>\n<td>The total bill amount.</td>\n</tr>\n<tr>\n<td>IsAutoPayPeriod</td>\n<td>Boolean</td>\n<td>True Or False value indicating whether auto pay is enabled or not.</td>\n</tr>\n<tr>\n<td>CreateDate</td>\n<td><em>DateTime</em></td>\n<td>The date the bill was created.</td>\n</tr>\n<tr>\n<td>FreezeStartDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the bill, this is the start date of the freeze.</td>\n</tr>\n<tr>\n<td>FreezeEndDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the bill, this is the end date of the freeze.</td>\n</tr>\n<tr>\n<td>PayIndex</td>\n<td><em>Numeric</em></td>\n<td>The pay index.</td>\n</tr>\n<tr>\n<td>PaymentCount</td>\n<td><em>Numeric</em></td>\n<td>The number of payments made to date.</td>\n</tr>\n<tr>\n<td>BillDescription</td>\n<td><em>String</em></td>\n<td>A description of the bill.</td>\n</tr>\n<tr>\n<td>PeriodCode</td>\n<td><em>String</em></td>\n<td>The period code.</td>\n</tr>\n<tr>\n<td>FuturePaymentDate</td>\n<td><em>DateTime</em></td>\n<td>The next payment date.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td><em>String</em></td>\n<td>The status of the payment.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetAllBillRecurringBillList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e8b963df-3840-4571-b783-f6b63e1512a2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ClientCustomerId\": \"0220000001\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllBillRecurringBillList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 38,\n            \"ClientName\": \"EP Financial\",\n            \"CustomerName\": \"Annabelle Everest\",\n            \"BillerCode\": \"000006\",\n            \"Amount\": 2.45,\n            \"BillAccountNumber\": \"6024523148\",\n            \"PayeeName\": \"TELUS COMMUNICATIONS\",\n            \"AutoPayPeriod\": \"Weekly\",\n            \"FromDate\": \"2019-12-12T00:00:00\",\n            \"ToDate\": \"2020-03-27T00:00:00\",\n            \"AutoPayAmount\": 2.45,\n            \"TotalAmount\": 36.75,\n            \"IsAutoPayPeriod\": null,\n            \"CreateDate\": \"2019-12-18T07:21:23.633\",\n            \"FreezeStartDate\": null,\n            \"FreezeEndDate\": null,\n            \"PayIndex\": 5,\n            \"PaymentCount\": 15,\n            \"BillDescription\": \"TestApi\",\n            \"PeriodCode\": \"W\",\n            \"FuturePaymentDate\": \"2020-01-28T00:00:12.033\",\n            \"Status\": \"Working\"\n        },\n        {\n            \"Id\": 39,\n            \"ClientName\": \"EP Financial\",\n            \"CustomerName\": \"Annabelle Everest\",\n            \"BillerCode\": \"000006\",\n            \"Amount\": 1.42,\n            \"BillAccountNumber\": \"6024523148\",\n            \"PayeeName\": \"TELUS COMMUNICATIONS\",\n            \"AutoPayPeriod\": \"Bi-Weekly\",\n            \"FromDate\": \"2019-12-12T00:00:00\",\n            \"ToDate\": \"2020-03-27T00:00:00\",\n            \"AutoPayAmount\": 1.42,\n            \"TotalAmount\": 8.52,\n            \"IsAutoPayPeriod\": null,\n            \"CreateDate\": \"2019-12-18T11:19:42.753\",\n            \"FreezeStartDate\": null,\n            \"FreezeEndDate\": null,\n            \"PayIndex\": 3,\n            \"PaymentCount\": 6,\n            \"BillDescription\": \"TestApi\",\n            \"PeriodCode\": \"BW\",\n            \"FuturePaymentDate\": \"2020-01-29T00:04:57.2\",\n            \"Status\": \"Working\"\n        },\n        {\n            \"Id\": 40,\n            \"ClientName\": \"EP Financial\",\n            \"CustomerName\": \"Annabelle Everest\",\n            \"BillerCode\": \"000006\",\n            \"Amount\": 1.42,\n            \"BillAccountNumber\": \"6024523148\",\n            \"PayeeName\": \"TELUS COMMUNICATIONS\",\n            \"AutoPayPeriod\": \"Semi-Monthly\",\n            \"FromDate\": \"2019-12-12T00:00:00\",\n            \"ToDate\": \"2020-07-27T00:00:00\",\n            \"AutoPayAmount\": 1.42,\n            \"TotalAmount\": 9.94,\n            \"IsAutoPayPeriod\": null,\n            \"CreateDate\": \"2019-12-18T11:20:45.847\",\n            \"FreezeStartDate\": \"2020-01-14T00:00:00\",\n            \"FreezeEndDate\": \"2020-03-29T00:00:00\",\n            \"PayIndex\": 0,\n            \"PaymentCount\": 7,\n            \"BillDescription\": \"TestApi\",\n            \"PeriodCode\": \"SM\",\n            \"FuturePaymentDate\": \"2020-02-15T00:00:00\",\n            \"Status\": \"Freezed\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c230d94b-adf5-445c-b752-9cd398f65bb1"}],"id":"c6f2db6c-ce0a-47f1-8a68-42a330d5c25e","_postman_id":"c6f2db6c-ce0a-47f1-8a68-42a330d5c25e","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Payee","item":[{"name":"Get All Payee","id":"15785843-5548-4550-9a35-9c07120d2b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllPayee","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Payee API retrieves the biller (payee) that has been saved as a customer saved payee to the clients Contacts as a template. Should a payee cease to be supported, this will not be reflected here.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique payee identifier.</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>The payee code.</td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The payee account number. Where funds are destined.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the payment.</td>\n</tr>\n<tr>\n<td>RecepientName</td>\n<td><em>String</em></td>\n<td>The name of the funds recepient.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetAllPayee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e411b148-94fb-4fac-ab50-d53af0631305","name":"Get All Payee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllPayee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 Dec 2021 06:59:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"318","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 19,\n            \"PayeeCode\": \"000006\",\n            \"PayeeAccountNumber\": \"6024523148\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 20,\n            \"PayeeCode\": \"000006\",\n            \"PayeeAccountNumber\": \"6024523148\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 21,\n            \"PayeeCode\": \"000006\",\n            \"PayeeAccountNumber\": \"6024523148\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 22,\n            \"PayeeCode\": \"000007\",\n            \"PayeeAccountNumber\": \"9052129678\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 23,\n            \"PayeeCode\": \"000006\",\n            \"PayeeAccountNumber\": \"6024523148\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 24,\n            \"PayeeCode\": \"000007\",\n            \"PayeeAccountNumber\": \"9052129678\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 25,\n            \"PayeeCode\": \"000007\",\n            \"PayeeAccountNumber\": \"9052129678\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 26,\n            \"PayeeCode\": \"000007\",\n            \"PayeeAccountNumber\": \"9052129678\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 34,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 35,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 36,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 37,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 38,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 48,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 55,\n            \"PayeeCode\": \"000005\",\n            \"PayeeAccountNumber\": \"33213533\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 126,\n            \"PayeeCode\": \"006656\",\n            \"PayeeAccountNumber\": \"27649783\",\n            \"Amount\": null,\n            \"Description\": null,\n            \"RecipientName\": \"KOODO MOBILE\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"15785843-5548-4550-9a35-9c07120d2b5f"},{"name":"Delete Payee","id":"5e91e5ff-e4b7-4f50-b401-0d04053636b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Id\": 12345\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/DeletePayee","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete Payee API deletes the payee (biller) that has been saved as a contact.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The payee unique identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BillRecipientE9</td>\n<td>Bill Recipient Definition Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","DeletePayee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"04bd0d1f-68ee-4cdd-b228-871681cecaba","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Id\": 74\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/DeletePayee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 17:07:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"220","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=2592000","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=0b3011b26d9792cea61a928db77ae78affdcc0fb21ae1d28a34040ea2ea600c7;Path=/;HttpOnly;Domain=dcb-mrcapi-sandbox.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": false,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5e91e5ff-e4b7-4f50-b401-0d04053636b2"},{"name":"Get Payee List","id":"9174fc14-897c-4229-ba20-6f688164a216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"UNIVERSITY OF TORONTO\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetPayeeList","description":"<h3 id=\"description\">Description</h3>\n<p>Retrieves the Payee Names and Payee Code related to the search.</p>\n<p><b>Note:</b> At least 3 characters must be written to get the results and the response body will contain what was written to get payee list.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Payee name to filter search results.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>Payee name.</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>String</em></td>\n<td>Payee billing code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PayeeProcessor_PayeeNameCheckE1</td>\n<td>Payee Name Did Not Match Any Records.</td>\n</tr>\n<tr>\n<td>PayeeProcessor_PayeeControlE1</td>\n<td>Payee Search Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetPayeeList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2703fb53-e207-49df-8ca3-61b59820cac9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"cr\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetPayeeList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"PayeeName\": \"KEYANO COLLEGE CREDIT TUITION\",\n            \"PayeeCode\": \"004423\"\n        },\n        {\n            \"PayeeName\": \"KEYANO COLLEGE NON CREDIT\",\n            \"PayeeCode\": \"004424\"\n        },\n        {\n            \"PayeeName\": \"LA CRETE CO-OP LIMITED\",\n            \"PayeeCode\": \"004767\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9174fc14-897c-4229-ba20-6f688164a216"},{"name":"Search Payee","id":"d8c91e7d-0059-488d-a58e-a66f6a56cdde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345678908\",\t\n    \"PayeeCode\": \"004649\",\n    \"PayeeAccountNumber\": \"\",\n    \"Description\": \"\",\n    \"RecipientName\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/SearchPayee","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Payee API searches the saved payee listed in the Contacts template. This will return any supported institution.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td>The payee billing code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>20</td>\n<td>The payee account number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Description of the payments.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>RecepientName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Payment recepient name.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The payee unique identifier.</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>The payee code.</td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The payee account number.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the payment.</td>\n</tr>\n<tr>\n<td>RecepientName</td>\n<td><em>String</em></td>\n<td>The funds recepient name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BillCheckClientCustomerE1</td>\n<td>No Such Customer Found For Bill.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","SearchPayee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f4ab8b17-8188-4aff-9588-d6e31057b1a5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345678908\",\t\n    \"PayeeCode\": \"\",\n    \"PayeeAccountNumber\": \"\",\n    \"Description\": \"\",\n    \"RecipientName\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/SearchPayee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 71,\n            \"PayeeCode\": \"000006\",\n            \"PayeeAccountNumber\": \"6024523148\",\n            \"Amount\": 4.5,\n            \"Description\": \"Test Payee\",\n            \"RecipientName\": null\n        },\n        {\n            \"Id\": 73,\n            \"PayeeCode\": \"000006\",\n            \"PayeeAccountNumber\": \"6024523148\",\n            \"Amount\": 14.5,\n            \"Description\": \"Save Payee Tesst\",\n            \"RecipientName\": \"Test Payee\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d8c91e7d-0059-488d-a58e-a66f6a56cdde"},{"name":"Save Payee","id":"c0e3f8af-a49e-453a-84a0-86af58677b3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerNumber\": \"12345678909\",\n    \"PayeeCode\": \"\",\n    \"PayeeAccountNumber\": \"\",\n    \"Amount\": 0.0,\n    \"Description\": \"\",\n    \"RecipientName\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/SavePayee","description":"<h3 id=\"description\">Description</h3>\n<p>The Save Payee API saves the payee (biller) in the contacts template so that it can be used whenever the user wants to pay the bill. To get the PayeeCode, call the Get Payee List with the name of the payee by searching with at least 3 characters.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td>Indicates the payee code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>20</td>\n<td>Indicates the payee account number, which is written on the bill to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>Indicates the amount that is to be paid.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Indicates the description/ reason for the payment.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>RecipientName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates the name of the reciever of the funds.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>The payee code.</td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number of the payee.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the payment.</td>\n</tr>\n<tr>\n<td>RecepientName</td>\n<td><em>String</em></td>\n<td>The name of the person receiving the funds.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PayeeProcessor_AccountNumberCheckE1</td>\n<td>The entered Payee and Payee Account Number don't match with the Payee Processor system.</td>\n</tr>\n<tr>\n<td>BillRecipientE4</td>\n<td>Account Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>BillRecipientE6</td>\n<td>Biller Must Be Filled.</td>\n</tr>\n<tr>\n<td>BillRecipientE20</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","SavePayee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"91f814e4-5a8e-492d-8e50-6e52b85e34d5","name":"Save Payee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerNumber\": \"10220000048\",\n    \"PayeeCode\": \"000006\",\n    \"PayeeAccountNumber\": \"6024523148\",\n    \"Amount\": 7.0,\n    \"Description\": \"TestApi\",\n    \"RecipientName\": \"Deneme\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/SavePayee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 13:37:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"230","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": \"10220000048\",\n        \"Id\": 156,\n        \"PayeeCode\": \"000006\",\n        \"PayeeAccountNumber\": \"6024523148\",\n        \"Amount\": 7,\n        \"Description\": \"TestApi\",\n        \"RecipientName\": \"Deneme\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c0e3f8af-a49e-453a-84a0-86af58677b3c"},{"name":"Update Payee","id":"bfda8dfb-6478-4110-828c-a899e42001e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerNumber\": \"12345678074\",\n\t\"Id\": 12345,\n    \"PayeeCode\": \"\",\n    \"PayeeAccountNumber\": \"\",\n    \"Amount\": 0.0,\n    \"Description\": \"\",\n    \"RecipientName\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/UpdatePayee","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Payee API updates the saved payee as a contact through the Save Payee API. <em>Note</em> The Id is the unique number to identify the Payee ( biller ) and it is retrieved once the Payee ( biller ) has been saved.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td>The payee code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>20</td>\n<td>The payee account number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>15</td>\n<td>The amount of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>A description of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RecepientName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>The name of the intended receiver of the funds.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>Numeric</em></td>\n<td>The payee code.</td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The payee account number.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the payment.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the payment.</td>\n</tr>\n<tr>\n<td>RecepientName</td>\n<td><em>String</em></td>\n<td>The intended receiver of the funds.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BillRecipientE4</td>\n<td>Account Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>BillRecipientE6</td>\n<td>Biller Must Be Filled.</td>\n</tr>\n<tr>\n<td>BillRecipientE9</td>\n<td>Bill Recipient Definition Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","UpdatePayee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"15dd116b-d128-451a-886e-ef4577b3f88a","name":"Update Payee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerNumber\": \"10220000048\",\n\t\"Id\": 156,\n    \"PayeeCode\": \"000006\",\n    \"PayeeAccountNumber\": \"6024523148\",\n    \"Amount\": 5.0,\n    \"Description\": \"Test\",\n    \"RecipientName\": \"TestApi\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/UpdatePayee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 11 Jan 2022 13:40:35 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"217","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": null,\n        \"Id\": 156,\n        \"PayeeCode\": \"000006\",\n        \"PayeeAccountNumber\": \"6024523148\",\n        \"Amount\": 5,\n        \"Description\": \"Test\",\n        \"RecipientName\": \"TestApi\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bfda8dfb-6478-4110-828c-a899e42001e6"}],"id":"6ae0b114-91be-497f-9b55-da0b85a514e4","_postman_id":"6ae0b114-91be-497f-9b55-da0b85a514e4","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Bill Program Customer","item":[{"name":"Get All Customer","id":"a89589c4-1263-4c90-9aba-b48ea68dad74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Customer API retrieves a list of bill payments for the Customer.<br /><b>Note:</b> The CustomerNumber for Bill Payment customers is required.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The unique customer identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customer name.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the customer. (P)Personal or (C)Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The clients unique ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The customer email.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The customer phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The customer street address.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The customer street address.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the customer resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the customer resides.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the customer resides.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The postal/zipcode where the customer resides.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","GetAllCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6ea0b3ca-6070-49d4-8c75-0446ed29dbbf","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/GetAllCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 16:34:18 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"551","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=2592000","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=0b3011b26d9792cea61a928db77ae78affdcc0fb21ae1d28a34040ea2ea600c7;Path=/;HttpOnly;Domain=dcb-mrcapi-sandbox.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 20274,\n            \"CustomerNumber\": \"0220000045\",\n            \"CustomerName\": \"Berkant Sencer\",\n            \"CustomerTypeCode\": null,\n            \"UniqueClientId\": 0,\n            \"Email\": null,\n            \"PhoneNumber\": null,\n            \"AddressLine1\": null,\n            \"AddressLine2\": null,\n            \"City\": null,\n            \"Province\": null,\n            \"Country\": null,\n            \"ZipCode\": null\n        },\n        {\n            \"CustomerId\": 20315,\n            \"CustomerNumber\": \"10220000048\",\n            \"CustomerName\": \"Annabelle Everest\",\n            \"CustomerTypeCode\": null,\n            \"UniqueClientId\": 0,\n            \"Email\": null,\n            \"PhoneNumber\": null,\n            \"AddressLine1\": null,\n            \"AddressLine2\": null,\n            \"City\": null,\n            \"Province\": null,\n            \"Country\": null,\n            \"ZipCode\": null\n        },\n        {\n            \"CustomerId\": 20343,\n            \"CustomerNumber\": \"10220000059\",\n            \"CustomerName\": \"Anton Fidura\",\n            \"CustomerTypeCode\": null,\n            \"UniqueClientId\": 0,\n            \"Email\": null,\n            \"PhoneNumber\": null,\n            \"AddressLine1\": null,\n            \"AddressLine2\": null,\n            \"City\": null,\n            \"Province\": null,\n            \"Country\": null,\n            \"ZipCode\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a89589c4-1263-4c90-9aba-b48ea68dad74"},{"name":"Search Bill Customer","id":"197804f8-b9bc-4df5-a9dd-56a05e5f9210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10220000080\",\r\n  \"customerName\": \"BillPay Test\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"customerStatusCode\": \"N\",\r\n  \"beginDate\": \"2020-01-01T00:00:00.0000000-00:00\",\r\n  \"endDate\": \"2020-01-30T00:00:00.0000000-00:00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/SearchBillCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Bill Customer API searchs for the Customer's bill payments.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique customer number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customers full name, first and last.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type code of the customer:  <br /><code>P</code> - Personal  <br /><code>C</code> - Corporate</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStatusCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The status code of the customer:  <br />- Active  <br />- Inactive</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The start date to filter search results.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date to filter search results.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The unique customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customer name.</td>\n</tr>\n<tr>\n<td>CustomerTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the customer. (P)Personal or (C)Corporate.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The clients unique ID.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The customer email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The customer birthdate.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The customer phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The customer street address.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The customer street address.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the customer resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the customer resides.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the customer resides.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip/postalcode in which the customer resides.</td>\n</tr>\n<tr>\n<td>CustomerStatus</td>\n<td><em>String</em></td>\n<td>The status of the customer. Active or Inactive.</td>\n</tr>\n<tr>\n<td>IdentificationMethodId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the identification method.</td>\n</tr>\n<tr>\n<td>IdentityTypeId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the type of proof of identity.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>Numeric</em></td>\n<td>The number on the identity document.</td>\n</tr>\n<tr>\n<td>IdentityExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SearchBillCustomerE1</td>\n<td>End Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>SearchBillCustomerE2</td>\n<td>Begin Date Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","BillPayment","SearchBillCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"84b67fe2-2416-47fe-ac20-367c2ab66ffd","name":"Search Bill Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10220000080\",\r\n  \"customerName\": \"BillPay Test\",\r\n  \"customerTypeCode\": \"P\",\r\n  \"customerStatusCode\": \"N\",\r\n  \"beginDate\": \"2020-01-01T00:00:00.0000000-00:00\",\r\n  \"endDate\": \"2020-01-30T00:00:00.0000000-00:00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/SearchBillCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jan 2022 10:11:11 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"369","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 20384,\n            \"CustomerNumber\": \"10220000080\",\n            \"CustomerName\": \"BillPay Test\",\n            \"CustomerTypeCode\": \"P\",\n            \"UniqueClientId\": 500013,\n            \"Email\": \"tanya.nikolic@trucash.com\",\n            \"BirthDate\": null,\n            \"PhoneNumber\": null,\n            \"AddressLine1\": null,\n            \"AddressLine2\": null,\n            \"City\": \"Calgary\",\n            \"Province\": \"Alberta\",\n            \"Country\": null,\n            \"ZipCode\": null,\n            \"CustomerStatus\": \"Active\",\n            \"IdentificationMethodId\": null,\n            \"IdentityTypeId\": null,\n            \"IdentityNumber\": null,\n            \"IdentityExpireDate\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"197804f8-b9bc-4df5-a9dd-56a05e5f9210"}],"id":"2ea913cd-5771-4181-947f-09f01bc249d1","_postman_id":"2ea913cd-5771-4181-947f-09f01bc249d1","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"0b104182-c7a3-4303-8efb-22a2af50f2d1","_postman_id":"0b104182-c7a3-4303-8efb-22a2af50f2d1","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"EFT","item":[{"name":"Individual EFT Payment ","item":[{"name":"Create Individual EFT Transaction","id":"802ff745-8a17-458d-9867-3672d50711fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"R\", //Regular Transaction\n    \"CustomerNumber\": \"10000000001\",\n    \"CustomerAccountId\": 99999,\n    \"TransactionTypeCode\": \"D\", //Debiting Funds\n    \"TransactionCodeId\": 23073, //Type Of Transaction (Bill Payment)\n    \"Amount\": 100.0,\n    \"TransactionDate\": \"2020-01-01\",\n    \"Description\": \"Test EFT Transaction\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/CreateEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEftTransaction</em> endpoint is used for the creation of electronic funds transfers (<code>EFTs</code>).</p>\n<p>For use of this endpoint, you will need an existing customer already created that has been designated to the EFT program. Customers designated to the EFT program can be created by using the <em>CreateCustomer</em> endpoint or the <em>CreateEftTransactionWithCustomer</em> endpoint.</p>\n<p>The value for the <em><strong>CustomerAccountId</strong></em> field can be obtained from the <em>GetEftCustomerAccount</em> endpoint (the <em>GetEftCustomerAccount</em> endpoint lists financial institution routing information in relation to a particular customer).</p>\n<p>Transactions can be sent in two different priority levels depending on the value input into the <em><strong>EftTypeCode</strong></em> field. When value <code>R</code> is inputted, the transaction will be a <code>regular</code> priority transaction. When the value <code>P</code> is inputted, the transaction will be a <code>prioirty</code> type transaction.<br /><code>Regular</code> transactions are bundled and sent three times a day (at appoximatley 5am, 1pm, and 330pm Mountain time).<br /><code>Priority</code> transactions are bundled and sent four times a day (at approximately 5am, 12pm, 1pm, and 330pm).</p>\n<p>Money can be sent (<code>credited</code>) or requested (<code>debited</code>) via this endpoint determinate upon on the value inputted in the <em><strong>TransactionTypeCode</strong></em> field (<code>C</code> or <code>D</code>).</p>\n<p>The <em><strong>TransactionCodeId</strong></em> field is representative of the particular type of EFT transaction you are attempting to create. Use the <em>GetEftTransactionCode</em> endpoint to obtain this value.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length/Format</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the code for EFT Type.  <br /><code>P</code> - Priority  <br /><code>R</code>- Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Indicates the unique customer account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type of transaction.  <br /><code>C</code>- Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>Integer</em></td>\n<td>6</td>\n<td>Indicates the transaction code ID.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the date of transaction.  <br />The date value must be in <em>UTC</em> time</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialAccountId</td>\n<td><em>Integer</em></td>\n<td>8</td>\n<td>Indicates the destination account ID to use for sending/ receiving funds.  <br />  <br />See <strong>Client API -&gt; Client -&gt; Account -&gt; Get All Account</strong> API for a list of available account <code>ID</code> values.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the store code created in Client Setup.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>If this value is empty, the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>If this value is empty, the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EFTPastTransactionDateError</td>\n<td>Transaction Received After Transaction Date Cut Off.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE3</td>\n<td>Customer Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE4</td>\n<td>Invalid EFT Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE5</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE6</td>\n<td>Invalid Financial Account ID.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE7</td>\n<td>Originator Short Name Cannot Be Greater Than 15 Characters.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE8</td>\n<td>Originator Long Name Cannot Be Longer Than 30 Characters.</td>\n</tr>\n<tr>\n<td>CheckEFTTransactionRequestE10</td>\n<td>Transaction Code Must be Filled.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","CreateEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d328a14f-afb8-4949-a50c-a350ccca97df","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"R\",\n    \"CustomerNumber\": \"12345571\",\n    \"CustomerAccountId\": 20044,\n    \"TransactionTypeCode\": \"C\",\n    \"TransactionCodeId\": 23020,\n    \"Amount\": 1.50,\n    \"TransactionDate\": \"2020-04-01T00:00:00.0000000-00:00\",\n    \"Description\": \"One time payment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/CreateEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 101853,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"802ff745-8a17-458d-9867-3672d50711fd"},{"name":"Create Eft Transaction With Customer","id":"74fd2abc-3965-4ae1-bc09-a4124494c1d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"P\", //Priority Transaction\n    \"TransactionTypeCode\": \"C\", //Money Send\n    \"TransactionCodeId\": 922763,\n    \"Amount\": 200.0,\n    \"TransactionDate\": \"2024-07-25T00:00:00\",\n    \"Description\": \"EFT Test\",\n    \"CustomerName\": \"Edward Franklin Thompson\",\n    \"FinancialInstitutionId\": \"830\", //Bank Number\n    \"TransitNumber\": \"12\", //Transit Number\n    \"AccountNumber\": \"123456789\", //Customer Account\n    \"ClientReferenceNumber\": \"Your Reference Here\",\n    \"OriginatorShortName\": \"OriginatorShort\",\n    \"OriginatorLongName\": \"Originator Long Name\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/CreateEftTransactionWithCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEftTransactionWithCustomer</em><br />endpoint is used for the creation of individual electronic funds transfer (<code>EFT</code>) transactions simultaneously with a customer who is enrolled within the EFT program. This endpoint is an alternative to <em>CreateEftTransaction-- allowing you to create an EFT transaction without the need to first create a customer using the CreateCustomer</em> endpoint.</p>\n<p>Transactions can be sent in two different prioirty levels depending on the value input into the <em><strong>EftTypeCode</strong></em> field. When value <code>R</code> is inputted, the transaction will be a <code>regular</code> priority transaction. When the value <code>P</code> is inputted, the transaction will be a <code>priority</code> type transaction.<br /><code>Regular</code> transactions are bundled and sent three times a day (at appoximatley 5am, 1pm, and 330pm Mountain time).<br /><code>Priority</code> transactions are bundled and sent four times a day (at approximately 5am, 12pm, 1pm, and 330pm).</p>\n<p>Money can be sent (<code>credited</code>) or requested (<code>debited</code>) via this endpoint determinate upon on the value inputted in the <em><strong>TransactionTypeCode</strong></em> field (<code>C</code> or <code>D</code>).</p>\n<p>The <em><strong>TransactionCodeId</strong></em> field is representative of the particular type of EFT transaction you are attempting to create. Use the <em>GetEftTransactionCode</em> endpoint to obtain this value.</p>\n<p>The <em><strong>FinancialInsitutionId</strong></em> field is representative of the financial institution <strong>bank number</strong> which you wish to target. This can be obtained from the <em><strong>BankNumber</strong></em> field which is returned from the <em>GetFinancialInstitution</em> endpoint.</p>\n<p>The <em><strong>TransitNumber</strong></em> field is representative of the financial institution <strong>branch</strong> which you wish to target. Transit numbers can be found via a request to the <em>GetFinancialBranch</em> endpoint. Make a request to the <em>GetFinancialBranch</em> endpoint using the <em><strong>Id</strong></em> value returned from the <em>GetFinancialInstitution</em> response (this value will be entered into the <em><strong>financialInstitutionId</strong></em> field within your request to the <em>GetFinancialBranch</em> endpoint).</p>\n<p>The <em><strong>AccountNumber</strong></em> field is representative of the individual account held by your customer at the particular financial insitution branch that you are targeting.</p>\n<p>Once a successful call to <em>CreateEFTTransactionWithCustomer</em> has been made, external EFT customer accounts can be found via use of the <em>GetEftCustomerAccount</em> endpoint.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates Code for EFT Type.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td>integer</td>\n<td>17</td>\n<td>Indicates unique Customer Account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the Type of transaction.  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>Integer</em></td>\n<td>6</td>\n<td>Indicates the TransactionCodeID.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the date of transaction.  <br />The date value must be in <em>UTC</em> time.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Client's Store Code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates Customer's Full Name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates the Financial Institution's Bank Number.  <br />This value can be obtained using the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> API. The <em>Bank Number</em> can be retrieved from the body.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransitNumber</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates Transit Number.  <br />This value can be obtained using the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution Branch</strong> API. The <em>Transit Number can be retrieved</em> from the body.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>14</td>\n<td>Indicates the account number for the Customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>18</td>\n<td>Indicates the Client Reference Number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>The originator short name.  <br />If this value is empty the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>The originator long name.  <br />If this value is empty the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsSucceeded</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether the action was succesful or not.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Long</em></td>\n<td>The unique identifier of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Long</em></td>\n<td>The unique identifier of the etransfer.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Long</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Long</em></td>\n<td>The unique ID of the payee.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Long</em></td>\n<td>Transaction detail table identifier.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>String</em></td>\n<td>The validation code.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The CA interact reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The client reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEftTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EFTPastTransactionDateError</td>\n<td>Transaction received after Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CheckEFTTransactionRequestE3</td>\n<td>Transaction Code is Not Defined.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE4</td>\n<td>Invalid EFT Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE5</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE7</td>\n<td>Originator Short Name Cannot Exceed 15 Characters.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE8</td>\n<td>Originator Long Name Cannot Exceed 30 Characters.</td>\n</tr>\n<tr>\n<td>CreateEFTTransactionE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE16</td>\n<td>Invalid Transit Number.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE17</td>\n<td>Invalid Financial Institution Number.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE18</td>\n<td>Invalid Customer Number.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Name Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateError</td>\n<td>Create Customer Error.</td>\n</tr>\n<tr>\n<td>CheckEFTTransactionRequestE10</td>\n<td>Transaction Code Must be Filled.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","CreateEftTransactionWithCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"74fd2abc-3965-4ae1-bc09-a4124494c1d7"},{"name":"Update Individual EFT Transaction","id":"d6849d96-3370-4010-af4d-63535bab0361","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TransactionId\": 12345,\n    \"EftTypeCode\": \"\",\n    \"CustomerNumber\": \"\",\n    \"CustomerAccountId\": 12345,\n    \"TransactionTypeCode\": \"\",\n    \"TransactionCodeId\": 12345,\n    \"Amount\": 0.0,\n    \"TransactionDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"Description\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/UpdateEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Individual EFT Transaction API updates the transaction for the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Lenght</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the Unique ID of transaction.  <br />This can be obtained using the response body of <strong>Create EFT Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type code of the EFT.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the unique customer account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the Type of transaction:  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the Transaction Code ID.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Integer</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the date of transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateEftTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","UpdateEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1489fc70-59a1-493b-922e-2221968635a4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"TransactionId\": 101853,\n    \"EftTypeCode\": \"P\",\n    \"CustomerNumber\": \"12345571\",\n    \"CustomerAccountId\": 20044,\n    \"TransactionTypeCode\": \"D\",\n    \"TransactionCodeId\": 23023,\n    \"Amount\": 2.0,\n    \"TransactionDate\": \"2020-06-01T00:00:00.0000000-00:00\",\n    \"Description\": \"Another Description\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/UpdateEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 16:05:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"213","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=2592000","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=0b3011b26d9792cea61a928db77ae78affdcc0fb21ae1d28a34040ea2ea600c7;Path=/;HttpOnly;Domain=dcb-mrcapi-sandbox.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d6849d96-3370-4010-af4d-63535bab0361"},{"name":"Cancel Individual EFT Transaction","id":"b01dbb21-f479-4694-8b91-f3a492019a3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"TransactionId\": 12345\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/CancelEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Individual EFT Transaction cancels the transaction for the Customer. <em>Note</em> The transaction to be canceled must not be included in the payment file.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the Transaction ID.  <br />This can be retrieved using the <strong>Search Eft Transaction</strong> API with sending just the <strong>Customer Number</strong>.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CancelEFTTransactionE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFT","CancelEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cf6d88f1-791c-4417-9d72-5eb5b4811f4d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\",\n    \"TransactionId\": 101853\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/CancelEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b01dbb21-f479-4694-8b91-f3a492019a3c"},{"name":"Search Individual EFT Transaction","id":"4917781c-f08f-4e73-8ffa-9f9be7ccca2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    //\"TransactionId\": \"652955975\"\n\t//\"EftTypeCode\": \"\",\n    //\"CustomerNumber\": \"\",\n    //\"CustomerAccountId\": 12345,\n    //\"Description\": \"\",\n    //\"TransactionTypeCode\": \"\",\n    //\"tTransactionStatusCode\": \"P\", \n    //\"MinAmount\": 0.00,\n    //\"MaxAmount\": 0.00,\n    //\"MinTransactionDate\": \"2020-01-01\",\n    //\"MaxTransactionDate\": \"2020-01-01\",\n    //\"AccountNumber\": \"12345\"\n\t\"MinTransactionDate\": \"2025-03-01T01:00:00.229Z\",\n    \"MaxTransactionDate\": \"2025-03-30T01:00:00.229Z\",\n\t// \"TransactionStatusCode\": \"RJ\",\n\t\"isUTC\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/EFT/SearchEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Individual EFT Transaction seaches for the specified transaction for the Customer.</p>\n<p>For transactions with a TransactionStatusId of 14004 (Returned) or TransactionStatusId of 14006 (Rejected) the related CPA code will be returned as a value within the <em>StoredTransactionType</em> key in the response body.</p>\n<p><b>Note:</b> A limit of 33 days is present within search results. If no min and max transaction date is provided, the most recenet 33 days will be queried. It is recommended that a MinTransactionDate and MaxTransactionDate are always provided.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td></td>\n<td>The ID of the Transaction.  <br />This value is returned when creating the EFT via the <strong>Create Eft Transaction</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type code of the EFT:  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the unique customer account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the Type of transaction:  <br /><code>C</code> - Credit  <br /><code>D</code> - DebiT</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>The current transaction status:  <br /><code>P</code> Pending,  <br /><code>S</code> Sent,  <br /><code>IC</code> Incoming,  <br /><code>E</code> Error,  <br /><code>Y</code> Settled,  <br /><code>R</code> Return,  <br /><code>RS</code> Resend,  <br /><code>RJ</code> Rejected,  <br /><code>C</code> Completed,  <br /><code>V</code> Cancelled,  <br /><code>U</code> Unapproved,  <br /><code>T</code> Traced,  <br /><code>RD</code> Ready To Send,  <br /><code>DF</code> Deferred,  <br /><code>BL</code> Blocked by Limit Control,  <br /><code>IB</code> Insfficient Balance.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinAmount</td>\n<td><em>Integer</em></td>\n<td></td>\n<td>Indicates the minimum amount of money that has been sent/deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxAmount</td>\n<td><em>Integer</em></td>\n<td>10</td>\n<td>Indicates the maximum amount of money that has been sent/deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinTransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Represents the earliest transaction date and time to include in the query, assumed to be provided in Eastern Standard Time (EST). The API converts this value to Coordinated Universal Time (UTC) by adding 5 hours (during Eastern Standard Time) or 6 hours (during Eastern Daylight Time, when Daylight Saving Time is in effect). Ensure the input aligns with your intended date range, accounting for this offset.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxTransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Represents the latest transaction date and time to include in the query, assumed to be provided in Eastern Standard Time (EST). The API converts this value to Coordinated Universal Time (UTC) by adding 5 hours (during Eastern Standard Time) or 6 hours (during Eastern Daylight Time, when Daylight Saving Time is in effect). Ensure the input aligns with your intended date range, accounting for this offset.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Client Account Number which the funds flow.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Internal system reference number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients customer number.</td>\n</tr>\n<tr>\n<td>DcbCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The DCBank customer number.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The identifier of the transaction.</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the customer account.</td>\n</tr>\n<tr>\n<td>CustomerAccountName</td>\n<td><em>String</em></td>\n<td>The customers account name.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The type ID of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>EftTypeId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the EFT type.</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>The type code of the EFT.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","EFT","SearchEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"43df9cf1-4599-42af-ad17-2e2c1ea2a971","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/SearchEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerNumber\": \"10010123456\",\n            \"DcbCustomerNumber\": \"10010123456\",\n            \"TransactionId\": 12345,\n            \"CustomerAccountId\": 12345,\n            \"CustomerAccountName\": \"Client Name\",\n            \"Description\": \"\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"TransactionTypeDescription\": \"Credit\",\n            \"Amount\": 5000.00,\n            \"EftTypeId\": 16365,\n            \"EftTypeCode\": \"R\",\n            \"EftTypeDescription\": \"Regular\",\n            \"TransactionDate\": \"2021-09-15T06:00:00\",\n            \"TransactionStatusDescription\": \"Returned\",\n            \"TransactionStatusCode\": \"R\",\n            \"TransactionStatusId\": 14004,\n            \"TransactionReferenceNumber\": \"100000000012345678\",\n            \"StoredTransactionType\": 909,\n            \"ReturnDate\": \"2021-09-20T22:47:54.913\",\n            \"OriginatorShortName\": \"Name\",\n            \"OriginatorLongName\": \"Name\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4917781c-f08f-4e73-8ffa-9f9be7ccca2a"}],"id":"13e79a5f-3456-49da-959a-fdc0c26cab1f","event":[{"listen":"prerequest","script":{"id":"dfac39b8-c01c-4c92-bf42-15e6eaa18092","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cb73f16c-6e32-49c4-a5ea-3334f3102108","type":"text/javascript","exec":[""]}}],"_postman_id":"13e79a5f-3456-49da-959a-fdc0c26cab1f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Recurring EFT Payment ","item":[{"name":"Cancel Recurring EFT Transaction","id":"8f139b1e-8574-4097-bdbe-29a091fef678","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"Id\": 12345\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/CancelEftRecurringTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Recurring EFT Transaction API allows the Client to cancel a recurring payment for a Customer. <em>Note</em> It will only Cancel the Recurring Transaction not the paid period</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the unique ID for Recurring EFT transactions.  <br />This can be retrieved using the <strong>Search Eft Recurring Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CancelEFTRecurringTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFTRecurring","CancelEftRecurringTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6b260f63-4963-4b53-9f5b-be95c74222e1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customerNumber\": \"10180000014\",\n    \"id\": 10035\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/CancelEftRecurringTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"ErrorCode\": \"0\",\n\t\"ErrorDescription\": \"Successfull\",\n\t\"StackTrace\": null,\n\t\"Item\": null,\n\t\"IsSucceeded\": true,\n\t\"ErrorList\": [],\n\t\"ParameterList\": []\n}"}],"_postman_id":"8f139b1e-8574-4097-bdbe-29a091fef678"},{"name":"Create Recurring EFT Transaction","id":"896ec81b-6ca1-4d33-bb16-6511696c6d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"\",\n    \"CustomerNumber\": \"\",\n    \"CustomerAccountId\": 12345,\n    \"TransactionTypeCode\": \"\",\n    \"TransactionCodeId\": 12345,\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"Amount\": 0.0,\n    \"Description\": \"\",\n    \"EFTFirstDueDateOptionCode\": \"\",\n    \"DayOfWeek\": \"\",\n    \"DayOfMonth\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/CreateEftRecurringTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Recurring EFT Transaction API creates a schedule for the recurring EFT transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates type of priority.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the ID for the customer account.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API with <strong>Customer Number.</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type code of transaction.  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the transaction code ID for EFT recurring.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is going to sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EFTFirstDueDateOptionCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><code>W</code> Weekly  <br /><code>BW</code> Bi-Weekly  <br /><code>M</code> Monthly  <br /><code>ME</code> Month-End  <br /><code>Q</code> Quarterly  <br /><code>QE</code> QuarterlyEnd <code>SM</code> SemiMonthly</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DayOfWeek</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><strong>Required</strong> only for <strong>Bi-Weekly</strong> and <strong>Weekly.</strong>  <br /><code>0</code> Sunday,  <br /><code>1</code> Monday,  <br /><code>2</code> Tuesday,  <br /><code>3</code> Wednesday, <code>4</code> Thursday,  <br /><code>5</code> Friday and  <br /><code>6</code> Saturday.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DayOfMonth</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><strong>Required</strong> only for <strong>Monthly</strong> and <strong>Quarterly.</strong> Any days of the month.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEftRecurringTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFTRecurring","CreateEftRecurringTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7b1b0d92-fa1f-43f0-83f8-655da64788cc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"","description":"(Required) "},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"P\",\n    \"CustomerNumber\": \"10180000014\",\n    \"CustomerAccountId\": 20064,\n    \"TransactionTypeCode\": \"C\",\n    \"TransactionCodeId\": 23045,\n    \"StartDate\": \"2020-02-21T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-04-28T00:00:00.0000000+00:00\",\n    \"Amount\": 1.67,\n    \"Description\": \"Test\",\n    \"EftFirstDueDateOptionCode\": \"BW\",\n    \"DayOfWeek\": \"5\",\n    \"DayOfMonth\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/CreateEftRecurringTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"Item\": 10035,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"896ec81b-6ca1-4d33-bb16-6511696c6d46"},{"name":"Freeze Eft Recurring Transaction","id":"b70982d7-56c5-421c-9a48-9d1b56809a27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 0,\n    \"FreezeFromDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"FreezeToDate\": \"2020-01-01T00:00:00.0000000-00:00\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EftRecurring/FreezeEftRecurringTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Freeze EFT Recurring Transaction allows the Client to Freeze a transaction that is about to occur.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>Indicates the transaction ID for recurring Eft transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeFromDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the freeze start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeToDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the freeze end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FreezeEftRecurringTransactionE7</td>\n<td>Recurring Transaction Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EftRecurring","FreezeEftRecurringTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1fc350b4-af16-41f9-9c49-fe88fe5d518c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 0,\n    \"FreezeFromDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"FreezeToDate\": \"2020-01-01T00:00:00.0000000-00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EftRecurring/FreezeEftRecurringTransaction"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b70982d7-56c5-421c-9a48-9d1b56809a27"},{"name":"Search Recurring EFT  Transaction","id":"5b12d2a9-d662-41e2-b32e-3855fd6a608a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"PriorityTypeCode\": \"\",\n    \"TransactionTypeCode\": \"\",\n    \"CustomerName\": \"\",\n    \"CustomerNumber\": \"\",\n    \"TransactionAmount\": 0.0,\n    \"FirstDueDateOptionCode\": \"\",\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"FreezeFromDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"FreezeToDate\": \"2020-01-01T00:00:00.0000000-00:00\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EftRecurring/SearchEftRecurringTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Recurring EFT Transaction allows the Client to perform a search on the EFT Transactions for a Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type of priority.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type code of the transaction.  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the customers full name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FirstDueDateOptionCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><code>W</code> Weekly,  <br /><strong><code>BW</code></strong> Bi-Weekly,  <br /><code>M</code> Monthly,  <br /><code>ME</code> MonthEnd,  <br /><code>Q</code> Quarterly,  <br /><code>QE</code>QuarterlyEnd, **<code>SM</code>**SemiMonthly.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Integer</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is going to sent/deposited per period.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates the start date for the recurring transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates the end date for the recurring transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FreezeFromDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates the freeze start date for the recurring transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FreezeToDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates the freeze end date for the recurring transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique eft identifier.</td>\n</tr>\n<tr>\n<td>EftType</td>\n<td><em>String</em></td>\n<td>The type of EFT. <code>Priority</code> or <code>Regular</code>.</td>\n</tr>\n<tr>\n<td>EftTransactionType</td>\n<td><em>String</em></td>\n<td>The EFT transaction type.</td>\n</tr>\n<tr>\n<td>TransactionOrderStatus</td>\n<td><em>String</em></td>\n<td>The status of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The transaction type. <code>Credit</code> or <code>Debit</code>.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customers name.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customer number.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>FirstDueDateOption</td>\n<td><em>String</em></td>\n<td>The frequency at which the transaction is sent/recieved.</td>\n</tr>\n<tr>\n<td>StartingFromDate</td>\n<td><em>DateTime</em></td>\n<td>When the recurring transaction starts.</td>\n</tr>\n<tr>\n<td>EndOfDate</td>\n<td><em>DateTime</em></td>\n<td>When the recurring transaction stops.</td>\n</tr>\n<tr>\n<td>FreezeFromDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the recurring transaction, this is the start date of the freeze.</td>\n</tr>\n<tr>\n<td>FreezeToDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the recurring transaction, this is the end date of the freeze.</td>\n</tr>\n<tr>\n<td>TransactionCode</td>\n<td><em>String</em></td>\n<td>The transaction code.</td>\n</tr>\n<tr>\n<td>NumberOfPayments</td>\n<td><em>Numeric</em></td>\n<td>How many times the recurring transaction has happened.</td>\n</tr>\n<tr>\n<td>CompletedPayments</td>\n<td><em>Numeric</em></td>\n<td>The number of times the recurring transaction has been fully completed.</td>\n</tr>\n<tr>\n<td>RemainingPayments</td>\n<td><em>Numeric</em></td>\n<td>Any remaining payments left to be made.</td>\n</tr>\n<tr>\n<td>LastPaymentStatus</td>\n<td><em>String</em></td>\n<td>The status as of the most recent payment.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>String</em></td>\n<td>The financial institution.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>String</em></td>\n<td>The branch of the financial institution.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees relating to the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EftRecurring","SearchEftRecurringTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a89fda12-3fb6-45f8-bd12-cd261b09a7a1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EftRecurring/SearchEftRecurringTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10015,\n            \"EftType\": \"Priority\",\n            \"EftTransactionType\": \"School Taxes\",\n            \"TransactionOrderStatus\": \"Cancelled\",\n            \"TransactionType\": \"Credit\",\n            \"CustomerName\": \"Corporate Test\",\n            \"CustomerNumber\": \"12345571\",\n            \"TransactionAmount\": 1.67,\n            \"FirstDueDateOption\": \"Monthly\",\n            \"StartingFromDate\": \"2020-03-23T00:00:00\",\n            \"EndOfDate\": \"2020-08-28T00:00:00\",\n            \"FreezeFromDate\": \"2020-04-27T00:00:00\",\n            \"FreezeToDate\": \"2020-06-04T00:00:00\",\n            \"TransactionCode\": \"School Taxes\",\n            \"NumberOfPayments\": 3,\n            \"CompletedPayments\": 0,\n            \"RemainingPayments\": 3,\n            \"LastPaymentStatus\": null,\n            \"AccountNumber\": \"36373578\",\n            \"FinancialInstitution\": \"THE BANK OF NOVA SCOTIA\",\n            \"FinancialInstitutionBranch\": \"SHEPPARD & MIDLAND\",\n            \"FeeAmount\": 0\n        },\n        {\n            \"Id\": 10016,\n            \"EftType\": \"Regular\",\n            \"EftTransactionType\": \"Payroll Deposit\",\n            \"TransactionOrderStatus\": \"Pending\",\n            \"TransactionType\": \"Credit\",\n            \"CustomerName\": \"Corporate Test\",\n            \"CustomerNumber\": \"12345571\",\n            \"TransactionAmount\": 1.5,\n            \"FirstDueDateOption\": \"Monthly (Month-End)\",\n            \"StartingFromDate\": \"2020-04-01T00:00:00\",\n            \"EndOfDate\": \"2020-11-30T00:00:00\",\n            \"FreezeFromDate\": null,\n            \"FreezeToDate\": null,\n            \"TransactionCode\": \"Payroll Deposit\",\n            \"NumberOfPayments\": 8,\n            \"CompletedPayments\": 0,\n            \"RemainingPayments\": 8,\n            \"LastPaymentStatus\": null,\n            \"AccountNumber\": \"346465789\",\n            \"FinancialInstitution\": \"B2B Bank\",\n            \"FinancialInstitutionBranch\": \"CASH MANAGEMENT\",\n            \"FeeAmount\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5b12d2a9-d662-41e2-b32e-3855fd6a608a"},{"name":"Update Recurring  EFT Transaction","id":"bfc57f51-d78b-43a4-9479-b47e597b8a6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Id\": 12345,\n\t\"FreezeStartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\"FreezeEndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EftTypeCode\": \"\",\n    \"CustomerNumber\": \"\",\n    \"CustomerAccountId\": 12345,\n    \"TransactionTypeCode\": \"\",\n    \"TransactionCodeId\": 12345,\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"Amount\": 0.0,\n    \"Description\": \"\",\n    \"EFTFirstDueDateOptionCode\": \"\",\n    \"DayOfWeek\": \"\",\n    \"DayOfMonth\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/UpdateEftRecurringTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Recurring EFT Transaction allows the Client to update the Customer's information for the recurring transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the unique ID for the Recurring EFT transaction.  <br />This can be retrieved using the <strong>Search Eft Recurring Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeStartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the freeze start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeEndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the freeze end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates type of priority.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the ID for the customer account.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API using the <strong>Customer Number.</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type code of transaction:  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the transaction code ID for the recurring EFT.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is going to sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EFTFirstDueDateOptionCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><code>W</code> Weekly,  <br /><code>BW</code> Bi-Weekly,  <br /><code>M</code> Monthly,  <br /><code>ME</code> MonthEnd, <code>Q</code> Quarterly,  <br /><code>QE</code>QuarterlyEnd, <code>SM</code>SemiMonthly.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DayOfWeek</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td><strong>Required</strong> only for <strong>Bi-Weekly</strong> and <strong>Weekly.</strong>  <br /><code>0</code> Sunday,  <br /><code>1</code> Monday,  <br /><code>2</code> Tuesday,  <br /><code>3</code> Wednesday,  <br /><code>4</code> Thursday,  <br /><code>5</code> Friday,  <br /><code>6</code> Saturday.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DayOfMonth</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><strong>Required</strong> only for <strong>Monthly</strong> and <strong>Quarterly.</strong> Any days of the month.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateEftRecurringTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","EFTRecurring","UpdateEftRecurringTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"361449e4-1e04-4615-8274-0333e287ee6e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Id\": 10016,\n\t\"FreezeStartDate\": \"2022-01-01T00:00:00.0000000-00:00\",\n\t\"FreezeEndDate\": \"2022-01-01T00:00:00.0000000-00:00\",\n    \"EftTypeCode\": \"P\",\n    \"CustomerNumber\": \"12345571\",\n    \"CustomerAccountId\": 20044,\n    \"TransactionTypeCode\": \"D\",\n    \"TransactionCodeId\": 23023,\n    \"StartDate\": \"2020-04-11T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2021-11-01T00:00:00.0000000-00:00\",\n    \"Amount\": 1.0,\n    \"Description\": \"Testing changes\",\n    \"EFTFirstDueDateOptionCode\": \"BW\",\n    \"DayOfWeek\": \"5\",\n    \"DayOfMonth\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/UpdateEftRecurringTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bfc57f51-d78b-43a4-9479-b47e597b8a6a"}],"id":"45c05e24-626d-4ba9-bc3c-23774544d0b1","event":[{"listen":"prerequest","script":{"id":"402d9605-9217-4460-b6e6-6b9aa233ef50","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3457b191-51b0-4674-9c18-429c52fbcf2e","type":"text/javascript","exec":[""]}}],"_postman_id":"45c05e24-626d-4ba9-bc3c-23774544d0b1","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"EFT Program Customer ","item":[{"name":"Add External EFT Account","id":"dcf2ad77-59aa-4ca9-bc9e-7cdcd253d86e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"13570000002\",\n    \"AccountName\": \"\",\n    \"FinancialInstitutionId\": 9,\n    \"FinancialInstitutionBranchId\": 19051,\n    \"AccountNumber\": \"6603722\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/CreateEftCustomerAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Add External EFT Account API creates an EFT account for the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates the account name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the unique financial institution ID.  <br />This can be retrieved using the <strong>Get Financial Institution</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Integer</em></td>\n<td>7</td>\n<td>Indicates the unique financial institution branch ID.  <br />This can be retrieved using the <strong>Get Financial Institution Branch</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Indicates the account number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEftCustomerAccountE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftCustomerAccountE3</td>\n<td>Account Already Exists.</td>\n</tr>\n<tr>\n<td>CreateEftCustomerAccountE4</td>\n<td>Financial institution Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEftCustomerAccountE5</td>\n<td>Financial Institution Branch Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEftCustomerAccountE6</td>\n<td>Account Number Cannot Be Empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","CreateEftCustomerAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"05044947-9ff7-481b-8fe5-bb5c6e341599","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\",\n    \"AccountName\": \"Test Account\",\n    \"FinancialInstitutionId\": 100,\n    \"FinancialInstitutionBranchId\": 8212,\n    \"AccountNumber\": \"345566543456\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/CreateEftCustomerAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 20047,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"dcf2ad77-59aa-4ca9-bc9e-7cdcd253d86e"},{"name":"Delete External EFT Account","id":"d738440e-39e3-43cd-9bb2-1a03a541a9c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"AccountId\": 12345\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/DeleteEftCustomerAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete External EFT Account API deletes/removes the EFT Customer Account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the unique EFT account ID.  <br />This can be retrieved using the <strong>Get EFT Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DeleteEftCustomerAccountE2</td>\n<td>Account Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","DeleteEftCustomerAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dfd661e1-ccb3-421b-a0db-e68b6aca1246","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\",\n    \"AccountId\": 20047\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/DeleteEftCustomerAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d738440e-39e3-43cd-9bb2-1a03a541a9c5"},{"name":"Get EFT Customer","id":"3935c933-1e75-4cbb-913f-9003d3f9dde8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Get EFT Customer API retrieves a list of Customer's who are eligible to do EFTs.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The unique customer identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The customers name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","GetEftCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8ad4a705-705e-4de7-9187-d54d9fe6f8ca","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 20215,\n            \"CustomerNumber\": \"0220000029\",\n            \"CustomerName\": \"Ricardo  Quaresma\"\n        },\n        {\n            \"CustomerId\": 20315,\n            \"CustomerNumber\": \"10220000048\",\n            \"CustomerName\": \"Annabelle Everest\"\n        },\n        {\n            \"CustomerId\": 20414,\n            \"CustomerNumber\": \"12345571\",\n            \"CustomerName\": \"Corporate Test\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3935c933-1e75-4cbb-913f-9003d3f9dde8"},{"name":"Get External EFT Account","id":"f9635471-c50a-4e4d-bfd4-2a3fde0143c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftCustomerAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get External EFT Account API is to retrieve the specific EFT Customer Account. <em>Note</em> To get the Customer Number please call <strong>Get EFT Customer</strong></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The identifier for the account.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The account name.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the financial institution (FI).</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Numeric</em></td>\n<td>The branch ID of the FI.</td>\n</tr>\n<tr>\n<td>BankNumber</td>\n<td><em>Numeric</em></td>\n<td>The bank number.</td>\n</tr>\n<tr>\n<td>BranchNumber</td>\n<td><em>Numeric</em></td>\n<td>The banks branch number.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","GetEftCustomerAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f50dff50-fa65-41e7-b4ae-42ed523993d1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"12345571\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftCustomerAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerNumber\": \"12345571\",\n            \"AccountId\": 20044,\n            \"AccountName\": \"ABCBank EFT Account\",\n            \"FinancialInstitutionId\": 82,\n            \"FinancialInstitutionBranchId\": 8779,\n            \"BankNumber\": 618,\n            \"BranchNumber\": 7211,\n            \"AccountNumber\": \"346465789\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f9635471-c50a-4e4d-bfd4-2a3fde0143c6"},{"name":"Update External EFT Account","id":"6b54eacb-796a-42b8-9902-bfbf281d1060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"AccountId\": 825720,\n    \"CustomerNumber\": \"13390000026\",\n    \"AccountName\": \"\",\n    \"FinancialInstitutionId\": 11\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t,\n    \"FinancialInstitutionBranchId\": 10079,\n    \"AccountNumber\": \"0053882\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/UpdateEftCustomerAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Update External EFT Account allows the Client to update the Customer's information pertaining to the EFT account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the unique EFT account ID.  <br />This can be retrieved using the <strong>Get EFT Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates the account name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the unique financial institution ID.  <br />This can be retrieved using the <strong>Get Financial Institution</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Integer</em></td>\n<td>7</td>\n<td>Indicates the unique financial institution branch ID.  <br />This can be retrieved using the <strong>Get Financial Institution Branch</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Indicates the account number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEftCustomerAccountE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>UpdateEftCustomerAccountE4</td>\n<td>Financial Institution Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateEftCustomerAccountE5</td>\n<td>Financial Institution Branch Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateEftCustomerAccountE6</td>\n<td>Account Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>UpdateEftCustomerAccountE7</td>\n<td>Account Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","UpdateEftCustomerAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b328a5c0-4ae2-447c-a588-fca85e37ab09","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"AccountId\": 20047,\n    \"CustomerNumber\": \"12345571\",\n    \"AccountName\": \"Test Account Name\",\n    \"FinancialInstitutionId\": 82,\n    \"FinancialInstitutionBranchId\": 8779,\n    \"AccountNumber\": \"7890123321\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/UpdateEftCustomerAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"6b54eacb-796a-42b8-9902-bfbf281d1060"}],"id":"74cb8f7d-7c06-42a5-84cd-ce716f7ce641","_postman_id":"74cb8f7d-7c06-42a5-84cd-ce716f7ce641","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Parameters ","item":[{"name":"Get EFT Transaction Code","id":"5f030dd0-f8b4-4520-9ae6-1fb96bbfecd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftTransactionCode","description":"<h3 id=\"description\">Description</h3>\n<p>The Get EFT Transaction Code API retrieves the transaction codes for a Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>Numeric</em></td>\n<td>The EFT transaction code.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>Indicates the transaction reason.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","GetEftTransactionCode"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b8c7ca32-bfa5-4529-9b27-d58ebef9af6f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetEftTransactionCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 23084,\n            \"Code\": \"460\",\n            \"Name\": \"Accounts Payable\"\n        },\n        {\n            \"Id\": 23027,\n            \"Code\": \"207\",\n            \"Name\": \"Adjustment Payroll\"\n        },\n        {\n            \"Id\": 23024,\n            \"Code\": \"204\",\n            \"Name\": \"Advance Payroll\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5f030dd0-f8b4-4520-9ae6-1fb96bbfecd9"}],"id":"c83732ef-eb38-4df6-9f48-e3e8e4daab3f","_postman_id":"c83732ef-eb38-4df6-9f48-e3e8e4daab3f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"2cc27699-11d0-423f-912e-bbe95d5e26f3","_postman_id":"2cc27699-11d0-423f-912e-bbe95d5e26f3","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"e-Transfer","item":[{"name":"Inbound e-Transfer","item":[{"name":"Get Money Send Transfer Details","id":"8a64bd7e-94eb-40c8-8048-fe7e5b1a7e23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"CAxxxxxx\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetIncomingTransfers","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>GetIncomingTransfers</em> endpoint is used for obtaining important information relating to an inbound money send transaction.</p>\n<p>This is the <em>first step</em> to accepting an inbound money send transaction (without the use of Interac's autodeposit feature -- when autodeposit is used, this process is not necessary).</p>\n<p>When an Interac reference number is entered as a value into the \"ReferenceNumber\" field, important information will be returned in the response body that will be required for subsequent steps of the transaction acceptance process. This includes the \"securityQuestion\" field -- to which you will need to know the answer, as well as the \"HashSalt\" field -- the value of which will be used directly in your request to the <em>AuthenticateTransfer</em> endpoint.</p>\n<p>Use of the <em>AuthenticateTransfer</em> endpoint is the <em>second step</em> to accepting an inbound money send transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The \"CA\" reference number provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of the client account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ETransferGetIncomingTransferE2</td>\n<td>Please Enter A Reference Number.</td>\n</tr>\n<tr>\n<td>InteracApprovalGetIncomingTransfersOpE03</td>\n<td>Interac Response Description : 305 - Transfer reference number does not exist</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetIncomingTransfers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e6081875-763c-4b63-aa9c-19ef833521a2","name":"320 E-Transfer Locked","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"CAHpHgBk\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetIncomingTransfers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Sep 2020 16:27:35 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"402","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=57008eb873c7365c6ef907311d1d26e719d2d304effbc14458cd2f45247bca14;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"InteracApprovalGetIncomingTransfersOpE03\",\n    \"ErrorDescription\": \"GetIncomingTransfers Error : Interac Response Description : 320 - Operation cannot be performed due to current transfer status\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"responseHeader\": {\n            \"responseCode\": 320\n        },\n        \"incomingTransfer\": null\n    },\n    \"IsSucceeded\": false,\n    \"ErrorList\": [],\n    \"ParameterList\": [\n        \"Interac Response Description : 320 - Operation cannot be performed due to current transfer status\"\n    ]\n}"},{"id":"b5c04b82-6d0a-4f3f-95a0-b6ae7a232d37","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"CA1MRAN38JtW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetIncomingTransfers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Successfull\",\r\n    \"StackTrace\": null,\r\n    \"Item\": {\r\n        \"responseHeader\": {\r\n            \"responseCode\": 0\r\n        },\r\n        \"incomingTransfer\": {\r\n            \"productCode\": 0,\r\n            \"transferType\": 0,\r\n            \"transferStatus\": 3,\r\n            \"participantId\": \"CA000352\",\r\n            \"currencyCode\": \"CAD\",\r\n            \"amount\": 11.00,\r\n            \"expiryDate\": \"2020-10-01T23:59:59Z\",\r\n            \"senderMemo\": \"Test e-Transfer Transaction\",\r\n            \"language\": \"en\",\r\n            \"senderRegistrationName\": \"eTransfer Demo\",\r\n            \"authenticationRequired\": 1,\r\n            \"authenticationType\": 1,\r\n            \"authenticationTypeSpecified\": true,\r\n            \"securityQuestion\": \"What is my favorite color?\",\r\n            \"hashType\": \"SHA2\",\r\n            \"hashSalt\": \"SLT\",\r\n            \"senderSupplementaryInfo\": null,\r\n            \"transferReferenceNumber\": \"CArFBncq\"\r\n        }\r\n    },\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}"}],"_postman_id":"8a64bd7e-94eb-40c8-8048-fe7e5b1a7e23"},{"name":"Authenticate Money Send Transfer","id":"71350544-6e98-4729-826e-b2d77200d292","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"referenceNumber\": \"CAxxxxxx\",\r\n  \"securityAnswer\": \"red\",\r\n  \"hashSalt\": \"DCB\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/AuthenticateTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>AuthenticateTransfer</em> endpoint is used to authenticate an inbound money send transaction.</p>\n<p>This is the <em>second step</em> to accepting an inbound money send transaction (without the use of Interac's autodeposit feature--when autodeposit is used, this process is not necessary).</p>\n<p>To authenticate the transaction, enter in the same Interac reference number used within the <em>GetIncomingTransfers</em> endpoint, the \"HashSalt\" value that was returned in the <em>GetIncomingTransfers</em> endpoint response , and the answer to \"securityQuestion\" that was returned in the <em>GetIncomingTransfers</em> response.</p>\n<p>No additional data is returned by this endpoint, apart from a response message. If a successful response is recieved, the next step in accepting the inbound money send transaction can be taken.</p>\n<p>The third and final step to accepting an inbound money send transaction is through use of the <em>CompleteTransfer</em> endpoint.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The \"CA\" reference number, provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityAnswer</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The answer to the security question.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>HashSalt</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Supplied by the <strong>Get Incoming Transfers</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InteracApprovalAuthenticateTransferOpE03</td>\n<td>AuthenticateTransfer Error : Interac Response Description : 305 - Transfer reference number does not exist.</td>\n</tr>\n<tr>\n<td>InteracApprovalAuthenticateTransferOpE04</td>\n<td>Security Answer cannot be null.</td>\n</tr>\n<tr>\n<td>InteracApprovalAuthenticateTransferOpE05</td>\n<td>Hash Salt cannot be null.</td>\n</tr>\n<tr>\n<td>InteracInvalidReferenceNumber</td>\n<td>Invalid Reference Number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","AuthenticateTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dd95f364-be13-41a1-92d6-95065c45bd16","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ReferenceNumber\": \"CA123412Xy\",\n    \"SecurityAnswer\": \"Red\",\n    \"HashSalt\": \"DCB\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/AuthenticateTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"responseHeader\": {\n            \"responseCode\": 0\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"71350544-6e98-4729-826e-b2d77200d292"},{"name":"Complete Money Send Transfer","id":"2acbf06d-ab9f-492c-92cc-082f7b413cd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"AccountId\": 99999,\r\n  \"ReferenceNumber\": \"CAxxxxxx\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CompleteTransfer</em> endpoint is used for completing an inbound money send transaction and depositing funds into your desired account.</p>\n<p>This is the <em>third and final</em> step needed for accepting an inbound money send transaction.</p>\n<p>In order to complete the transaction, enter in your desired account ID with the \"AccountID\" field along with the related inbound money send reference number within the \"ReferenceNumber\" field.</p>\n<p>Account information including \"AccountId\" can be obtained from the <em>GetClientAccountsForMoneyDeposit</em> endpoint.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>The account to deposit the money to. This<code>AccountId</code> can be obtained by using the <strong>Get Client Accounts For Money Deposit</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The \"CA\" reference number, provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompleteTransferOpGetTransferE001</td>\n<td>Get Transfer Error : Invalid Reference Number.</td>\n</tr>\n<tr>\n<td>CompleteTransferOpGetTransferE001</td>\n<td>Get Transfer Error : GetIncomingTransfers Error : Interac Response Description : 305 - Transfer reference number does not exist</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CompleteTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f1e1c138-aefd-4079-9b8e-592c930df7e3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"AccountId\": 12345,\n    \"ReferenceNumber\": \"CA12345Xy\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"responseHeader\": {\n            \"responseCode\": 0\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"2acbf06d-ab9f-492c-92cc-082f7b413cd7"},{"name":"Decline Money Send Transfer","id":"ab680c41-2944-4347-bcb7-3c1dba573a1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"CAxxxxxx\",\r\n  \"DeclineReason\": \"Reason for declining\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DeclineTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>DeclineTransfer</em> endpoint is used for declining an incoming money send transaction.</p>\n<p>Once an incoming money send transaction has been authenticated using the <em>AuthenticateTransfer</em> endpoint, it can then be declined.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The \"CA\" reference number, provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DeclineReason</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The reason you are declining the transfer.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ETransferDeclineTransferE2</td>\n<td>Please Enter ReferenceNumber.</td>\n</tr>\n<tr>\n<td>InteracApprovalDeclineTransferOpE03</td>\n<td>DeclineTransfer Error Detail : Interac Response Description : 305 - Transfer reference number does not exist.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","DeclineTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5c1d6c16-03b2-43ad-8e0a-5f6bd6d924fd","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ReferenceNumber\": \"CA123345Xy\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DeclineTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"responseHeader\": {\n            \"responseCode\": 0\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"ab680c41-2944-4347-bcb7-3c1dba573a1a"},{"name":"Get Money Request Transfer Details","id":"35f2ec0a-cca1-4e79-83e5-0aabde3b4e1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ReferenceNumber\": \"CA1MRxxxxxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetIncomingMoneyRequests","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>GetIncomingMoneyRequests</em> endpoint is used for obtaining information relating to an inbound money request transaction.</p>\n<p>When an Interac reference number is entered as value into the \"ReferenceNumber\" field, information will be returned in the response body including transaction amount, reference numbers, currency type, and more.</p>\n<p>Unlike the acceptance of incoming money send transactions, there is no multi-step process required for accepting a money request. If you wish to accept an inbound money request transaction use the <em>CompleteIncomingMoneyRequests</em> endpoint.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The \"CA\" reference number, provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ETransferGetIncomingMoneyRequestE1</td>\n<td>Please Enter ReferenceNumber.</td>\n</tr>\n<tr>\n<td>InteracApprovalGetIncomingRequestOpE03</td>\n<td>GetIncomingMoneyRequestOp Error : Interac Response Description : 511 - Money Request Reference Number does not exist.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetIncomingMoneyRequests"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e6b9e57d-e535-4e7b-84ba-9e1cdc8c143c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ReferenceNumber\": \"CA1MRAN38JtW\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetIncomingMoneyRequests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Successfull\",\r\n    \"StackTrace\": null,\r\n    \"Item\": {\r\n        \"responseHeader\": {\r\n            \"responseCode\": 0\r\n        },\r\n        \"incomingRequest\": {\r\n            \"customerType\": 2,\r\n            \"customerName\": {\r\n                \"registrationName\": \"eTransfer Demo\",\r\n                \"legalName\": {\r\n                    \"retailName\": null,\r\n                    \"businessName\": {\r\n                        \"companyName\": \"eTransfer Demo\",\r\n                        \"tradeName\": null\r\n                    }\r\n                }\r\n            },\r\n            \"requesterNotification\": [\r\n                {\r\n                    \"notificationHandleType\": 0,\r\n                    \"notificationHandle\": \"my@email.com\"\r\n                }\r\n            ],\r\n            \"currencyCode\": \"CAD\",\r\n            \"moneyRequestAmount\": 10.00,\r\n            \"editableFulfillAmount\": 0,\r\n            \"minFulfillAmountSpecified\": false,\r\n            \"maxFulfillAmountSpecified\": false,\r\n            \"moneyRequestStatus\": 2,\r\n            \"moneyRequestExpiryDate\": \"2020-10-08T23:59:59.999Z\",\r\n            \"senderMemo\": \"Test e-Transfer Transaction\",\r\n            \"invoiceDetails\": null,\r\n            \"moneyRequestType\": 0,\r\n            \"originatingChannelIndicator\": 0,\r\n            \"returnURL\": null,\r\n            \"participantId\": \"CA000352\",\r\n            \"fraudCheckResult\": {\r\n                \"scoreSpecified\": false,\r\n                \"reason\": null,\r\n                \"action\": \"ALLOW_TRANSFER\"\r\n            },\r\n            \"requestReferenceNumber\": \"CA1MR54ze7gQ\"\r\n        }\r\n    },\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}"}],"_postman_id":"35f2ec0a-cca1-4e79-83e5-0aabde3b4e1f"},{"name":"Complete Money Request Transfer","id":"d44d7394-7421-43f2-95b0-14e978b1a77a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"CA1MRxxxxxxx\",\r\n  \"AccountId\":999\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteIncomingMoneyRequests","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CompleteIncomingMoneyRequests</em> endpoint is used for completing an inbound money request transaction and sending funds from your desired account.</p>\n<p>In order to complete the transaction, enter in your desired account ID with the \"AccountID\" field along with the related inbound money request reference number within the \"ReferenceNumber\" field.</p>\n<p>Account information including \"AccountId\" can be obtained from the <em>GetClientAccountsForMoneyDeposit</em> endpoint.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>The account to withdrawl the money from.  <br />The <code>Account ID</code> can be obtained by using the <strong>Get Client Accounts For Money Deposit</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The \"CA\" reference number, provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of the client account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsSucceeded</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether or not the action was successful.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The transactions unique ID.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Numeric</em></td>\n<td>The payee ID.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Numeric</em></td>\n<td>The transaction detail table ID.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>Any error descriptions.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>Numeric</em></td>\n<td>The validation code of the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ETransferCompleteMoneyRequest</td>\n<td>Please Enter ReferenceNumber!</td>\n</tr>\n<tr>\n<td>CompleteTransferOpGetTransferE003</td>\n<td>Account cannot found.</td>\n</tr>\n<tr>\n<td>CompleteTransferOpGetTransferE004</td>\n<td>Account ID cannot be null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CompleteIncomingMoneyRequests"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"22de42c7-4831-4501-8f0f-1cbdbcb9e382","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"AccountId\": 12345,\n    \"ReferenceNumber\": \"CA12345Xy\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteIncomingMoneyRequests"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"IsSucceeded\": true,\n        \"TransactionId\": 334802,\n        \"TransactionReferenceNumber\": 100000000125550660,\n        \"PayeeId\": 0,\n        \"TransactionDetailTableId\": 0,\n        \"ErrorDescription\": \"Success\",\n        \"ValidationCode\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d44d7394-7421-43f2-95b0-14e978b1a77a"},{"name":"Decline Money Request Transfer","id":"5c5a2588-ff80-426c-8b92-b7564e02921e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"CA1MR8gsknDF\",\r\n  \"DeclineReason\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DeclineIncomingMoneyRequests","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>DeclineIncomingMoneyRequests</em> endpoint is used for declining an incoming money request transaction.</p>\n<p>Unlike the <em>DeclineTransfer</em> endpoint, there is no necessary step of first authenticating the transaction before it can be declined. Instead, simply enter in the related incoming money request reference number within the \"ReferenceNumber\" field, and an optional decline reason.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>The \"CA\" reference number, provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td></td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DeclineReason</td>\n<td><em>String</em></td>\n<td></td>\n<td>The reason you are declining the transfer.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InteracInvalidReferenceNumber</td>\n<td>Invalid Reference Number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","DeclineIncomingMoneyRequests"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0b6369fb-6bcf-4d15-b8d4-8a9a9202cdde","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ReferenceNumber\": \"CA12345Xy\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DeclineIncomingMoneyRequests"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"responseHeader\": {\n            \"responseCode\": 0\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5c5a2588-ff80-426c-8b92-b7564e02921e"},{"name":"Get Client Accounts For Money Deposit/Withdrawal","id":"cd6e3b6c-55de-47c6-8219-82b76551e5f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAccountsForMoneyDeposit","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>GetClientAccountsForMoneyDeposit</em> endpoint is used to obtain a list of your accounts that are eligible for money deposit / withdrawal.</p>\n<p>Use the related account information provided in the response body (in particular the accountID field) for requests made to the <em>CompleteTransfer</em> and <em>CompleteIncomingMoneyRequests</em> endpoints.</p>\n<p>Other useful information returned from this endpoint includes the name of the account, the related account number, as well as account balances.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique account identifier.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>AccountFullNumber</td>\n<td><em>Numeric</em></td>\n<td>The full account number, including the bank/branch number.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The full name of the account owner.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the account.</td>\n</tr>\n<tr>\n<td>PendingBalance</td>\n<td><em>Decimal</em></td>\n<td>Any funds pending clearance to/from the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetClientAccountsForMoneyDeposit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"562897a5-dd86-4708-b469-02afacab755e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAccountsForMoneyDeposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 May 2020 16:39:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"488","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=6aae3c46ab4490f2466cb63e02261c60e0b21a26afc6f4b69eac92022861865b;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 21028,\n            \"AccountNumber\": 298144957,\n            \"AccountFullNumber\": \"35210009298144957\",\n            \"AccountName\": \"EFT Funding\",\n            \"AccountOwnerName\": \"EFT Funding\",\n            \"Balance\": 999752,\n            \"PendingBalance\": 0\n        },\n        {\n            \"Id\": 21029,\n            \"AccountNumber\": 388852576,\n            \"AccountFullNumber\": \"35210009388852576\",\n            \"AccountName\": \"e-Transfer Funding\",\n            \"AccountOwnerName\": \"e-Transfer Funding\",\n            \"Balance\": 977588.84,\n            \"PendingBalance\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"56e8c6e3-5601-4da0-9f94-982cb558d02b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAccountsForMoneyDeposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 May 2020 16:39:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"488","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=6aae3c46ab4490f2466cb63e02261c60e0b21a26afc6f4b69eac92022861865b;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 21028,\n            \"AccountNumber\": 298144957,\n            \"AccountFullNumber\": \"35210009298144957\",\n            \"AccountName\": \"EFT Funding\",\n            \"AccountOwnerName\": \"EFT Funding\",\n            \"Balance\": 999752,\n            \"PendingBalance\": 0\n        },\n        {\n            \"Id\": 21029,\n            \"AccountNumber\": 388852576,\n            \"AccountFullNumber\": \"35210009388852576\",\n            \"AccountName\": \"e-Transfer Funding\",\n            \"AccountOwnerName\": \"e-Transfer Funding\",\n            \"Balance\": 977588.84,\n            \"PendingBalance\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"978f7a2e-3f83-450f-96f4-7152e9ab2fee","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAccountsForMoneyDeposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 May 2020 16:39:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"488","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=6aae3c46ab4490f2466cb63e02261c60e0b21a26afc6f4b69eac92022861865b;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 21028,\n            \"AccountNumber\": 298144957,\n            \"AccountFullNumber\": \"35210009298144957\",\n            \"AccountName\": \"EFT Funding\",\n            \"AccountOwnerName\": \"EFT Funding\",\n            \"Balance\": 999752,\n            \"PendingBalance\": 0\n        },\n        {\n            \"Id\": 21029,\n            \"AccountNumber\": 388852576,\n            \"AccountFullNumber\": \"35210009388852576\",\n            \"AccountName\": \"e-Transfer Funding\",\n            \"AccountOwnerName\": \"e-Transfer Funding\",\n            \"Balance\": 977588.84,\n            \"PendingBalance\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"5f58ca5b-0592-4a71-bdf3-b762d2a2376b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetClientAccountsForMoneyDeposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 May 2020 16:39:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"488","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=6aae3c46ab4490f2466cb63e02261c60e0b21a26afc6f4b69eac92022861865b;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 21028,\n            \"AccountNumber\": 298144957,\n            \"AccountFullNumber\": \"35210009298144957\",\n            \"AccountName\": \"EFT Funding\",\n            \"AccountOwnerName\": \"EFT Funding\",\n            \"Balance\": 999752,\n            \"PendingBalance\": 0\n        },\n        {\n            \"Id\": 21029,\n            \"AccountNumber\": 388852576,\n            \"AccountFullNumber\": \"35210009388852576\",\n            \"AccountName\": \"e-Transfer Funding\",\n            \"AccountOwnerName\": \"e-Transfer Funding\",\n            \"Balance\": 977588.84,\n            \"PendingBalance\": 0\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"cd6e3b6c-55de-47c6-8219-82b76551e5f7"},{"name":"Search Completed Incoming Transfers","id":"8b2ed461-15d4-46fd-b078-511aec2852a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"StartDate\": \"2024-02-26\",\r\n    \"EndDate\": \"2024-02-27\",\r\n    \"TransactionReferenceNumber\":100000000000000001\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/SearchIncomingTransfers","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>SearchIncomingTransfers</em> endpoint is used to search for inbound e-transfer transactions that have already been completed.</p>\n<p><b>Note:</b> Values for \"StartDate\" and \"EndDate\" are necessary for obtaining a response body with your completed transactions included. The value for the \"TransactionReferenceNumber\" is optional - however if inputted, must be the internal DC reference number formatted as 100000000000000001</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The start date to filter the search.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date to filter the search.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Show transactions with an amount greater than or equal to the supplied Amount.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Long</em></td>\n<td>15</td>\n<td>Client account number which the funds flow.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> Credit (Money Send),  <br /><code>D</code> Debit (Money Request).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>18</td>\n<td>The unique transaction reference number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The name of the sender of the funds.</td>\n</tr>\n<tr>\n<td>SenderBankName</td>\n<td><em>String</em></td>\n<td>The sending banks name.</td>\n</tr>\n<tr>\n<td>SenderBankTransitNumber</td>\n<td><em>String</em></td>\n<td>The sending banks transit unumber.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Integer</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Integer</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique reference number.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>Integer</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique transaction reference number.</td>\n</tr>\n<tr>\n<td>IsAutodeposit</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether there is auto-deposit set up or not.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>String</em></td>\n<td>The name of the financial institution.</td>\n</tr>\n<tr>\n<td>RemittanceUnstructured</td>\n<td><em>String</em></td>\n<td>Remittance information.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>The payment type.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payment-type\">Payment Type</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCOUNT_ALIAS_PAYMENT</td>\n<td>Auto-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_ALIAS_PAYMENT</td>\n<td>Real-Time Auto-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Account-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Real-Time Account-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>FULFILL_REQUEST_FOR_PAYMENT</td>\n<td>Updates The Request For Payment To Completed.</td>\n</tr>\n<tr>\n<td>REGULAR_PAYMENT</td>\n<td>Regular \"Send Money\" Etransfer (a.k.a. security question and answer e-Transfer).</td>\n</tr>\n<tr>\n<td>RTR_PAYMENT</td>\n<td>Future Feature.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","SearchIncomingTransfers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e87cf19-95c2-437c-bab7-7d64837560ae","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"StartDate\": \"2020-04-18\",\r\n    \"EndDate\": \"2020-05-19\",\r\n    \"Amount\": null,\r\n    \"AccountNumber\": 123456,\r\n    \"TransactionTypeCode\": \"\",\r\n    \"TransactionReferenceNumber\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/SearchIncomingTransfers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 May 2020 17:23:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"330","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=6aae3c46ab4490f2466cb63e02261c60e0b21a26afc6f4b69eac92022861865b;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"TransactionDate\": \"2020-05-19T16:02:39.19061\",\n            \"SenderName\": \"Client Demo\",\n            \"SenderBankName\": null,\n            \"SenderBankTransitNumber\": \"\",\n            \"TransactionType\": \"Money Request\",\n            \"Amount\": 44,\n            \"ReferenceNumber\": \"CA1MRAN38JtW\",\n            \"Description\": \"Test Description\",\n            \"TransactionReferenceNumber\": \"100000000000160123\",\n            \"IsAutodeposit\": false,\n            \"FinancialInstitution\": \"DIRECTCASH BANK\",\n            \"PaymentType\": \"REGULAR_PAYMENT\",\n            \"RemittanceUnstructured\": \"This is my memo\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8b2ed461-15d4-46fd-b078-511aec2852a8"},{"name":"Search Completed Incoming Transfers Paged","id":"09b611e1-11cb-4217-957c-c4592ee21446","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"PageKey\": \"2d2abea1-2b55-43ee-aebd-6d88ad0d102f\",\r\n   \"PageSize\": 100,\r\n   \"StartDateTime\": \"2020-01-01T13:00:00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/SearchIncomingTransfersPaged","description":"<h3 id=\"description\">Description</h3>\n<p>The Search Completed Incoming Transfers Paged API is an endpoint that will return every completed incoming e-transfer once per PageKey. If the StartDateTime field is omitted this endpoint will return every single completed incoming e-transfer for the client account that we have in our system; otherwise if it is supplied this endpoint will return only completed incoming e-transfers received after the supplied StartDateTime value.</p>\n<p>Each of the returned records is flagged with the supplied PageKey, this way each record will only be returned the once so long as you continue to use the same PageKey value with each endpoint call. This will allow you to only get the newly added e-transfer records in our system since the previous call. Eventually, you will be returned an empty result set returned which means there are currently no new records at that time, and that you are all caught up.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PageKey</td>\n<td><em>String</em></td>\n<td>1024</td>\n<td>A unique page key that is used to flag each transaction with, this can be any value such as a GUID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Integer</em></td>\n<td>1000</td>\n<td>The max number of records to return.  <br />Defaults to 100 record, max returned records is 1000.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDateTime</td>\n<td><em>DateTime</em></td>\n<td>UTC Time:  <br />  <br />yyyy-mm-dd  <br />Or  <br />yyyy-mm-ddThh:mm:ss</td>\n<td>Used to search transactions only after this start DateTime value are returned.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction took place.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The name of the sender.</td>\n</tr>\n<tr>\n<td>SenderBankName</td>\n<td><em>String</em></td>\n<td>The name of the sender bank.</td>\n</tr>\n<tr>\n<td>SenderBankTransitNumber</td>\n<td><em>String</em></td>\n<td>The sender banks transit number.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Integer</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique reference number.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>Integer</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique transaction reference number.</td>\n</tr>\n<tr>\n<td>IsAutodeposit</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether or not auto-deposit is set for the account.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>FinanialInstitution</td>\n<td><em>String</em></td>\n<td>The financial institution.</td>\n</tr>\n<tr>\n<td>RemittanceUnstructured</td>\n<td><em>String</em></td>\n<td>Any remittance information.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>The type of payment.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payment-type\">Payment Type</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCOUNT_ALIAS_PAYMENT</td>\n<td>Auto-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_ALIAS_PAYMENT</td>\n<td>Real-Time Auto-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Account-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Real-Time Account-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>FULFILL_REQUEST_FOR_PAYMENT</td>\n<td>Updates The Request For Payment To Completed.</td>\n</tr>\n<tr>\n<td>REGULAR_PAYMENT</td>\n<td>Regular \"Send Money\" Etransfer. (a.k.a. security question and answer Etransfer).</td>\n</tr>\n<tr>\n<td>RTR_PAYMENT</td>\n<td>Future Feature.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SearchIncomingETransferOpE02</td>\n<td>PageKey is required.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","SearchIncomingTransfersPaged"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"947780cd-001b-480c-baec-bbe5c87b52ca","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"PageKey\": \"2d2abea1-2b55-43ee-aebd-6d88ad0d102f\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/SearchIncomingTransfersPaged"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 May 2020 17:23:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"330","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=6aae3c46ab4490f2466cb63e02261c60e0b21a26afc6f4b69eac92022861865b;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"TransactionId\": 12345,\n            \"TransactionDate\": \"2020-05-19T16:02:39.19061\",\n            \"SenderName\": \"Client Demo\",\n            \"SenderBankName\": null,\n            \"SenderBankTransitNumber\": \"\",\n            \"TransactionType\": \"Money Request\",\n            \"Amount\": 44,\n            \"ReferenceNumber\": \"CA1MRAN38JtW\",\n            \"Description\": \"Test Description\",\n            \"TransactionReferenceNumber\": \"100000000000160123\",\n            \"IsAutodeposit\": false,\n            \"FinancialInstitution\": \"DIRECTCASH BANK\",\n            \"PaymentType\": \"REGULAR_PAYMENT\",\n            \"RemittanceUnstructured\": \"This is my memo\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"09b611e1-11cb-4217-957c-c4592ee21446"}],"id":"91e0d782-6ee2-462e-b32b-cca84a2367c1","_postman_id":"91e0d782-6ee2-462e-b32b-cca84a2367c1","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Individual e-Transfer","item":[{"name":"Create Individual e-Transfer Transaction","event":[{"listen":"test","script":{"id":"a8e545d7-b4c0-4fe4-a2c3-4b39e6f51852","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"a0f15028-eda8-4ffb-9b51-fe7c96add5b1","exec":["var now = new Date();\r","var todayTimestamp = now.toISOString(); \r","pm.environment.set(\"today\", todayTimestamp);\r","\r","// Add one day to the current date\r","var tomorrow = new Date();\r","tomorrow.setDate(now.getDate() + 1);\r","var tomorrowTimestamp = tomorrow.toISOString(); \r","pm.environment.set(\"tomorrow\", tomorrowTimestamp);"],"type":"text/javascript","packages":{}}}],"id":"e4c89995-c4d4-404e-aaf7-107b5dc5c4c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Today","value":"{{today}}","type":"text"},{"key":"Tomorrow","value":"{{tomorrow}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10026666666\",\n    \"TransactionTypeCode\": \"C\", //Money Send\n    \"Description\": \"This is my description!\",\n    \"Amount\": 0.01,\n    \"PriorityTypeCode\": \"0\", //Real-time transaction\n    \"DateOfFunds\": \"{{today}}\",\n    \"MoneyReqExpDate\": \"{{tomorrow}}\",\n    \"SecurityQuestion\": \"What is my faviorite colour?\",\n    \"SecurityQuestionAnswer\": \"Red\",\n    \"NotificationType\": 0, //Email Notification\n    \"EditableFulfillAmount\": false,\n    \"ClientReferenceNumber\": \"Your Reference Here\",\n    //\"TransferType\": \"AccountDeposit\"\n    //\"FinancialAccountId\":123456\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/ETransfer/CreateEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEtransferTransaction</em> endpoint is used for the creation of individual Interac e-transfer transactions.</p>\n<p><strong>Version 1.0</strong> -- The number returned within the \"Item\" field of the response body is representative of the \"TransactionId\" for the created transaction</p>\n<p><strong>Version 1.1</strong> -- The response body will return \"TransactionId\", \"TransactionReferenceNumber\", \"InteracReferenceNumber\" (when \"0\" value is entered in \"PriorityTypeCode\" field of request) and \"ClientReferenceNumber\".</p>\n<p>For use of this endpoint, you will need an existing customer that has been designated to the e-transfer program. Customers designated to the e-transfer program can be created by using the <em>CreateCustomer</em> endpoint or the <em>CreateEtransferTransactionWithCustomer</em> endpoint.</p>\n<p>Money can be sent (credited) or requested (debited) via this endpoint determinate upon on the value inputted in the \"TransactionTypeCode\" field (\"C\" or \"D\").</p>\n<p>Transactions can be sent using differing priority types (0, 1, and 2) which are set within the \"PriorityTypeCode\" field of our e-transfer APIs. The priority type you select will determine the technological stack which will be leveraged to send your transaction. Priority type code \"0\" transactions are sent real-time via connected architecture. This means that your request will be immediately processed and passed on to Interac's infrastructure, and a correlating Interac reference number will be returned to you within the response body. Priority type code \"1\" and \"2\" transactions represent \"Bulk Regular\" and \"Bulk Priority\" transactions respectively. Bulk transactions are not real-time transactions. Rather, they are sent intermittently throughout day. Bulk Priority transactions are sent in approximate one hour intervals throughout the day, and Bulk Regular transactions are sent between 8-pm and 10pm MST each day. As such, when sending bulk transactions, an Interac reference number will not be returned to you within the response body and can rather be queried via the <em>SearchEtransferTransaction</em> endpoint.</p>\n<p>An account number routing (ANR) transaction can be sent by inputting the value \"AccountDeposit\" in the \"TransferType\" field. Note: ANR transactions can only be sent as money send (credit) transactions -- not money request (debit).</p>\n<p>The method in which the recipient is alerted of / accepts the transaction is defined using the \"NotificationType\" field. If the default value 0 is entered, an Interac email alert will be sent to the customers already existing email address. If the value 1 is entered, an Interac SMS alert will be sent to the customer's existing phone number.</p>\n<p>The \"ClientReferenceNumber\" field and \"Description\" field are used for duplicate transaction detection. If you wish to send a transaction of the same amount to a customer with the same unique routing information in sequence, ensure that a new description and client reference numbers are provided in the request to avoid duplicate transaction errors.</p>\n<p><strong>Disclaimer:</strong><br />Please be advised, when using the Bulk Service with an Autodeposit Contact Identifier, it is possible the Recipient’s account holder or business trade name may not be shown.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The value retrieved from <strong>/ETransfer/GetEtransferCustomer</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type: <code>C</code> Credit Transaction (Money Send)<code>D</code> Debit Transaction (Money Request)</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>The unique id for contact. The value retrieved from <strong>/ETransfer/GetEtransferContact</strong></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority of the transaction.  <br />  <br />For Individual and Recurring transactions: <code>0</code> Real Time For the Bulk File transactions: <code>1</code> Bulk Regular<code>2</code> Bulk Priority</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />Or  <br />yyyy-mm-ddThh:mm:ss.FF FZ</td>\n<td>The transaction's expiry date. This date value is in UTC.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />Or  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The creation date of a transaction and it must be equal to or greater than the current date. This date value is in UTC. If no date is provided, the current date, in UTC, will be provided.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NotificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The notification type:  <br /><code>0</code> Email  <br /><code>1</code> SMS  <br />  <br />Default is <strong>Email</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />  <br /><strong>Required</strong> if <code>Transaction Type Code</code> is <code>C</code> and has no Direct Deposit Registration (DDR).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The answer for the <code>Security Question</code>.  <br />  <br />- No spaces.  <br />- Between 3 and 25 characters long.  <br />  <br /><strong>Required</strong> if a <code>Security Question</code>is supplied.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount of a <code>D</code> Money Request transaction.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the store code created in Client Setup.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by client. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication checking will occur.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransferType</td>\n<td><em>Enum</em> (<em>String</em>)</td>\n<td></td>\n<td>Can be set to two options:  <br />  <br /><code>Default:</code> Validation required on receiver side, such as Security Q/A and Autodeposit Registration.  <br />  <br /><code>Account Deposit:</code> ANR Etransfer. No validation required on receiver side.  <br />  <br /><strong>Note:</strong> Account Deposit transfer type works only for <strong>Credit</strong> transaction type.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeneficiaryId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>Account ID that contains beneficiary information, should the customer have more than one account.  <br />  <br /><strong>Note:</strong> Account Deposit transfer type works only for <strong>Credit</strong> transaction type.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialAccountID</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates the account's identifier that would be used as the source account for Send Money or the destination account for Request Money Etransfers.  <br />  <br />0 or null will default to the client's currently setup default account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>InteractReferenceNumber</td>\n<td><em>String</em></td>\n<td>The \"CA\" interac reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients unique reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerBenficiaryE1</td>\n<td>Customer has more than one accont. (Account Deposit Transfer Type Only).</td>\n</tr>\n<tr>\n<td>CreateETransferTransactionE7</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","ETransfer","CreateEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c2ec3f74-1d18-4ae9-8e28-fb100abfe820","name":"Create Individual e-Transfer Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10026666666\",\n    \"TransactionTypeCode\": \"C\", //Money Send\n    \"Description\": \"This is my description!\",\n    \"Amount\": 1.00,\n    \"PriorityTypeCode\": \"0\", //Real-time transaction\n    \"DateOfFunds\": \"2024-01-01\",\n    \"MoneyReqExpDate\": \"2024-01-02\",\n    \"SecurityQuestion\": \"What is my faviorite colour?\",\n    \"SecurityQuestionAnswer\": \"Red\",\n    \"NotificationType\": 0, //Email Notification\n    \"EditableFulfillAmount\": false,\n    \"ClientReferenceNumber\": \"Your Reference Here\"\n    //\"TransferType\": \"AccountDeposit\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/ETransfer/CreateEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Oct 2024 18:13:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 3947412,\n        \"TransactionReferenceNumber\": 100000000008064572,\n        \"InteracReferenceNumber\": \"CAQDpWCr\",\n        \"ClientReferenceNumber\": \"Your Reference Here\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"e4c89995-c4d4-404e-aaf7-107b5dc5c4c5"},{"name":"Create Individual e-Transfer Transaction With Customer","event":[{"listen":"prerequest","script":{"id":"5afa12ff-1c92-415f-b117-f62010eb1cf2","exec":["var now = new Date();\r","var todayTimestamp = now.toISOString(); \r","pm.environment.set(\"today\", todayTimestamp);\r","\r","// Add one day to the current date\r","var tomorrow = new Date();\r","tomorrow.setDate(now.getDate() + 1);\r","var tomorrowTimestamp = tomorrow.toISOString(); \r","pm.environment.set(\"tomorrow\", tomorrowTimestamp);\r","\r","// Generate a random alphanumeric string\r","function generateRandomString(length) {\r","    const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\r","    let result = '';\r","    for (let i = 0; i < length; i++) {\r","        result += chars.charAt(Math.floor(Math.random() * chars.length));\r","    }\r","    return result;\r","}\r","\r","// Store the random string in the environment\r","var randomString = generateRandomString(10); // Adjust length as needed\r","pm.environment.set(\"randomString\", randomString);"],"type":"text/javascript","packages":{}}}],"id":"7b012a7c-6431-4685-a0c8-88d50f2cbeef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerName\": \"Customer Name\",\r\n    \"email\": \"test@dcbank.ca\",\r\n    \"phoneCountryCode\": \"1\",\r\n    \"phoneNumber\": \"4039999999\",\r\n    \"priorityTypeCode\": \"0\", //Real-time Transaction\r\n    \"notificationType\": \"0\", //Email Notification\r\n    \"transactionTypeCode\": \"C\", //Money Send\r\n    \"amount\":0.01,\r\n    \"dateOfFunds\": \"{{today}}\",\r\n    \"MoneyReqExpDate\": \"{{tomorrow}}\",\r\n    \"securityQuestion\": \"What is my favorite color?\",\r\n    \"securityQuestionAnswer\": \"red\",\r\n    \"description\": \"This is my memo_{{randomString}}\",\r\n    \"ClientReferenceNumber\": \"YourReferenceHere_{{randomString}}\"\r\n    //\"TransferType\": \"AccountDeposit\",\r\n    //\"AccountNumber\": \"352-10009-999999999\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferTransactionWithCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEtransferTransactionWithCustomer</em> endpoint is used for the creation of individual Interac e-transfer transactions simultaneously with an e-transfer customer. This endpoint is an alternative to <em>CreateEtransferTransaction</em> -- allowing you to create an e-transaction transaction without the need to first create a customer using the <em>CreateCustomer</em> endpoint.</p>\n<p>Customers are initially created based upon the unique routing information defined within the request. This routing information will vary depending either upon the notification type that was defined in the request body (i.e., email or SMS notification type) or the selection of an account number routing (ANR) transfer type. Once the customer is initially created, any further requests made to the endpoint that target that same unique routing information will not instigate the creation of a new customer. Instead, the previously created customer with that same routing information will be used to carry out the requested transaction. For example, if a request is made with the value \"<a href=\"https://mailto:firstlast@gmail.com\">firstlast@gmail.com</a>\" in the \"email\" field and the value \"1\" in the \"notificationType\" field, a new customer will be created with this unique routing information assigned to it. Subsequent requests from <em>CreateEtransferTransactionWithCustomer</em> that target this email address will not create a new customer, and instead the initially created customer will be used to carry out the transaction. As such, whatever personal information was initially provided to create the customer (such as the customer's name provided in the \"customerName\" field) will be used for subsequent transactions carried out by that customer. If you wish to alter the personal information for a given customer that has been created via <em>CreateEtransferTransactionWithCustomer</em> use the <em>UpdateCustomer</em> endpoint.</p>\n<p>Money can be sent (credited) or requested (debited) via this endpoint determinate upon on the value inputted in the \"TransactionTypeCode\" field (\"C\" or \"D\").</p>\n<p>Transactions can be sent using differing priority types (0, 1, and 2) which are set within the \"PriorityTypeCode\" field of our e-transfer APIs. The priority type you select will determine the technological stack which will be leveraged to send your transaction. Priority type code \"0\" transactions are sent real-time via connected architecture. This means that your request will be immediately processed and passed on to Interac's infrastructure, and a correlating Interac reference number will be returned to you within the response body. Priority type code \"1\" and \"2\" transactions represent \"Bulk Regular\" and \"Bulk Priority\" transactions respectively. Bulk transactions are not real-time transactions. Rather, they are sent intermittently throughout day. Bulk Priority transactions are sent in approximate one hour intervals throughout the day, and Bulk Regular transactions are sent between 8-pm and 10pm MST each day. As such, when sending bulk transactions, an Interac reference number will not be returned to you within the response body and can rather be queried via the <em>SearchEtransferTransaction</em> endpoint.</p>\n<p>An account number routing (ANR) transaction can be sent by inputting the value \"AccountDeposit\" in the \"TransferType\" field. Note: ANR transactions can only be sent as money send (credit) transactions -- not money request (debit).</p>\n<p>The method in which the recipient is alerted of / accepts the transaction can be defined using the \"NotificationType\" field. If the default value 0 is entered, an Interac email alert will be sent to the customers email address defined within the request. If the value 1 is entered, an Interac SMS alert will be sent to the customers phone number within the request.</p>\n<p>The \"ClientReferenceNumber\" field and \"Description\" field are used for duplicate transaction detection. If you wish to send a transaction of the same amount to a customer with the same unique routing information in sequence, ensure that a new description and client reference numbers are provided in the request to avoid duplicate transaction errors.</p>\n<p><strong>Disclaimer:</strong><br />Please be advised, when using the Bulk Service with an Autodeposit Contact Identifier, it is possible the Recipient’s account holder or business trade name may not be shown.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates the customers name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>Indicates the customers email.  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.  <br />  <br /><b>Note:</b> The system will store the initial POST details for 24 hours before allowing the user to POST again with the same details for description, amount, and email.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> Credit (Money Send),  <br /><code>D</code> Debit (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>The store code for Client.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.  <br />  <br /><b>Note:</b> The system will store the initial POST details for 24 hours before allowing the user to POST again with the same details for description, amount, and email.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.  <br />  <br /><b>Note:</b> The system will store the initial POST details for 24 hours before allowing the user to POST again with the same details for description, amount, and email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority of the transaction.  <br />  <br /><code>0</code> - Real Time  <br /><code>1</code> - Bulk Regular  <br /><code>2</code> - Bulk Priority</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />Or  <br />yyyy-mm-ddThh:mm:ss.FF FZ</td>\n<td>The transaction's expiry date. This date value is in <em>UTC</em>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />Or  <br />yyyy-mm-ddThh:mm:ss.FF FZ</td>\n<td>The creation date of a transaction and it must be equal to or greater than the current date. This date value is in UTC. If no date is provided, the current date, in UTC, will be provided.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NotificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The notification type:  <br /><code>0</code> - Email  <br /><code>1</code> - SMS  <br />  <br />Default is <strong>Email</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />  <br /><strong>Required</strong> if <code>Transaction Type Code</code> is <code>C</code> and has no Direct Deposit Registration (DDR).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td><code>Security Question Answer</code> standards:  <br />  <br />- No spaces.  <br />- Length must be between 3 and 25 characters long.  <br />  <br /><strong>Required</strong> if a <code>Security Question</code> is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount of a <code>D</code> Money Request transaction.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Indicates customer's phone number <strong>without</strong> Country Code.  <br />  <br /><strong>Required</strong> If <strong>Notification Type</strong> is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The Phone Country Code. 1 if Canada, US.  <br />  <br /><strong>Required</strong> If <strong>Notification Type</strong> is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction at a later time. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication checking will occur.  <br />  <br /><b>Note:</b> This reference number must be unique to each transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransferType</td>\n<td><em>Enum</em> (<em>String</em>)</td>\n<td></td>\n<td>Can be set to two options:  <br />  <br /><code>Default:</code> Validation required on receiver side, such as Security Q/A and Autodeposit Registration.  <br />  <br /><code>Account Deposit:</code> ANR e-transfer. No validation required on receiver side.  <br />  <br /><b>Note:</b> Account Deposit transfer type works only for a <strong>Credit</strong> transaction type code - <code>C</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>Format: aaa-bbbbb-cccccccccccccccccccccccc  <br />  <br />Where <strong>aaa</strong> is the Financial Institution Number (Max 3-digits).  <br />  <br />Where <strong>bbbbb</strong> is the Transit Number (Max 5-digits).  <br />  <br />And where <strong>cccccccccccccccccccccccc</strong> is the bank account number (Max 24-digits).</td>\n<td>The account number.  <br />  <br /><b>Note:</b> Account Deposit transfer type works only for a <strong>Credit</strong> transaction type code - <code>C</code>.  <br />  <br /><strong>Required</strong> if <strong>Transfer Type</strong> is <code>Account Deposit</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FinancialAccountID</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates the account's identifier that would be used as the source account for Send Money or the destination account for Request Money e-transfers.  <br />  <br />0 or null will default to the client's currently setup default account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsSucceeded</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether the action was a success or not.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The unique Etransfer identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The unique transaction reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Integer</em></td>\n<td>The payee ID.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Integer</em></td>\n<td>The transaction table identifier.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>Description of any errors.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>String</em></td>\n<td>The verification code.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The \"CA\" interac reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique client reference number.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The unique customer number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE5</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>EtransferPastTransactionDateError</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE4</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE2</td>\n<td>Customer Etransfer Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE6</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE5</td>\n<td>Notification Type Parameter Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateETransferTransactionE7</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>CreateTransferCustomerPayeeNotFound</td>\n<td>Customer Payee Not Found.</td>\n</tr>\n<tr>\n<td>CreateTransferCustomerPayeeNotFound</td>\n<td>Customer Payee Not Found.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE6</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE3</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>EtransferDuplicatecontrole01</td>\n<td>The error occurs in two scenarios:  <br />1. Transaction details already exist* in the system with the same: description, amount, and email  <br />  <br />2. The Client Reference Number is not unique (has been entered before).  <br />  <br /><em>*The system will store the POST details for 24 hours before allowing the user to POST again with the same details for description, amount, and email</em></td>\n</tr>\n<tr>\n<td>ETransferRealtimeIntegratinErrorE001</td>\n<td>Interac Response: The payment amount cannot be less than the minimum outgoing limit - 1.00.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","ETransfer","CreateEtransferTransactionWithCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4d1464ba-302e-4b63-af1d-0747d59979f9","name":"Create Individual e-Transfer Transaction With Customer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerName\": \"First Last\",\r\n    \"email\": \"firstlast@gmail.com\",\r\n    \"phoneCountryCode\": \"1\",\r\n    \"phoneNumber\": \"4039999999\",\r\n    \"priorityTypeCode\": \"0\", //Real-time Transaction\r\n    \"notificationType\": \"0\", //Email Notification\r\n    \"transactionTypeCode\": \"C\", //Money Send\r\n    \"amount\": 0.01,\r\n    \"dateOfFunds\": \"2024-01-01\",\r\n    \"securityQuestion\": \"What is my favorite color?\",\r\n    \"securityQuestionAnswer\": \"red\",\r\n    \"description\": \"This is my memo!\",\r\n    \"ClientReferenceNumber\": \"YourReferenceHere\"\r\n    //\"TransferType\": \"AccountDeposit\",\r\n    //\"AccountNumber\": \"352-10009-999999999\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferTransactionWithCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Oct 2024 18:36:19 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": \"10020078277\",\n        \"IsSucceeded\": true,\n        \"TransactionId\": 3947468,\n        \"TransactionEtransferId\": 0,\n        \"TransactionReferenceNumber\": 100000000008066735,\n        \"PayeeId\": 89968,\n        \"TransactionDetailTableId\": 0,\n        \"ErrorDescription\": \"Success\",\n        \"ValidationCode\": null,\n        \"InteracReferenceNumber\": \"CANtv9Xy\",\n        \"ClientReferenceNumber\": \"YourReferenceHere\",\n        \"GatewayUrl\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"7b012a7c-6431-4685-a0c8-88d50f2cbeef"},{"name":"Update Individual e-Transfer Transaction","id":"62cdef91-fc25-46bd-a125-ad859666eddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"transactionId\": 0,\r\n  \"description\": \"string\",\r\n  \"moneyExpireDate\": \"2020-05-19T12:06:26.395Z\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/UpdateEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Individual e-Transfer Transaction API updates a Customer's e-Transfer transaction.</p>\n<p><strong>Disclaimer:</strong><br />Please be advised, when using the Bulk Service with an Autodeposit Contact Identifier, it is possible the Recipient’s account holder or business trade name may not be shown.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>The unique ID of the transaction to update.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Search Etransfer Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyExpireDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The transaction's expiry date.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateEtransferTransactionE4</td>\n<td>Transaction Not Found</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","UpdateEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7d6b9787-f888-402a-bc40-35908eb77fdf","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"TransactionId\": 101852,\n    \"CustomerNumber\": \"0220000017\",\n    \"TransactionTypeCode\": \"C\",\n    \"ContactId\": 67,\n    \"Description\": \"Changing the description\",\n    \"Amount\": 1.50,\n    \"PriorityTypeCode\": \"0\",\n    \"MoneyReqExpDate\": \"2020-04-02T12:00:00.0000000-00:00\",\n    \"DateOfFunds\": \"2020-03-28T16:00:00.0000000-00:00\",\n    \"SecurityQuestion\": \"NewSecurityQuestion\",\n    \"SecurityQuestionAnswer\": \"Secret0002\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/UpdateEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"62cdef91-fc25-46bd-a125-ad859666eddf"},{"name":"Cancel Individual e-Transfer Transaction","id":"6c1bf25b-7a24-4f3d-9eea-66e5e3664e82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TransactionId\": 359328810, //Unique Transaction Id\n\t\"CancellationReason\": \"Your reason for cancellation here.\",\n    \"TransactionReferenceNumber\": 100000000012317111\n  }  "},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CancelEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CancelEtransferTransaction</em> endpoint cancels the related transaction as defined by the value within the \"TransactionId\" field.</p>\n<p>Transactions that are already in a terminal status can no longer be cancelled. This includes transactions that are completed, or have already been cancelled.</p>\n<p><i>Note:</i> Transactions that have been sent via bulk file (regular or priority) cannot be cancelled via API until they have reached a status of \"sent\". The \"sent\" status means that the transaction has reached the Interac system. It is at this point that the <em>CancelEtransferTransaction</em> endpoint can be used to cancel the e-transfer transaction which was sent via bulk regular or bulk priority.</p>\n<p>Once the transfer is in a SENT status a cancel request will not be honored.</p>\n<p>Transactions will not be immediately updated upon cancellation, and can take up to 10 minutes to update. However, the transaction is immediately cancelled on Interac's end upon successful call.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The value retrieved from <strong>ETransfer -&gt; Search Etransfer Transaction</strong> API.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CancellationReason</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>The reason for the transaction cancellation.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>18</td>\n<td>Reference number of the transaction to be cancelled.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CancelEtransferTransactionE2</td>\n<td>Transaction Not Found</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CancelEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e48770bc-6a8b-4a3e-b0a7-54ede6db6e16","name":"Cancel Individual e-Transfer Transaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"TransactionId\": 3947468, //Unique Transaction Id\r\n\t\"CancellationReason\": \"Your reason for cancellation here.\"\r\n  }  ","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CancelEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Oct 2024 18:40:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"6c1bf25b-7a24-4f3d-9eea-66e5e3664e82"},{"name":"Search Individual e-Transfer Transaction","id":"d19e2be8-9fc4-4369-884c-871549247fdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    //\"CustomerNumber\": \"10000000001\",\n    //\"ContactId\":99999,\n    //\"Description\":\"Example description\",\n    //\"TransactionTypeCode\": \"C\", //Credit Transaction\n    //\"TransactionStatusCode\": \"S\", //Sent Status\n    //\"TransactionReferenceNumber\": \"100000000009999999\",\n    //\"InteracReferenceNumber\": \"CAxxxxxx\",\n    \"TransactionId\": 3947468,  //TransactionID is an efficent search search parameter!\n    //\"MinAmount\": 0.01,\n    //\"MaxAmount\": 1.00,\n    //\"PriorityTypeId\": 20006,//Bulk Priority Transaction\n    //\"MinDateOfFunds\": \"2024-02-25\",\n    //\"MaxDateOfFunds\": \"2024-02-27\",\n    //\"MinMoneyReqExpDate\": \"2024-04-05\",\n    //\"MaxMoneyReqExpDate\": \"2024-04-07\",\n    //\"AccountNumber\": \"\",\n    //\"ClientReferenceNumber\":\"ClientReferenceNumber\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/SearchEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>SearchEtransferTransaction</em> endpoint can be used to search e-transfer transactions that you have already created.</p>\n<p>This endpoint is useful for viewing key details about your e-transfer transactions including related customer information, reference numbers, transaction statuses, and more.</p>\n<p>When searching a money request transaction, responder keys will be populated with corresponding values. This includes the \"ResponderName\", \"ResponderEmail\" and \"ResponderPhoneNumber\". ResponderEmail and ResponderPhoneNumber will be populated dependent upon the notification type of the transaction.</p>\n<p>Use one or multiple fields to narrow down your search results.</p>\n<p>Note: The one exeption to this is the description field which cannot be used as the sole field within the request.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customer number.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>10</td>\n<td>The unique ID for contact.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction description.  <br />This field cannot be used on it's own when searching for a transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of transaction:  <br /><code>C</code> Credit Transaction (Money Send),  <br /><code>D</code> Debit Transaction (Money Request)</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>The current transaction status:  <br /><code>P</code> Pending  <br /><code>S</code> Sent  <br /><code>E</code> Error  <br /><code>RJ</code> Rejected  <br /><code>C</code> Completed  <br /><code>V</code> Cancelled  <br /><code>U</code> Unapproved  <br /><code>DF</code> Deferred  <br /><code>BL</code> Blocked by Limit Control  <br /><code>IB</code> Insfficient Balance</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>The unique DCBank reference number for a transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>The CA Reference number supplied by Interac.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>15</td>\n<td>The unique ID for the single etransfer transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinAmount</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>The minimum amount of money that was sent/deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxAmount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The maximum amount of money that was sent/deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The priority type for the transaction.  <br />  <br />For Individual and Recurring transactions:  <br /><code>0</code> Real Time,  <br /><code>1</code> Bulk Regular,  <br /><code>2</code> Bulk Priority.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinDateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The transactions's minimum date sent.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxDateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The transactions's maximum date sent.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinMoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The transaction's minimum expiry date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxMoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The transaction's maximum expiry date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for the security question, which is defined by back-office users.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Security Question</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>Client account number which the funds flow.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>DcbCustomerNumber</td>\n<td><em>String</em></td>\n<td>The DCB customer number.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The ID of the transaction.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>The contact identifier.</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The contact name.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>Integer</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Integer</em></td>\n<td>The ID of the transaction type.</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>The code of the transaction type.</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>A brief description of the transaction type.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Integer</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>PriorityTypeId</td>\n<td><em>Integer</em></td>\n<td>The ID of the priority type.</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>The code of the priority type.</td>\n</tr>\n<tr>\n<td>PriorityTypeDescription</td>\n<td><em>String</em></td>\n<td>A brief description of the priority type.</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the money request.</td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>The date the funds were sent/received.</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Integer</em></td>\n<td>The ID of the security question.</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>The security question.</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>The answer to the security question.</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>A brief description of the transaction status.</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>The code of the transaction status.</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Integer</em></td>\n<td>The ID of the transaction status.</td>\n</tr>\n<tr>\n<td>InteracStatusId</td>\n<td><em>Integer</em></td>\n<td>The interac status ID.</td>\n</tr>\n<tr>\n<td>InteracStatusCode</td>\n<td><em>String</em></td>\n<td>The interac status code.</td>\n</tr>\n<tr>\n<td>InteracStatusDescription</td>\n<td><em>String</em></td>\n<td>A brief description of the interac transaction.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The \"CA\" interac reference number.</td>\n</tr>\n<tr>\n<td>ParticipantReferenceNumber</td>\n<td><em>String</em></td>\n<td>The participant reference number.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>A brief error description, if applicable.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The sender of the funds.</td>\n</tr>\n<tr>\n<td>InteracSenderReferenceNumber</td>\n<td><em>String</em></td>\n<td>The senders interac reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The client reference number.</td>\n</tr>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>String</em></td>\n<td>The name of the financial institution.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>The payment type.</td>\n</tr>\n<tr>\n<td>RemittanceUnstructured</td>\n<td><em>String</em></td>\n<td>Remittance information, if applicable.</td>\n</tr>\n<tr>\n<td>ResponderName</td>\n<td><em>String</em></td>\n<td>The responders name.</td>\n</tr>\n<tr>\n<td>ResponderEmail</td>\n<td><em>String</em></td>\n<td>The responders email.</td>\n</tr>\n<tr>\n<td>ResponderPhoneNumber</td>\n<td><em>String</em></td>\n<td>The responders phone number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payment-type\">Payment Type</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCOUNT_ALIAS_PAYMENT</td>\n<td>Auto-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_ALIAS_PAYMENT</td>\n<td>Real-Time Auto-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Account-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Real-Time Account-Deposit Etransfer.</td>\n</tr>\n<tr>\n<td>REQUEST_FOR_PAYMENT</td>\n<td>This Value Is Set If The Transaction Is A Transfer That Is Used To Fulfill A Request For Payment.</td>\n</tr>\n<tr>\n<td>FULFILL_REQUEST_FOR_PAYMENT</td>\n<td>Updates The Request For Payment To <strong>Completed</strong>.</td>\n</tr>\n<tr>\n<td>REGULAR_PAYMENT</td>\n<td>Regular \"Send Money\" Etransfer (a.k.a. security question and answer Etransfer).</td>\n</tr>\n<tr>\n<td>RTR_PAYMENT</td>\n<td>Future Feature.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SearchEtransferTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>SearchOutgoingETransferOpE25</td>\n<td>Reference Number Is Invalid. Must Be Alpha Numeric For Search.</td>\n</tr>\n<tr>\n<td>SearchOutgoingETransferOpE21</td>\n<td>Max Date Invalid.</td>\n</tr>\n<tr>\n<td>SearchOutgoingETransferOpE20</td>\n<td>Min Date Invalid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","SearchEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"397edb1c-6200-45ee-908a-224127eeddf0","name":"Search Individual e-Transfer Transaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    //\"CustomerNumber\": \"10000000001\",\n    //\"ContactId\":99999,\n    //\"Description\":\"Example description\",\n    //\"TransactionTypeCode\": \"C\", //Credit Transaction\n    //\"TransactionStatusCode\": \"S\", //Sent Status\n    //\"TransactionReferenceNumber\": \"100000000009999999\",\n    //\"InteracReferenceNumber\": \"CAxxxxxx\",\n    \"TransactionId\": 3947468,  //TransactionID is an efficent search search parameter!\n    //\"MinAmount\": 0.01,\n    //\"MaxAmount\": 1.00,\n    //\"PriorityTypeId\": 20006,//Bulk Priority Transaction\n    //\"MinDateOfFunds\": \"2024-02-25\",\n    //\"MaxDateOfFunds\": \"2024-02-27\",\n    //\"MinMoneyReqExpDate\": \"2024-04-05\",\n    //\"MaxMoneyReqExpDate\": \"2024-04-07\",\n    //\"AccountNumber\": \"\",\n    //\"ClientReferenceNumber\":\"ClientReferenceNumber\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/SearchEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Oct 2024 18:41:45 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerNumber\": \"10020078277\",\n            \"DcbCustomerNumber\": \"10020078277\",\n            \"TransactionId\": 3947468,\n            \"ContactId\": 89968,\n            \"ContactName\": \"DCBank's Funny Money Inc.\",\n            \"Description\": \"This is my memo\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"TransactionTypeDescription\": \"Money Send\",\n            \"Amount\": 0.01,\n            \"PriorityTypeId\": 20004,\n            \"PriorityTypeCode\": \"0\",\n            \"PriorityTypeDescription\": \"Real Time\",\n            \"MoneyReqExpDate\": \"2024-11-13T18:36:12.417\",\n            \"DateOfFunds\": \"2024-10-04T18:36:15.4903061\",\n            \"SecurityQuestionId\": 3693538,\n            \"SecurityQuestion\": \"What is my favorite color?\",\n            \"SecurityQuestionAnswer\": \"red\",\n            \"TransactionStatusDescription\": \"Cancelled\",\n            \"TransactionStatusCode\": \"V\",\n            \"TransactionStatusId\": 14008,\n            \"InteracStatusId\": 96309,\n            \"InteracStatusCode\": \"8\",\n            \"InteracStatusDescription\": \"Cancelled\",\n            \"InteracReferenceNumber\": \"CANtv9Xy\",\n            \"ParticipantReferenceNumber\": \"100000000008066735\",\n            \"TransactionReferenceNumber\": \"100000000008066735\",\n            \"ErrorDescription\": null,\n            \"SenderName\": null,\n            \"InteracSenderReferenceNumber\": null,\n            \"ClientReferenceNumber\": \"YourReferenceHere\",\n            \"FinancialInstitution\": null,\n            \"PaymentType\": \"REGULAR_PAYMENT\",\n            \"RemittanceUnstructured\": \"This is my memo\",\n            \"ResponderName\": null,\n            \"ResponderEmail\": null,\n            \"ResponderPhoneNumber\": null,\n            \"InteracAction\": \"ALLOW\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"d19e2be8-9fc4-4369-884c-871549247fdd"}],"id":"a17c02fb-d337-4a3d-a147-90c43a1a217a","event":[{"listen":"prerequest","script":{"id":"087a8873-8c85-4e0f-95f2-1460001f8eec","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7edcc3e2-dc9e-46a7-ab94-35bd16001549","type":"text/javascript","exec":[""]}}],"_postman_id":"a17c02fb-d337-4a3d-a147-90c43a1a217a","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Request Money","item":[{"name":"Create Etransfer Request Money 🔒 (In-app Completion)","id":"1d5e7212-26dd-499a-954b-a9b9874a61bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerName\": \"First Last\",\r\n  \"email\": \"first-last@email.com\",\r\n  \"phoneNumber\": \"4039999999\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request Description\",\r\n  \"amount\": 1.00,\r\n  \"notificationType\": 2, // 0 = Email, 1 = SMS, 2 = Supress\r\n  \"clientReferenceNumber\": \"ref_Henriette70\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/Etransfer/CreateEtransferRequestMoney","description":"<h3 id=\"description\">Description</h3>\n<p><strong>Version 1.1</strong> -- Changes to request parameter definitions.</p>\n<p>The <em>CreateEtransferRequestMoney</em> endpoint creates an e-transfer request money transaction.</p>\n<p>The recipient of this request will be given the option to accept or decline your request for funds.</p>\n<p>Use the \"notificationType\" field to choose the method of notification you wish to use. Input the value \"0\" for this field to send an Interac email notification to the recipient. Input the value \"1\" to send an Interac SMS notification to the recipient. Input the value \"2\" to suppress notifications to the recipient. Input the value \"3\" to send an Interac email &amp; SMS notification to the recipient.</p>\n<p>Within the response body of a successful request to <em>CreateEtransferRequestMoney</em> is a field \"GateWayUrl\" which can be used to directly visit the Interac payment gateway. The Interac gateway allows a recipient to select which bank they would like to complete the transaction with. Using the GateWayUrl is valuable for in-app solutions -- allowing you to direct your user's to send payment without having to leave your application.</p>\n<p>Once the money request is accepted by the recipient the transaction status will be updated. It is recommended to use <em>Etransfer Webhooks</em> to access transaction updates or use the <em>SearchEtransferTransaction</em> endpoint.</p>\n<p>The <em>CreateEtransferRequestMoney</em> endpoint requires additional permission for use. Speak to your sales representative for more information.</p>\n<p>With regard to notification type 3 (Email and SMS) Interac will send notification as follows:</p>\n<p>1 ) If email is registered for auto-deposit - the notification will go to email only</p>\n<ol>\n<li><p>If email and mobile number are registered for auto-deposit - the notification will go to email only</p>\n</li>\n<li><p>If mobile number is registered (and not email) for auto-deposit - the notification will go to SMS only</p>\n</li>\n</ol>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:</p>\n<p>• Place a pause of 1s between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<p>Resubmitting a transaction: We recommend resubmitting after 2 hours. First call the search api to check if transaction exists using Search Individual e-transfer transaction API before calling create for the 2nd time.</p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production - get in touch with your Sales Executive</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60  <br />  <br /><strong>V1.1</strong> - 100</td>\n<td>Indicates the customer name. This should include first name and last name of the receiver.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the customer's email  <br />  <br /><strong>Required</strong> if NotificationType is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1  <br />  <br /><strong>V1.1</strong> - 3</td>\n<td>The Phone Country Code.  <br />Include “1” if Customer is from <strong>Canada</strong> or <strong>US</strong>.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10  <br />  <br /><strong>V1.1</strong> - 13</td>\n<td>Indicates the customer's phone number without Country Code.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The notification type (default is 0 -Email):  <br /><code>0</code> – Email  <br /><code>1</code> – SMS  <br /><code>2</code> – Suppress (No notification)  <br /><strong>V1.1</strong>  <br /><code>3</code> - Email &amp; SMS</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by API user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication  <br />checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount  <br />of a Money Request transaction.  <br />  <br />A <code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Set the expiration date of a transaction. Minimum is 24 hours. Default it is 1 month.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialAccountID</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates the account's identifier that would be used as the source account for Send Money or the destination account for Request Money etransfers.  <br />(0 or null will default to the client's currently setup default account).</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The transaction ID.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The etransfer ID.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>ETransferReferenceNumber</td>\n<td><em>String</em></td>\n<td>The CA interac etransfer reference number.</td>\n</tr>\n<tr>\n<td>GateWayUrl</td>\n<td><em>String</em></td>\n<td>Gateway URL.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE02</td>\n<td>Invalid Email.</td>\n</tr>\n<tr>\n<td>CreateEtransferMoneyRequestTransactionHighE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE2</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE6</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE8</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE9</td>\n<td>Please Try Again With Different Client Reference Number.</td>\n</tr>\n<tr>\n<td>CreateEtransferMoneyRequestTransactionHighE2</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Name Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE23</td>\n<td>Invalid Email. Email Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE24</td>\n<td>Invalid Phone Number. Phone Number Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE25</td>\n<td>Invalid Phone Country Code. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE26</td>\n<td>Phone Country Code Not Found.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE27</td>\n<td>Phone Number Cannot Exceed 20 Characters.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE28</td>\n<td>Invalid Phone Number.</td>\n</tr>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE002</td>\n<td>Client Reference Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE53</td>\n<td>Transaction Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE4</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE001</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE6</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE16</td>\n<td>Suppress Responder Notification Not Supported.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE011</td>\n<td>Return URL Cannot Exceed 256 Characters.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return.'</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE3</td>\n<td>Invalid Request. Customer Name Should Contain First AND Last Name.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE19</td>\n<td>Please Try Again. Money Request Could Not Generated.</td>\n</tr>\n<tr>\n<td>CreateETransferTransactionE7</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"v11-related-errors\">V1.1 Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateETransferRequestMoneyE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE2</td>\n<td>Customer Name Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE3</td>\n<td>Customer Name Must Be At Least 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE4</td>\n<td>Customer Name Cannot Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE5</td>\n<td>Description Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE6</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE7</td>\n<td>Description Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return.'</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE8</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE9</td>\n<td>Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE10</td>\n<td>Email Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE11</td>\n<td>Phone Country Code Cannot Be Empty Or Contain Only White Spaces.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE12</td>\n<td>Phone Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE13</td>\n<td>Phone Country Code Cannot Exceed 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE14</td>\n<td>Phone Number Must Be Between 4 And 13 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE15</td>\n<td>Phone Country Code Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE16</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE17</td>\n<td>Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE18</td>\n<td>Amount Cannot Exceed 25,000.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE19</td>\n<td>Money Req Exp Date Must Be In A 'yyyy-MM-dd' format OR 'yyyy-MM-ddThh:mm:ss.FFFZ' Format.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE20</td>\n<td>Money Req Exp Date Cannot Be Before The Current Date (In UTC Time).</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE21</td>\n<td>Money Req Exp Date Cannot Be More Than The Limit Of <em>Variable</em> Days.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE22</td>\n<td>Client Reference Number Cannot Be Empty Or Contain Only White Spaces.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE23</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE24</td>\n<td>Client Reference Number Has Already Been Used In The Last 48 Hours.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE25</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE26</td>\n<td>Client Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE27</td>\n<td>Client Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE28</td>\n<td>Customer Etransfer Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE29</td>\n<td>Error Creating Contact to Interac: <em>Variable.</em></td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE30</td>\n<td>Critical Error when Creating Contact In Interac: Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE31</td>\n<td>Error Creating Request Money To Interac: <em>Variable.</em></td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE32</td>\n<td>Critical Error When Creating Money Request. Please Contact Customer Support</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE33</td>\n<td>Critical Error When Creating Etransfer Transaction. Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE34</td>\n<td>Critical Error When Creating Fee Transaction. Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE35</td>\n<td>Email Cannot Be Empty Or Contain Only White Spaces.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE42</td>\n<td>Invalid Financial Account ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during RECEIVED status.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank and Interac.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n<tr>\n<td>v1.1</td>\n<td>April 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","Etransfer","CreateEtransferRequestMoney"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a7da0642-13e6-4908-879d-0e020fb86c0b","name":"Create Etransfer Request Money 🔒 (In-app Completion)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerName\": \"First Last\",\r\n  \"email\": \"firstlast@gmail.com\",\r\n  \"phoneNumber\": \"4039999999\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request Description\",\r\n  \"amount\": 1.00,\r\n  \"notificationType\": 2, //Notification Suppressed\r\n  \"clientReferenceNumber\": \"ClientReferenceNumber\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/Etransfer/CreateEtransferRequestMoney"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Oct 2024 18:44:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 3947495,\n        \"TransactionEtransferId\": 1782178,\n        \"TransactionReferenceNumber\": \"100000000008067487\",\n        \"ETransferReferenceNumber\": \"CA1MRPafZmzp\",\n        \"GateWayUrl\": \"https://gateway-web.fit.interac.ca/reqPayment/eml/CA1MRPafZmzp\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"1d5e7212-26dd-499a-954b-a9b9874a61bc"},{"name":"Create DC Request Payment 🔒","id":"8d79c9a1-9e22-4011-9c31-fc2b8ead1cc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerName\": \"First Last\",\r\n    \"Email\": \"firstlast@gmail.com\",\r\n    \"Description\": \"Your description here\",\r\n    \"Amount\": 1.00,\r\n    \"MoneyReqExpDate\": \"2024-10-26\",\r\n    \"ClientReferenceNumber\": \"ClientReference\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateDcRequestPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateDcRequestPayment</em> endpoint creates a DC Request transaction.</p>\n<p>When a request to this endpoint is succesfully completed you will recieve a URL within the response body. Upon visiting the URL further instructions are provided on how to complete the money request.</p>\n<p>This endpoint is similar to the <em>CreateEtransferRequestMoney</em> endpoint, however it does not rely on the Interac email system. Rather, the URL provided within the response body is delivered by the DC system.</p>\n<p>The <em>CreateDcRequestPayment</em> endpoint requires additional permission for use. Speak to your sales representative for more information.</p>\n<h2 id=\"setup-requirements\">Setup requirements:</h2>\n<ul>\n<li><p>An auto-deposit account must be set for DC Request Payments.</p>\n</li>\n<li><p>Fees must be set for DC Request Payments.</p>\n</li>\n</ul>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Indicates the customer name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Indicates the customer's email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be requested.  <br />Max value is $3,000.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>420</td>\n<td>The description/ reason for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>UTC  <br />yyyy-mm-dd</td>\n<td>The expiry date of a transaction. It can be null or greater than the current date.  <br />  <br />If it is not set, the system sets expire date UTC + 30 days.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Reference number supplied by API user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The transaction ID.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Numeric</em></td>\n<td>The Etransfer ID.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>Url</td>\n<td><em>String</em></td>\n<td>Response URL.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateDcbRequestMoneyE001</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE002</td>\n<td>Invalid Input.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description cannot be cannot contain \"http:\", \"https://\", \"www.\", \"JavaScript\", \"function\", \"return\".</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE003</td>\n<td>Duplicated Transaction.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE004</td>\n<td>Default Account For DC Request Money Does Not Exist.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE005</td>\n<td>Main Customer Etransfer Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE006</td>\n<td>Template Type Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE007</td>\n<td>Template Was Not Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE008</td>\n<td>The Customer Is Unsubscribed From DCRP.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE009</td>\n<td>The Customer Is Unsubscribed From Getting DCRP From The Client.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE010</td>\n<td>Blacklisted Email.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE011</td>\n<td>Client Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE012</td>\n<td>Banking Program ID Was Not Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE013</td>\n<td>Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE014</td>\n<td>Account Is Not Active.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE015</td>\n<td>Maximum Expiry Date Was Not Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE016</td>\n<td>Expiry Date Cannot Be Less Than Request Date.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE017</td>\n<td>Expiry Date Cannot Be Less Than Current Date.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE018</td>\n<td>Maximum Expiry Date Parameter Has An Incorrect Value.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE019</td>\n<td>Expiry Date Cannot Be Greater Than The Etransfer Maximum Expiry Date. Etransfer maximum expiry date: 1 Month.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE020</td>\n<td>Reference Number Is Not Unique.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE021</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE022</td>\n<td>There Is Already A Transaction With This Reference Number.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE023</td>\n<td>Sender Information Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateDcRequestPaymentE024</td>\n<td>Etransfer Program ID Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent to the customer.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction is completed by the customer.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled or declined during SENT status.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CreateDcRequestPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"008f9103-b9ec-4713-b15b-ab2ccd96c605","name":"Create DC Request Payment 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerName\": \"First Last\",\r\n    \"Email\": \"firstlast@gmail.com\",\r\n    \"Description\": \"Your description here\",\r\n    \"Amount\": 1.00,\r\n    \"MoneyReqExpDate\": \"2024-10-26\",\r\n    \"ClientReferenceNumber\": \"ClientReference\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateDcRequestPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Oct 2024 18:45:35 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 3947498,\n        \"TransactionEtransferId\": 1782180,\n        \"TransactionReferenceNumber\": \"100000000008067574\",\n        \"Url\": \"https://sandbox-payments.digitalpayments.ca/dcrm/?t=h3xVXHG4vqcfCL9PjtNuB%2FtldPNfjj0i5agvAZedcQXa%2F%2B9yzCgQOB7pdkKZNZVk\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"8d79c9a1-9e22-4011-9c31-fc2b8ead1cc6"},{"name":"Create Etransfer Request Money Bulk","id":"1c4838bd-114c-4454-9a8d-0e2205ae3c81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"priority\": \"1\",\r\n  \"customerName\": \"test\",\r\n  \"email\": \"dcbanktester@gmail.com\",\r\n  \"phoneNumber\": \"5879574567\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request\",\r\n  \"amount\": \"0.01\",\r\n  \"notificationType\": 0,\r\n  \"editableFulfillAmount\": true,\r\n  \"clientReferenceNumber\": \"r96\",\r\n  \"ExecutionReqDate\": \"2024-07-10\",\r\n  \"MoneyReqExpDate\" : \"2024-07-11T06:00:00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/Etransfer/CreateEtransferRequestMoneyBulk","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Etransfer Request Money Bulk API creates a bulk e-transfer request money transaction using email or/and phone number notifications.</p>\n<p>Once a transaction is received and submitted into the DCBank System, it will be attached to the next priority/regular bulk file sent to Interac.</p>\n<p>It is recommended to use <em>Etransfer Webhooks</em> to access transaction updates.</p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive.</p>\n<h4 id=\"disclaimer\"><strong>Disclaimer:</strong></h4>\n<p>Please be advised, when using the Bulk Service with an Autodeposit Contact Identifier, it is possible the Recipient’s account holder or business trade name may not be shown.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the customer's email.  <br />  <br /><strong>Required</strong> if NotificationType is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The Phone Country Code.  <br />Include 1 if Customer is from <strong>Canada</strong> or <strong>US</strong>.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>13</td>\n<td>Indicates the customer's phone number without Country Code.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The notification type (default is 0 -Email):  <br /><code>0</code> – Email  <br /><code>1</code> – SMS  <br /><code>2</code> - Suppress Notifications  <br /><code>3</code> - Email AND SMS.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by API user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication  <br />checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount  <br />of a Money Request transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Priority</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td><code>1</code> - Regular (once a day)  <br /><code>2</code> - Priority (every hour)</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExecutionReqDate</td>\n<td><em>DateTime</em></td>\n<td>10</td>\n<td>Date must be more or equal the current date.  <br />  <br />Default value: current date.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The transaction ID.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The etransfer ID.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transaction reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateETransferRequestMoneyE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE2</td>\n<td>Customer Name Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE3</td>\n<td>Customer Name Must Be At Least 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE4</td>\n<td>Customer Name Cannot Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE5</td>\n<td>Description Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE6</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE7</td>\n<td>Description Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE8</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE9</td>\n<td>Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE10</td>\n<td>Email Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE11</td>\n<td>Phone Country Code Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE12</td>\n<td>Phone Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE13</td>\n<td>Phone Country Code Cannot Exceed 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE14</td>\n<td>Phone Number Must Be Between 4 And 13 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE15</td>\n<td>Phone Country Code Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE16</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE17</td>\n<td>Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE18</td>\n<td>Amount Must Be Less Than 25,000.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE20</td>\n<td>Money Req Exp Date Cannot Be Before Current Date (UTC).</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE21</td>\n<td>Money Req Exp Date Cannot Be Greater Than The Limit Of 30 Days.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE22</td>\n<td>Client Reference Number Cannot Be Empty Or Contain Only White Spaces.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE23</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE24</td>\n<td>Client Reference Number Has Already Been Used In The Last 48 Hours.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE25</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE26</td>\n<td>Client Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE28</td>\n<td>Customer Etransfer Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE35</td>\n<td>Email Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE37</td>\n<td>Incorrect Priority Value.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE38</td>\n<td>Money Request Date Must Be Future Date.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.1</td>\n<td>July 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","Etransfer","CreateEtransferRequestMoneyBulk"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"678ba92b-3a3d-4059-9f2b-7b09b836a76f","name":"Create Etransfer Request Money Bulk","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"priority\": \"1\",\r\n  \"customerName\": \"test\",\r\n  \"email\": \"dcbanktester@gmail.com\",\r\n  \"phoneNumber\": \"5879574567\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request\",\r\n  \"amount\": \"0.01\",\r\n  \"notificationType\": 0,\r\n  \"editableFulfillAmount\": true,\r\n  \"clientReferenceNumber\": \"ReferenceNumber\",\r\n  //\"ExecutionReqDate\": \"2024-07-10\"\r\n  //\"MoneyReqExpDate\" : \"2024-07-07T06:00:00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/Etransfer/CreateEtransferRequestMoneyBulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Jul 2024 18:47:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": null,\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 3470573,\n        \"TransactionEtransferId\": 1405915,\n        \"TransactionReferenceNumber\": \"100000000006847552\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"1c4838bd-114c-4454-9a8d-0e2205ae3c81"},{"name":"Create Etransfer Request Money With Requestor 🔒","id":"2c823e78-8172-4787-afb3-8db6e0bc7810","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"requestorName\": \"Requestor\",\r\n  \"customerName\": \"Receiver\",\r\n  \"email\": \"someone@somewhere.ca\",\r\n  \"phoneNumber\": \"4032370084\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request\",\r\n  \"amount\": \"0.01\",\r\n  \"notificationType\": 2,\r\n  \"clientReferenceNumber\": \"ClientReferenceNumber\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Etransfer/CreateEtransferRequestMoneyWithRequestor","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEtransferRequestMoneyWithRequestor</em> endpoint creates an e-transfer request money transaction, while allowing for customization of who is making the request.</p>\n<p>The recipient of this request will be given the option to accept or decline your request for funds.</p>\n<p>Use the \"notificationType\" field to choose the method of notification you wish to use. Input the value \"0\" for this field to send an Interac email notification to the recipient. Input the value \"1\" to send an Interac SMS notification to the recipient. Input the value \"2\" to suppress notifications to the recipient. Input the value \"3\" to send an Interac email &amp; SMS notification to the recipient.</p>\n<p>Within the response body of a successful request to <em>CreateEtransferRequestMoney</em> is a field \"GateWayUrl\" which can be used to directly visit the Interac payment gateway. The Interac gateway allows a recipient to select which bank they would like to complete the transaction with. Using the GateWayUrl is valuable for in-app solutions -- allowing you to direct your user's to send payment without having to leave your application.</p>\n<p>Once the money request is accepted by the recipient the transaction status will be updated. It is recommended to use <em>Etransfer Webhooks</em> to access transaction updates or use the <em>SearchEtransferTransaction</em> endpoint.</p>\n<p>The <em>CreateEtransferRequestMoney</em> endpoint requires additional permission for use. Speak to your sales representative for more information.</p>\n<p>With regard to notification type 3 (Email and SMS) Interac will send notification as follows:</p>\n<p>1 ) If email is registered for auto-deposit - the notification will go to email only</p>\n<ol>\n<li><p>If email and mobile number are registered for auto-deposit - the notification will go to email only</p>\n</li>\n<li><p>If mobile number is registered (and not email) for auto-deposit - the notification will go to SMS only</p>\n</li>\n</ol>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:</p>\n<p>• Place a pause of 1s between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<p>Resubmitting a transaction: We recommend resubmitting after 2 hours. First call the search api to check if transaction exists using Search Individual e-transfer transaction API before calling create for the 2nd time. *</p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API is only usable for clients and scenarios, where complete KYC is done and the requestor is also on our card program.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestorName</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>indiciates the requestors name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer name. This should include the first name and the last name of the receiver.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the customer's email  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>The Phone Country Code.  <br />Include 1 if Customer is from <strong>Canada</strong> or <strong>US</strong>.  <br />  <br /><strong>Required i</strong>f Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>13</td>\n<td>Indicates the customer's phone number without Country Code.  <br />  <br /><strong>Required i</strong>f Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The notification type:  <br /><code>0</code> – Email  <br /><code>1</code> – SMS  <br /><code>2</code> – Suppress (No notification)  <br /><code>3</code> - Email &amp; SMS</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by API user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication  <br />checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount  <br />of a Money Request transaction.  <br />  <br />A <code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Set the expiration date of a transaction.  <br />  <br />Minimum is 24 hours, default it is 1 month.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The transaction ID.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The etransfer ID.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>GateWayUrl</td>\n<td><em>String</em></td>\n<td>The gateway URL.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateETransferRequestMoneyE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE2</td>\n<td>Customer Name Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE3</td>\n<td>Customer Name Must Be At Least 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE4</td>\n<td>Customer Name Cannot Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE5</td>\n<td>Description Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE6</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE7</td>\n<td>Description Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE8</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE9</td>\n<td>Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE10</td>\n<td>Email Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE11</td>\n<td>Phone Country Code Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE12</td>\n<td>Phone Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE13</td>\n<td>Phone Country Code Cannot Exceed 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE14</td>\n<td>Phone Number Must Be Between 4 and 13 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE15</td>\n<td>Phone Country Code Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE16</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE17</td>\n<td>Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE18</td>\n<td>Amount Cannot Exceed 25,000.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE19</td>\n<td>Money Req Exp Date Must be 'yyyy-MM-dd' format OR 'yyyy-MM-ddThh:mm:ss.FFFZ' Format.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE20</td>\n<td>Money Req Exp Date Cannot Be Before The Current Date (UTC).</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE21</td>\n<td>Money Req Exp Date Cannot Be More Than The Limit Of <em>Variable</em> days.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE22</td>\n<td>Client Reference Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE23</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE24</td>\n<td>Client Reference Number Has Already Been Used In The Last 48 Hours.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE25</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE26</td>\n<td>Client Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE27</td>\n<td>Client Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE28</td>\n<td>Customer Etransfer Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE29</td>\n<td>Error Creating Contact To Interac: <em>Variable.</em></td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE30</td>\n<td>Critical Error When Creating Contact On Interac: Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE31</td>\n<td>Error Creating Request Money To Interac: <em>Variable.</em></td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE32</td>\n<td>Critical Error When Creating Money Request: Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE33</td>\n<td>Critical Error When Creating Etransfer Transaction: Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE34</td>\n<td>Critical Error When Creating Fee Transaction: Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE35</td>\n<td>Email Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE36</td>\n<td>Error While Handling Gateway URL Fee Processing (Please Contact DCBank).</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE39</td>\n<td>Requestor Name Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE40</td>\n<td>Requestor Name Must Be At Least 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE41</td>\n<td>Requestor Name Cannot Exceed 100 Characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Etransfer","CreateEtransferRequestMoneyWithRequestor"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c823e78-8172-4787-afb3-8db6e0bc7810"}],"id":"7b4922d7-6497-4073-9844-00bfbf2ec55b","_postman_id":"7b4922d7-6497-4073-9844-00bfbf2ec55b","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Reccuring e-Transfer","item":[{"name":"Cancel Recurring e-Transfer Transaction","id":"9c223434-160f-4a73-97b6-3e35b6081874","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EtransferOrderId\": 63\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/CancelRecurringEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Recurring e-Transfer Transaction API cancels a specific recurring e-Transfer transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferOrderId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for the recurring e-Transfer transaction. This value can be retrieved using the <strong>ETransfer -&gt; Recurring e-transfer -&gt; Search Recurring Etransfer Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RecurringETransferRequestInsE27</td>\n<td>Recurring Transaction Not Found</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE28</td>\n<td>Recurring Transaction Is Already Cancelled</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransferRecurring","CancelRecurringEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"28231424-df59-47ec-870b-cf12f54991f2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EtransferOrderId\": 63\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/CancelRecurringEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9c223434-160f-4a73-97b6-3e35b6081874"},{"name":"Create Recurring e-Transfer Transaction","id":"dfe569c6-a213-412b-9c37-6fffa694eae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactId\": 67,\n    \"PriorityTypeCode\": \"0\",\n    \"TransactionTypeCode\": \"D\",\n    \"StartDate\": \"2020-05-01\",\n    \"EndDate\": \"2020-05-31\",\n    \"Amount\": 1.00,\n    \"Description\": \"Weekly Payment\",\n    \"SecurityQuestion\": \"HelloWorld\",\n    \"SecurityQuestionAnswer\": \"Secret\",\n    \"FrequencyTypeCode\": \"2\",\n    \"PeriodTypeCode\": \"1\",\n    \"DayOfWeekCode\": \"1\",\n    \"DayOfMonthTypeCode\": \"\",\n    \"DayOfMonthCode\": \"\",\n    \"WeekOfMonthTypeCode\": \"\",\n    \"WeekOfMonthCode\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/CreateRecurringEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateRecurringEtransferTransaction</em> endpoint allows for the creation of a recurring e-transfer transaction order. Your order for recurring e-transfer transactions can be searched via the <em>SearchRecurringEtransferTransaction,</em> updated via the <em>UpdateRecurringEtransferTransaction</em> endpoint, and cancelled via the CancelRecurringEtransferTransaction endpoint. The individual transactions that are created from your order can be searched using the <em>SearchEtransferTransaction</em> endpoint.</p>\n<p>For use of this endpoint, you will need an existing customer already created that has been designated to the e-transfer program. Customers designated to the e-transfer program can be created by using the <em>CreateCustomer</em> endpoint or the <em>CreateEtransferTransactionWithCustomer</em> endpoint.</p>\n<p>For further details relating to \"PriorityTypeCode\" and \"TransactionTypeCode\" please see the <em>CreateEtransferTransaction</em> endpoint.</p>\n<p>Recurring transactions can be set for delivery at three different frequency intervals (<strong>daily</strong>, <strong>weekly</strong>, and <strong>monthly</strong>). To define your desired timing interval enter the value \"1\" (<strong>daily</strong>), \"2\" (<strong>weekly</strong>), or \"3\" (<strong>monthly</strong>) into the \"FrequencyTypeCode\" field.</p>\n<p>When using <strong>weekly</strong> and <strong>monthly</strong> frequency intervals the \"PeriodTypeCode\" field must be supplied with a value. If the <strong>monthly</strong> FrequencyTypeCode has been selected, define either value \"0\" (day of month) or value \"2\" (week of month) within the \"PeriodTypeCode\" field. If the <strong>weekly</strong> FrequencyTypeCode has been selected, define the value \"1\" (day of the week) within the \"PeriodTypeCode\" field.</p>\n<p><strong>If the value \"0\" (day of the month) is defined within the \"PeriodTypeCode\" field,</strong> you must define a value within the \"DayOfMonthTypeCode\". The following are acceptable values for entry into the \"DayOfMonthTypeCode\" field: \"0\" (first day of month), \"1\" (selected day), \"2\" (last day of month).</p>\n<p><strong>If the value \"1\" (selected day) is defined within the \"DayOfMonthTypeCode\" field,</strong> you must define a value within the \"DayOfMonthCode\" field. This must be a particular day of the month (1-31) that you wish to have the funds sent on.</p>\n<p><strong>If the value \"1\" (day of the week) is defined within the \"PeriodTypeCode\" field,</strong> you must define a value within the \"DayOfWeekCode\" field. The following are acceptable values for entry into the \"DayOfWeekCode\" field: \"0\" (Sunday), \"1\" (Monday), \"2\" (Tuesday), \"3\" (Wednesday), \"4\" (Thursday), \"5\" (Friday), \"6\" (Saturday).</p>\n<p><strong>If the value \"2\" (week of month) value is defined within the \"PeriodTypeCode\" field,</strong> you must define a value within the \"WeekOfMonthTypeCode\" field. The acceptable values that can be entered into the \"WeekOfMonthTypeCode\" field are integers 1 - 5, which related to the first through fifth week of a given month.</p>\n<p><strong>If the value \"2\" (week of month) value is defined within the \"PeriodTypeCode\" field,</strong> you must also define a value within the \"WeekOfMonthCode\" field. The following are acceptable values for entry into the \"WeekOfMonthCode\" field: \"0\" (Sunday), \"1\" (Monday), \"2\" (Tuesday), \"3\" (Wednesday), \"4\" (Thursday), \"5\" (Friday), \"6\" (Saturday).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/</strong> Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number. This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for a contact.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of priority:  <br /><code>0</code> Real Time</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> Credit Transaction (Money Send),  <br /><code>D</code> Debit Transaction (Money Request)</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>The start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>The end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The answer for the <code>Security Question.</code>  <br />- No spaces between characters.  <br />- Maximum length of 25 characters.  <br />  <br /><strong>Required</strong> if <code>Security Question</code> is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FrequencyTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The frequency of the payment periods:  <br /><code>1</code> Daily,  <br /><code>2</code> Weekly,  <br /><code>3</code> Monthly.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PeriodTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of period:  <br /><code>0</code> Day of Month  <br /><code>1</code> Day of Week  <br /><code>2</code> Week of Month  <br />  <br /><strong>Required</strong> if the <code>Frequency Type Code</code>is <code>2</code> or <code>3</code>.  <br />  <br />If <code>Frequency Type Code</code>is <code>2</code> the <code>Period Type Code</code>must be <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfWeekCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the day of week:  <br /><code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code> is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the day of the month:  <br /><code>0</code> First Day  <br /><code>1</code> Selected Day  <br /><code>2</code> Last Day  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code> is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>The code indicating the selected day of the month:  <br /><code>1-31</code> Day of Month  <br />  <br /><strong>Required</strong> if <code>Day Of Month Type Code</code>is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the selected week of the month:  <br /><code>1-5</code> Week of Month.  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code>is <code>2</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the day of the week: <code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code>is <code>2</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransferRecurring","CreateRecurringEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"71b026a3-0091-484f-a7c3-36c37057c24c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"{{subscription-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PriorityTypeCode\": \"0\",\n    \"CustomerNumber\": \"10180000021\",\n    \"ContactId\": 10208,\n    \"TransactionTypeCode\": \"C\",\n    \"StartDate\": \"2020-02-11T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-05-13T00:00:00.0000000+00:00\",\n    \"Amount\": 1.53,\n    \"Description\": \"Test for API\",\n    \"SecurityQuestion\": \"What is your first pet?\",\n    \"SecurityQuestionAnswer\": \"Kartal\",\n    \"FrequencyTypeCode\": \"2\",\n    \"PeriodTypeCode\": \"1\",\n    \"DayOfWeekCode\": \"3\",\n    \"DayOfMonthTypeCode\": \"\",\n    \"DayOfMonthCode\": \"\",\n    \"WeekOfMonthTypeCode\": \"\",\n    \"WeekOfMonthCode\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/CreateRecurringEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"Item\": 85,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"dfe569c6-a213-412b-9c37-6fffa694eae3"},{"name":"Search Recurring e-Transfer Transaction","id":"28a0bee6-7cfe-4c13-b33f-7a2a6480ef83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    /*\n    In this example we are searching for recurring e-transfer orders that are\n    set to be delivered at a monthly frequncy for the amount of $1.23\n    */\n    //\"PriorityTypeCode\": \"\",\n    //\"TransactionOrderStatusCode\": \"\",\n    //\"TransactionTypeCode\": \"\",\n    \"FrequencyTypeCode\": \"3\", // Monthly Frequency\n    //\"PeriodTypeCode\": \"\"\n    \"TransactionAmount\": 1.23,\n    //\"StartDate\": \"\",\n    //\"EndDate\": \"\",\n    //\"FreezeFromDate\": \"\",\n    //\"FreezeToDate\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/SearchRecurringEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>SearchRecurringEtransferTransaction</em> endpoint is used for querying your already existing recurring e-transfer orders.</p>\n<p>This includes important information such as the total number of payments that will be created by the order, the current number of completed payments, the current number of payments remaining, and the status of the previous payment.</p>\n<p>The \"TransactionOrderStatusDescription\" within the respone body has multiple values that include:</p>\n<p><strong>Cancelled:</strong> The order has been cancelled</p>\n<p><strong>Freezed:</strong> The order is frozen (defined by FreezeStartDate and FreezeEndDate)</p>\n<p><strong>Error:</strong> Some error has occurred contact support team</p>\n<p><strong>Finished:</strong> All transactions in the order have been processed</p>\n<p><strong>Working:</strong> Some transactions in the order have been processed, but the order is not Finished</p>\n<p><strong>Pending:</strong> The first transaction within the order has yet to process</p>\n<p>The \"LastPaymentStatus\" within the respone body has multiple values that include:</p>\n<p><strong>Waiting:</strong> The transaction is scheduled to process, but has yet to process</p>\n<p><strong>Success:</strong> The transaction has successfully processed</p>\n<p><strong>Error:</strong> Some error has occurred, contact support team</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionOrderStatusCode</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>The recurring transaction status:  <br />- Cancelled  <br />- Freezed  <br />- Error  <br />- Pending  <br />- Working  <br />- Finished</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of priority:  <br /><code>0</code> Real Time</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> Credit Transaction (Money Send),  <br /><code>D</code> Debit Transaction (Money Request).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FrequencyTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The frequency of the payment periods:  <br /><code>1</code> Daily,  <br /><code>2</code> Weekly,  <br /><code>3</code> Monthly.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PeriodTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of period:  <br /><code>0</code> Day of Month  <br /><code>1</code> Day of Week  <br /><code>2</code> Week of Month.  <br />  <br /><strong>Required</strong> if the <code>Frequency Type Code</code>is <code>2</code> or <code>3</code>.  <br />  <br />If <code>Frequency Type Code</code>is <code>2</code> the <code>Period Type Code</code>must be <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited per period.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>The start date for the recurring transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>The end date for the recurring transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FreezeFromDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>The freeze start date if desired to freeze the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FreezeToDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>The freeze end date if desired to freeze the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>PriorityType</td>\n<td><em>String</em></td>\n<td>The transaction priority type.</td>\n</tr>\n<tr>\n<td>TransactionOrderStatus</td>\n<td><em>String</em></td>\n<td>The order status of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>The type of transaction.</td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>The payee name.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>PeriodType</td>\n<td><em>String</em></td>\n<td>The peiod type.</td>\n</tr>\n<tr>\n<td>FrequencyType</td>\n<td><em>String</em></td>\n<td>The frequency.</td>\n</tr>\n<tr>\n<td>StartingFromDate</td>\n<td><em>DateTime</em></td>\n<td>The start date of the recurring transaction.</td>\n</tr>\n<tr>\n<td>EndOfDate</td>\n<td><em>DateTime</em></td>\n<td>The end date of the recurring transaction.</td>\n</tr>\n<tr>\n<td>FreezeFromDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the recurring transaction, this would be the start date of the freeze.</td>\n</tr>\n<tr>\n<td>FreezeToDate</td>\n<td><em>DateTime</em></td>\n<td>If there is a freeze on the recurring transaction, this would be the date when the freeze ends.</td>\n</tr>\n<tr>\n<td>NumberOfPayments</td>\n<td><em>Numeric</em></td>\n<td>The number of payments to be made.</td>\n</tr>\n<tr>\n<td>CompletedPayments</td>\n<td><em>Numeric</em></td>\n<td>The number of payments that have been made thus far.</td>\n</tr>\n<tr>\n<td>RemainingPayments</td>\n<td><em>Numeric</em></td>\n<td>The number of payments remaining to meet the number of payments.</td>\n</tr>\n<tr>\n<td>LastPaymentStatus</td>\n<td><em>String</em></td>\n<td>The status of the most recent payment made.</td>\n</tr>\n<tr>\n<td>ClientNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients number.</td>\n</tr>\n<tr>\n<td>ClientName</td>\n<td><em>String</em></td>\n<td>The clients name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransferRecurring","SearchRecurringEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"91534c49-80f6-4a92-b74f-6455638a7a22","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"{{subscription-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PriorityTypeCode\": \"\",\n    \"TransactionOrderStatusCode\": \"\",\n    \"TransactionTypeCode\": \"\",\n    \"FrequencyTypeCode\": \"\",\n    \"TransactionAmount\": null,\n    \"PeriodTypeCode\": \"\",\n    \"StartDate\": \"\",\n    \"EndDate\": \"\",\n    \"FreezeFromDate\": \"\",\n    \"FreezeToDate\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/SearchRecurringEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"Item\": [\n  {\n   \"Id\": 85,\n   \"PriorityType\": \"Real Time\",\n   \"TransactionOrderStatus\": \"Cancelled\",\n   \"TransactionType\": \"Credit\",\n   \"PayeeName\": \"Sercan Serdarlı\",\n   \"TransactionAmount\": 1.53,\n   \"PeriodType\": \"Day Of Week\",\n   \"FrequencyType\": \"Weekly\",\n   \"StartingFromDate\": \"2020-02-11T00:00:00.0000000+00:00\",\n   \"EndOfDate\": \"2020-05-13T00:00:00.0000000+00:00\",\n   \"FreezeFromDate\": \"2020-03-09T00:00:00.0000000+00:00\",\n   \"FreezeToDate\": \"2020-05-01T00:00:00.0000000+00:00\",\n   \"NumberOfPayments\": 5,\n   \"CompletedPayments\": 1,\n   \"RemainingPayments\": 4,\n   \"LastPaymentStatus\": \"Waiting\",\n   \"ClientNumber\": 500011,\n   \"ClientName\": \"Atlantis Financial Corp\"\n  }\n ],\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"28a0bee6-7cfe-4c13-b33f-7a2a6480ef83"},{"name":"Update Recurring e-Transfer Transaction","id":"68349dd5-5068-44d8-9019-c591816c19ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EtransferOrderId\": \"<integer>\",\n    \"FreezeStartDate\": \"<date>\",\n    \"FreezeEndDate\": \"<date>\",\n    \"CustomerNumber\": \"<string>\",\n    \"ContactId\": \"<integer>\",\n    \"PriorityTypeCode\": \"<string>\",\n    \"TransactionTypeCode\": \"<string>\",\n    \"StartDate\": \"<date>\",\n    \"EndDate\": \"<date>\",\n    \"Amount\": \"<integer>\",\n    \"Description\": \"<string>\",\n    \"SecurityQuestion\": \"<string>\",\n    \"SecurityQuestionAnswer\": \"<string>\",\n    \"FrequencyTypeCode\": \"<string>\",\n    \"PeriodTypeCode\": \"<string>\",\n    \"DayOfWeekCode\": \"<string>\",\n    \"DayOfMonthTypeCode\": \"<string>\",\n    \"DayOfMonthCode\": \"<string>\",\n    \"WeekOfMonthTypeCode\": \"<string>\",\n    \"WeekOfMonthCode\": \"<string>\"\n}\n"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/UpdateRecurringEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Recurring e-Transfer Transaction API updates the specified recurring e-Transfer transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferOrderId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for recurring etransfer transaction.  <br />This value can be retrieved using the <strong>ETransfer Recurring -&gt; Search Recurring Etransfer Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeStartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The freeze start date if desired to freeze the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FreezeEndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The freeze end date if desired to freeze the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for a contact.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of priority:  <br /><code>0</code> Real Time</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> Credit Transaction (Money Send),  <br /><code>D</code> Debit Transaction (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />- No spaces between characters.  <br />- Maximum length of 25 characters.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The answer for the <code>Security Question</code>.  <br />  <br /><strong>Required</strong> if a <code>Security Question</code> is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FrequencyTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The frequency of the payment periods:  <br /><code>1</code> Daily,  <br /><code>2</code> Weekly,  <br /><code>3</code> Monthly.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PeriodTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of period:<code>0</code> Day of Month  <br /><code>1</code> Day of Week  <br /><code>2</code> Week of Month.  <br />  <br /><strong>Required</strong> if the <code>Frequency Type Code</code>is <code>2</code> or <code>3</code>.  <br />  <br />If <code>Frequency Type Code</code>is <code>2</code> the <code>Period Type Code</code>must be <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfWeekCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the day of week:  <br /><code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code>is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the day of the month:  <br /><code>0</code> First Day  <br /><code>1</code> Selected Day  <br /><code>2</code> Last Day  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code>is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>The code indicating the selected day of the month:  <br /><code>1-31</code> Day of Month.  <br />  <br /><strong>Required</strong> if <code>Day Of Month Type Code</code>is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the selected week of the month:  <br /><code>1-5</code> Week of Month.  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code>is <code>2</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the day of the week: <code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if <code>Period Type Code</code>is <code>2</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransferRecurring","UpdateRecurringEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"03ff25ff-51cf-42c7-9300-06a2a40aafe6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"{{subscription-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EtransferOrderId\": 85,\n    \"FreezeStartDate\": \"2020-03-09T00:00:00.0000000+00:00\",\n    \"FreezeEndDate\": \"2020-05-01T00:00:00.0000000+00:00\",\n    \"PriorityTypeCode\": \"0\",\n    \"CustomerNumber\": \"10180000021\",\n    \"ContactId\": 10208,\n    \"TransactionTypeCode\": \"C\",\n    \"StartDate\": \"2020-02-11T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-05-13T00:00:00.0000000+00:00\",\n    \"Amount\": 1.53,\n    \"Description\": \"Test for API\",\n    \"SecurityQuestion\": \"What is your first pet?\",\n    \"SecurityQuestionAnswer\": \"Kartal\",\n    \"FrequencyTypeCode\": \"2\",\n    \"PeriodTypeCode\": \"1\",\n    \"DayOfWeekCode\": \"3\",\n    \"DayOfMonthTypeCode\": \"\",\n    \"DayOfMonthCode\": \"\",\n    \"WeekOfMonthTypeCode\": \"\",\n    \"WeekOfMonthCode\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/UpdateRecurringEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"68349dd5-5068-44d8-9019-c591816c19ba"}],"id":"1ebd5266-6337-475e-b4c3-6e032242b0c6","event":[{"listen":"prerequest","script":{"id":"2b921b05-5169-4ad1-829c-21d3420a4d80","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4d58b184-3317-4dad-b049-9353c133726c","type":"text/javascript","exec":[""]}}],"_postman_id":"1ebd5266-6337-475e-b4c3-6e032242b0c6","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Transaction","item":[{"name":"Remind e-Transfer","id":"001d4b76-cd63-4458-a05c-7c43877a7a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\"<ParticipantReferenceNumber>\""},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/RemindTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>Resend the email/sms for the Send Money e-transfer transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ParticipantReferenceNumber</td>\n<td><em>String</em></td>\n<td>19</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Search Etransfer Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RemindTransferE01</td>\n<td>Request cannot be null.</td>\n</tr>\n<tr>\n<td>RemindTransferE02</td>\n<td>Transfer Cannot Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","RemindTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"538254d0-ef26-4182-bef1-0f40690f0361","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"}],"body":{"mode":"raw","raw":"\"100000000125135470\"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/RemindTransfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"001d4b76-cd63-4458-a05c-7c43877a7a61"},{"name":"Remind Request","event":[{"listen":"prerequest","script":{"id":"783fa319-02f6-4ec7-b8d8-78d245089a1f","exec":[""],"type":"text/javascript"}}],"id":"a5604859-b358-400a-94d2-5096db1eb05d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\"<ParticipantReferenceNumber>\""},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/RemindRequest","description":"<h3 id=\"description\">Description</h3>\n<p>Resend the email/sms for the Request Money e-transfer transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ParticipantReferenceNumber</td>\n<td><em>String</em></td>\n<td>19</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Search Etransfer Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RemindRequestE01</td>\n<td>Request cannot be null.</td>\n</tr>\n<tr>\n<td>RemindRequestE02</td>\n<td>Transfer Cannot Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","RemindRequest"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4de570c7-c3ed-403c-bed4-c1c30c842a54","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"}],"body":{"mode":"raw","raw":"\"100000000125135470\"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/RemindRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a5604859-b358-400a-94d2-5096db1eb05d"}],"id":"296cd0eb-d083-4a5a-9110-a365e5317982","_postman_id":"296cd0eb-d083-4a5a-9110-a365e5317982","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"e-Transfer Program Customer","item":[{"name":"Get eTransfer Customer","id":"0c46e426-2dc6-4b0a-8fa1-a71600a2ddb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The Get e-Transfer Customer API retrieves a list of all customers who are able to e-Transfer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The etransfer customer ID.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>the etransfer customer number.</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>The etransfer customer name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetEtransferCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c2871e08-36c2-44af-8288-e07df3c52cb7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerId\": 20036,\n            \"CustomerNumber\": \"0220000002\",\n            \"CustomerName\": \"Demi Lovato\"\n        },\n        {\n            \"CustomerId\": 20038,\n            \"CustomerNumber\": \"0220000003\",\n            \"CustomerName\": \"Drew Morrison\"\n        },\n        {\n            \"CustomerId\": 20043,\n            \"CustomerNumber\": \"0220000004\",\n            \"CustomerName\": \"Jim Spade\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0c46e426-2dc6-4b0a-8fa1-a71600a2ddb1"}],"id":"0b89d3dc-f3c6-40bc-a96c-cc23d906b8d6","_postman_id":"0b89d3dc-f3c6-40bc-a96c-cc23d906b8d6","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"High Performance","item":[{"name":"Create Etransfer Transaction - High-Performance 🔒","event":[{"listen":"prerequest","script":{"id":"573660bb-85c2-41b2-8b02-b4a003c8d500","exec":[""],"type":"text/javascript","packages":{}}}],"id":"8a3cabce-699c-4297-b9c4-2e3611ae3269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10300007468\",\r\n    \"TransactionTypeCode\": \"C\",\r\n    \"Description\": \"e-Transfer Transaction \",\r\n    \"Amount\": 0.05,\r\n    \"PriorityTypeCode\": \"0\",\r\n    \"DateOfFunds\": \"2024-04-23\",\r\n    //\"MoneyReqExpDate\": \"2023-11-26\",\r\n    \"SecurityQuestion\": \"what is favourite food\",\r\n    \"SecurityQuestionAnswer\": \"pizza\",\r\n    \"NotificationType\": 2,\r\n    \"EditableFulfillAmount\": false,\r\n    \"CustomerStoreCode\" : null,\r\n    \"ClientReferenceNumber\": \"TEST #01211031\",\r\n   // \"TransferType\": \"AccountDeposit\",\r\n   // \"AccountNumber\": \"352-10009-360688089\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/ETransfer/CreateEtransferTransactionHigh","description":"<h3 id=\"description\">Description</h3>\n<p>The Create ETransfer High Performance API creates an Interac e-transfer transaction. Once a transaction is received and submitted into our system the API will return with a XXX status for that transaction. It is recommended to use the Web Hooks to receive further status updates regarding the transaction.</p>\n<p><strong>Version 1.1</strong> -- NotificationType 3 added (send both email and SMS notification). Additional error code(s).</p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive</p>\n<p><strong>Disclaimer:</strong><br />Please be advised, when using the Bulk Service with an Autodeposit Contact Identifier, it is possible the Recipient’s account holder or business trade name may not be shown.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The value retrieved from <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Transaction Type Code values must be:  <br /><code>C</code> - Credit Transaction (Money Send),  <br />D - Debit Transaction (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority of the transaction.  <br />Priority Type Codes:  <br /><code>0</code> - Real Time  <br /><code>2</code> - Bulk Priority</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The creation date of a transaction and it must be equal to or greater than the current date. If no date is provided, the current date in UTC will be provided.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transaction's expiry date.  <br />  <br /><strong>Required</strong> if Transaction Type Code = <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />  <br /><strong>Required</strong> if Transaction Type Code is <code>C</code>, and has no Direct Deposit Registration (DDR).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The answer for the SecurityQuestion  <br />- No spaces.  <br />- Between 3 and 25 characters long.  <br />  <br /><strong>Required</strong> if a Security Question has been supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>NotificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Notification Type values must be  <br /><code>0</code> – Email (default value)  <br /><code>1</code> - SMS  <br /><code>2</code> - Suppress Notifications  <br />  <br /><strong>V1.1</strong>  <br /><code>3</code> - Email AND SMS.  <br />  <br />When client uses notification type \"3\", Interac will generate both an email and SMS notification for the transaction.  <br />  <br />If the recipient is registered for Auto Deposit (AD), Interac will send notification as follows:  <br />- If email is registered for AD, a notification will go to <strong>email only.</strong>  <br />- If <strong>email and mobile number</strong> are registered for AD, a notification will go to <strong>email only.</strong>  <br />- If a mobile number is registered (and no email) for AD, a notification will go as <strong>SMS only.</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount of a <code>D</code> Money Request transaction.  <br />  <br />A <code>True</code> or <code>False</code> value.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferType</td>\n<td><em>Enum</em> (<em>String</em>)</td>\n<td></td>\n<td>Can be set to two options:  <br />  <br /><code>Default:</code> Validation required on receiver side, such as Security Q/A and Autodeposit Registration.  <br />  <br /><code>Account Deposit:</code> ANR e-transfer. No validation required on receiver side.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeneficiaryId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>Account ID that contains Beneficiary Information, should the customer have more than one account.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialAccountID</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates the account's identifier that would be used as the source account for Send Money or the destination account for Request Money e-transfers.  <br />  <br />0 or null will default to the client's currently setup default account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE2</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE6</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE8</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE9</td>\n<td>Please Try Again With Different Client Reference Number.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionSenderHighOpE10</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE16</td>\n<td>Money Send Date Must Be Greater Than Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE002</td>\n<td>Client Reference Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE53</td>\n<td>Transaction Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE006</td>\n<td>Invalid Date Of Funds.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE3</td>\n<td>Security Question Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE6</td>\n<td>Security Question Answer Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>ETransferDateControlE01</td>\n<td>Expiry Date Cannot Be Before Current Date.</td>\n</tr>\n<tr>\n<td>IndividualETransferInsE223</td>\n<td>Expiry Date Cannot Be Greater Than The Etransfer Maximum Expire Date. Etransfer maximum expiry date: 40 Days.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE1</td>\n<td>Security Question Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE2</td>\n<td>Security Question Cannot Exceed 40 Characters.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE4</td>\n<td>Security Question Answer Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE5</td>\n<td>Security Question Answer May Contain Letters, Digits, Hyphens and French Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE4</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE3</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE5</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE001</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Invalid Transaction Type Code.</td>\n</tr>\n<tr>\n<td>CreateETransferTransactionE7</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>AccountNumberInvalid</td>\n<td>Account Number Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE19</td>\n<td>A Communication Error With Interac Has Occurred.</td>\n</tr>\n<tr>\n<td><strong>V1.1</strong> -DateValidatorErrorE003</td>\n<td>Date Validator Error E003.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","ETransfer","CreateEtransferTransactionHigh"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"59cc43bb-7f93-4297-91f1-2173ba538ddd","name":"Create Etransfer Transaction High 🔒","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10010000003\",\r\n    \"TransactionTypeCode\": \"C\",\r\n    \"Description\": \"e-Transfer Transaction Berkay Manual1\",\r\n    \"Amount\": 10.00,\r\n    \"PriorityTypeCode\": \"0\",\r\n    \"DateOfFunds\": \"2022-12-26\",\r\n    \"MoneyReqExpDate\": \"2022-12-28\", \r\n    \"SecurityQuestion\": \"deneme\",\r\n    \"SecurityQuestionAnswer\": \"secret\",\r\n    \"NotificationType\": 0, \r\n    \"EditableFulfillAmount\": false,\r\n    \"CustomerStoreCode\" : null,\r\n    \"ClientReferenceNumber\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferTransactionHigh"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Success\",\r\n    \"StackTrace\": null,\r\n    \"Item\": 1234567,\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}\r\n"}],"_postman_id":"8a3cabce-699c-4297-b9c4-2e3611ae3269"},{"name":"Create Etransfer Transaction With Customer-High-Performance 🔒","event":[{"listen":"prerequest","script":{"id":"67e8267d-8f67-454c-bc14-25c7d0f1cb98","exec":["var now = new Date();\r","var todayTimestamp = now.toISOString(); \r","pm.environment.set(\"today\", todayTimestamp);\r","\r","// Add one day to the current date\r","var tomorrow = new Date();\r","tomorrow.setDate(now.getDate() + 1);\r","var tomorrowTimestamp = tomorrow.toISOString(); \r","pm.environment.set(\"tomorrow\", tomorrowTimestamp);\r","\r","// Generate a random alphanumeric string\r","function generateRandomString(length) {\r","    const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\r","    let result = '';\r","    for (let i = 0; i < length; i++) {\r","        result += chars.charAt(Math.floor(Math.random() * chars.length));\r","    }\r","    return result;\r","}\r","\r","// Store the random string in the environment\r","var randomString = generateRandomString(10); // Adjust length as needed\r","pm.environment.set(\"randomString\", randomString);"],"type":"text/javascript","packages":{}}}],"id":"752d7380-5823-4c30-b26e-6d8ac857874e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerName\": \"First Last\",\r\n    \"Email\": \"test@dcbank.ca\",\r\n    \"PhoneCountryCode\": \"1\",\r\n    \"PhoneNumber\" : \"5875003033\", \r\n    \"PriorityTypeCode\": \"2\",\r\n    \"notificationType\": \"0\",\r\n    \"transactionTypeCode\": \"C\",\r\n    \"amount\": 0.01,\r\n    \"dateOfFunds\": \"{{today}}\",\r\n    \"securityQuestion\": \"Question\",\r\n   \"securityQuestionAnswer\": \"Answer\",\r\n    \"description\": \"description_{{randomString}}\",\r\n    \"ClientReferenceNumber\": \"ref_{{randomString}}\"\r\n    // \"TransferType\": \"AccountDeposit\",\r\n    // \"AccountNumber\": \"352-10009-362559635\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HPbaseUrl}}/integrationapi/v1.1/ETransfer/CreateEtransferTransactionWithCustomerHigh","description":"<h3 id=\"description\">Description</h3>\n<p>The Create ETransfer High Performance With Customer API creates an Interac e-transfer transaction using email or phone number. Once a transaction is received and submitted into our system the API will return with a XXX status for that transaction. It is recommended to use the Web Hooks to receive further status updates regarding the transaction.</p>\n<p><strong>Version 1.1</strong> -- NotificationType 3 added (send both email and SMS notification). Additional error code(s). Additional error code(s).</p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive</p>\n<p><strong>Disclaimer:</strong><br />Please be advised, when using the Bulk Service with an Autodeposit Contact Identifier, it is possible the Recipient’s account holder or business trade name may not be shown.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates the customer name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>64</td>\n<td>Indicates the customer's email.  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The Phone Country Code is <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.  <br />  <br /><strong>Required</strong> If Notification Type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Indicates customer's phone number without Country Code.  <br />  <br /><strong>Required</strong> If Notification Type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority of the transaction.  <br />Priority Type Codes:  <br /><code>0</code> - Real Time  <br /><code>2</code> - Bulk Priority</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Notification Type values must be  <br /><code>0</code> – Email (default value)  <br /><code>1</code> - SMS  <br /><code>2</code> - Suppress Notifications  <br />  <br /><strong>V1.1</strong>  <br /><code>3</code> - Email AND SMS.  <br />  <br />When client uses notification type \"3\", Interac will generate both an email and SMS notification for the transaction.  <br />  <br />If the recipient is registered for Auto Deposit (AD), Interac will send notification as follows:  <br />- If email is registered for AD, a notification will go to <strong>email only.</strong>  <br />- If <strong>email and mobile number</strong> are registered for AD, a notification will go to <strong>email only.</strong>  <br />- If a mobile number is registered (and no email) for AD, a notification will go as <strong>SMS only.</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>transactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Transaction Type Codes:  <br /><code>C</code> - Credit Transaction (Money Send)  <br /><code>D</code> - Debit Transaction (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>dateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The creation date of a transaction and it must be equal to or greater than the current date. If no date is provided, the current date, in UTC, will be provided.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>securityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />  <br /><strong>Required</strong> if Transaction Type Code is <code>C</code> and has no Direct Deposit Registration (DDR).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>securityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Security QuestionAnswer standards:  <br />- No spaces.  <br />- Length must be between 3 and 25 characters long.  <br />  <br /><strong>Required</strong> if a Security Question is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>The store code for Client.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transaction's expiry date. This date value is in UTC.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransferType</td>\n<td><em>Enum</em> (<em>String</em>)</td>\n<td></td>\n<td>Can be set to two options:  <br />  <br /><code>Default:</code> Validation required on receiver side, such as Security Q/A and Autodeposit Registration.  <br />  <br /><code>Account Deposit:</code> ANR e-transfer. No validation required on receiver side.  <br />  <br /><strong>Note:</strong> Account Deposit transfer type works only for <code>Credit</code> transaction type. (Transaction Type Code = <code>C</code>).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>32  <br />  <br />Valid Format: aaa-bbbbb-cccccccccccccccccccccccc  <br />  <br />Where <strong>aaa</strong> is the Financial Institution Number (max 3).  <br />  <br />Where <strong>bbbbb</strong> is the Transit Number (max 5).  <br />  <br />Where <strong>cccccccccccccccccccccccc</strong> is the Bank Account Number (max 24).</td>\n<td>The full account number, including the FI number and the transit number.  <br />  <br /><strong>Required</strong> if Transfer Type is <code>Account Deposit</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FinancialAccountID</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates the account's identifier that would be used as the source account for Send Money or the destination account for Request Money e-transfers.  <br />  <br />0 or null will default to the client's currently setup default account.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>IsSucceeded</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indiciating whether or not the action was completed successfully.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The etransfer identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Integer</em></td>\n<td>The payee identifier.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Integer</em></td>\n<td>Transaction table detail identifier.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>A description of any errors that may have occurred.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>Integer</em></td>\n<td>The verification code.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The client reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE02</td>\n<td>Invalid Email.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE2</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE6</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE8</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE9</td>\n<td>Please Try Again With Different Client Reference Number.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionSenderHighOpE10</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE23</td>\n<td>Invalid Email. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE24</td>\n<td>Invalid Phone Number. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE25</td>\n<td>Invalid Phone Country Code. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE26</td>\n<td>Phone Country Code Not Found.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE27</td>\n<td>Phone Number Cannot Exceed 20 Characters.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE28</td>\n<td>Invalid Phone Number.</td>\n</tr>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE16</td>\n<td>Money Send Date Must Be Greater Than The Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE002</td>\n<td>Client Reference Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE53</td>\n<td>Transaction Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE006</td>\n<td>Invalid Date Of Funds.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE3</td>\n<td>Security Question Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE6</td>\n<td>Security Question Answer Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>ETransferDateControlE01</td>\n<td>Expiry Date Cannot Be Before The Current Date.</td>\n</tr>\n<tr>\n<td>IndividualETransferInsE223</td>\n<td>Expiry Date Cannot Be Greater Than Etransfer Maximum Expiry Date. Etransfer Maximum Expiry Date: 40 Days.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE1</td>\n<td>Security Question Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE2</td>\n<td>Security Question Cannot Exceed 40 Characters.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE4</td>\n<td>Security Question Answer Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE5</td>\n<td>Security Question Answer May Contain Letters, Digits, Hyphens And French Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE4</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE001</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description Cannot Contain 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Invalid Transaction Type Code.</td>\n</tr>\n<tr>\n<td>CreateETransferTransactionE7</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>AccountNumberInvalid</td>\n<td>Account Number Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE19</td>\n<td>A Communication Error With Interac Has Occurred.</td>\n</tr>\n<tr>\n<td><strong>V1.1</strong> - DateValidatorErrorE001</td>\n<td>Date Validator Error E001 - Invalid Date Of Funds</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","ETransfer","CreateEtransferTransactionWithCustomerHigh"],"host":["{{HPbaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d892d152-e399-435a-8f22-b4a2523c34e1","name":"Create Etransfer Transaction With Customer High 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerName\": \"John Doe\",\r\n    \"email\": \"berkay.test@dcb.com\",\r\n    \"phoneCountryCode\": \"1\",\r\n    \"phoneNumber\": \"5555555555\",\r\n    \"priorityTypeCode\": \"0\",\r\n    \"notificationType\": \"0\",\r\n    \"transactionTypeCode\": \"C\",\r\n    \"amount\": 10.50,\r\n    \"dateOfFunds\": \"2022-12-26\",\r\n    \"securityQuestion\": \"What is my favorite color?\",\r\n    \"securityQuestionAnswer\": \"red\",\r\n    \"description\": \"This is my memo\",\r\n    \"ClientReferenceNumber\": null,\r\n    \"CustomerStoreCode\": null,\r\n    \"MoneyReqExpDate\": \"2022-12-28\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferTransactionWithCustomerHigh"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Success\",\r\n    \"StackTrace\": null,\r\n    \"Item\": {\r\n        \"CustomerNumber\": null,\r\n        \"IsSucceeded\": true,\r\n        \"TransactionId\": 1166146,\r\n        \"TransactionEtransferId\": 0,\r\n        \"TransactionReferenceNumber\": 100000000001792897,\r\n        \"PayeeId\": 0,\r\n        \"TransactionDetailTableId\": 0,\r\n        \"ErrorDescription\": null,\r\n        \"ValidationCode\": null,\r\n        \"ClientReferenceNumber\": \"312-Testing-312\"\r\n    },\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}\r\n"}],"_postman_id":"752d7380-5823-4c30-b26e-6d8ac857874e"},{"name":"Search ETransfer Transaction-High-Performance 🔒","id":"e7809d18-f519-45e3-bad2-ea1ff45eb57d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  //\"customerNumber\": \"string\",\r\n  //\"dcbCustomerNumber\": \"string\",\r\n  //\"contactId\": 0,\r\n  //\"description\": \"string\",\r\n  //\"transactionTypeCode\": \"string\",\r\n  //\"transactionStatusCode\": \"string\",\r\n  //\"minAmount\": 0,\r\n  //\"maxAmount\": 0,\r\n  //\"priorityTypeCode\": \"string\",\r\n  //\"minMoneyReqExpDate\": \"2022-12-05T16:24:01.310Z\",\r\n  //\"maxMoneyReqExpDate\": \"2022-12-05T16:24:01.310Z\",\r\n  //\"securityQuestionId\": 0,\r\n  //\"referenceNumber\": \"string\",\r\n  //\"transactionId\": 2951478,\r\n  //\"interacReferenceNumber\": \"string\",\r\n  //\"transactionReferenceNumber\": \"string\",\r\n  //\"minDateOfFunds\": \"string\",\r\n  //\"maxDateOfFunds\": \"string\",\r\n  //\"accountNumber\": \"string\",\r\n  \"clientReferenceNumber\": \"TEST #012f11e0231\",\r\n  //\"isSenderApi\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HPbaseUrl}}/integrationapi/v1.0/Etransfer/SearchEtransferTransactionHigh","description":"<h3 id=\"description\">Description</h3>\n<p>The SearchEtransferTransactionHighPerformance can be used for querying previously create high performance Etransfer transactions.</p>\n<p><em>Ensure that at least one search parameter is provided. Searching with an empty request body will return no results. When using the description field, you must provide an additional search parameter -- description field cannot be used on its own for searching.</em></p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://mailto:APISupport@dcbank.ca\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://mailto:APISupport@dcbank.ca\">APISupport@dcbank.ca</a><br />• In Production - get in touch with your Sales Executive</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customer number. This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>The unique ID for the contact.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction description.  <br />  <br />Transaction description field cannot be used on it's own when searching for a transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of transaction:  <br /><code>C</code> - Credit Transaction (Money Send),  <br /><code>D</code> - Debit Transaction (Money Request).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>The unique DCBank reference number for a transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>The CA Reference number supplied by Interac.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>The unique ID for the single etransfer transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinAmount</td>\n<td><em>Decimal</em></td>\n<td></td>\n<td>The minimum amount of money that was sent/deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxAmount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The maximum amount of money that was sent/deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority type for the transaction.  <br />  <br />For Individual and Recurring transactions:  <br /><code>0</code> - Real Time  <br />  <br />For the Bulk File transactions:  <br /><code>1</code> - Bulk Regular  <br /><code>2</code> - Bulk Priority</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinDateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transactions's minimum date sent.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxDateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transactions's maximum date sent.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinMoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transaction's minimum expiry date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxMoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transaction's maximum expiry date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Numeric</em></td>\n<td>19</td>\n<td>The unique ID for the security question, which is defined by back-office users.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Security Question</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>Client Account Number which the funds flow.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by the user.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ErrorCode</td>\n<td><em>String</em></td>\n<td>An error code.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>DcbCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>DCBank's unique customer number.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The transaction identifier.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Numeric</em></td>\n<td>The contact identifier.</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The contact name.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description for the transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The transaction type identifier.</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>Numeric</em></td>\n<td>The transaction type code.</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>The transaction type code description.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Decimal</td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>PriorityTypeId</td>\n<td><em>Numeric</em></td>\n<td>The priority type identifier.</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>Numeric</em></td>\n<td>The priority type code.</td>\n</tr>\n<tr>\n<td>PriorityTypeDescription</td>\n<td><em>String</em></td>\n<td>The priority type code description.</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>The money request's expiry date.</td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>The date funds were sent.</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Numeric</em></td>\n<td>The transactions security question identifier.</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>The security question.</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>The security question answer.</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>The transaction status description.</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>The status code of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Numeric</em></td>\n<td>The transaction status identifier.</td>\n</tr>\n<tr>\n<td>InteracStatusId</td>\n<td><em>Numeric</em></td>\n<td>The interac status identifier.</td>\n</tr>\n<tr>\n<td>InteracStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The interact status code.</td>\n</tr>\n<tr>\n<td>InteracStatusDescription</td>\n<td><em>String</em></td>\n<td>The interac status code description.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The interac \"CA\" reference number.</td>\n</tr>\n<tr>\n<td>ParticipantReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The participant reference number.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>An error description.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The sender name.</td>\n</tr>\n<tr>\n<td>InteracSenderReferenceNumber</td>\n<td><em>String</em></td>\n<td>The interac sender reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The clients reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payment-type\">Payment Type</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCOUNT_ALIAS_PAYMENT</td>\n<td>Auto-Deposit Eransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_ALIAS_PAYMENT</td>\n<td>Real-Time Auto-Deposit Eransfer.</td>\n</tr>\n<tr>\n<td>ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Account-Deposit Eransfer.</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Real-Time Account-Deposit Eransfer.</td>\n</tr>\n<tr>\n<td>REQUEST_FOR_PAYMENT</td>\n<td>This value is set if the transaction is a transfer that is used to fulfill a request for payment (i.e. money request).</td>\n</tr>\n<tr>\n<td>FULFILL_REQUEST_FOR_PAYMENT</td>\n<td>Updates the request for payment to completed</td>\n</tr>\n<tr>\n<td>REGULAR_PAYMENT</td>\n<td>Regular \"Send Money\" Eransfer (a.k.a. security question and answer Eransfer).</td>\n</tr>\n<tr>\n<td>RTR_PAYMENT</td>\n<td>Future Feature.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>SearchEtransferTransactionHighOpE10</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>SearchOutgoingETransferOpE25</td>\n<td>Reference Number Is Invalid. Reference Number Must Be Alphanumeric For Search.</td>\n</tr>\n<tr>\n<td>SearchOutgoingETransferOpE20</td>\n<td>Min Date Invalid.</td>\n</tr>\n<tr>\n<td>SearchOutgoingETransferOpE21</td>\n<td>Max Date Invalid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Etransfer","SearchEtransferTransactionHigh"],"host":["{{HPbaseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ed8775b5-f17a-414e-8ec7-e299cc64f579","name":"Search ETransfer Transaction High 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"string\",\r\n  \"dcbCustomerNumber\": \"string\",\r\n  \"contactId\": 0,\r\n  \"description\": \"string\",\r\n  \"transactionTypeCode\": \"string\",\r\n  \"transactionStatusCode\": \"string\",\r\n  \"minAmount\": 0,\r\n  \"maxAmount\": 0,\r\n  \"priorityTypeCode\": \"string\",\r\n  \"minMoneyReqExpDate\": \"2022-12-05T16:24:01.310Z\",\r\n  \"maxMoneyReqExpDate\": \"2022-12-05T16:24:01.310Z\",\r\n  \"securityQuestionId\": 0,\r\n  \"referenceNumber\": \"string\",\r\n  \"transactionId\": 0,\r\n  \"interacReferenceNumber\": \"string\",\r\n  \"transactionReferenceNumber\": \"string\",\r\n  \"minDateOfFunds\": \"string\",\r\n  \"maxDateOfFunds\": \"string\",\r\n  \"accountNumber\": \"string\",\r\n  \"clientReferenceNumber\": \"string\",\r\n  \"isSenderApi\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Etransfer/SearchEtransferTransactionHigh"},"code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": null,\r\n    \"StackTrace\": null,\r\n    \"Item\": [\r\n        {\r\n            \"ErrorCode\": \"Success\",\r\n            \"CustomerNumber\": \"10020057790\",\r\n            \"DcbCustomerNumber\": \"10020057790\",\r\n            \"TransactionId\": 1166230,\r\n            \"ContactId\": 53661,\r\n            \"ContactName\": null,\r\n            \"Description\": \"This is my memo for testing\",\r\n            \"TransactionTypeId\": 6021,\r\n            \"TransactionTypeCode\": \"D\",\r\n            \"TransactionTypeDescription\": \"Money Request\",\r\n            \"Amount\": 2.22,\r\n            \"PriorityTypeId\": 20004,\r\n            \"PriorityTypeCode\": \"0\",\r\n            \"PriorityTypeDescription\": \"Real Time\",\r\n            \"MoneyReqExpDate\": \"2023-02-20T00:00:00\",\r\n            \"DateOfFunds\": \"2023-02-03T21:26:59.3050633\",\r\n            \"SecurityQuestionId\": 0,\r\n            \"SecurityQuestion\": \"test\",\r\n            \"SecurityQuestionAnswer\": \"test\",\r\n            \"TransactionStatusDescription\": \"Sent\",\r\n            \"TransactionStatusCode\": \"S\",\r\n            \"TransactionStatusId\": 14001,\r\n            \"InteracStatusId\": 96601,\r\n            \"InteracStatusCode\": \"1\",\r\n            \"InteracStatusDescription\": \"e-Transfer Request initiated\",\r\n            \"InteracReferenceNumber\": \"CA1MRNayqCS9\",\r\n            \"ParticipantReferenceNumber\": \"100000000001794450\",\r\n            \"TransactionReferenceNumber\": \"100000000001794450\",\r\n            \"ErrorDescription\": \"Success\",\r\n            \"SenderName\": \"DC Test Dummy\",\r\n            \"InteracSenderReferenceNumber\": null,\r\n            \"ClientReferenceNumber\": \"312-Testing-3121\"\r\n        }\r\n    ],\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}\r\n"}],"_postman_id":"e7809d18-f519-45e3-bad2-ea1ff45eb57d"},{"name":"Create Etransfer Transaction With Sender High 🔒","id":"8bb1dbd8-2501-4320-8974-deb398f878e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{    \r\n    \"Sender\": {\r\n        \"Name\": \"Berkay New\",\r\n        \"Email\": \"lena.hotea@dcbank.ca\",\r\n        \"PhoneCountryCode\": \"1\",\r\n        \"PhoneNumber\": \"\"\r\n    },\r\n   \"priorityTypeCode\": \"2\",\r\n    \"notificationType\": \"1\",\r\n    \"transactionTypeCode\": \"C\",\r\n    \"amount\": 0.02,\r\n    \"dateOfFunds\": \"2024-12-05\",\r\n    \"securityQuestion\": \"What is my favorite color?\",\r\n    \"securityQuestionAnswer\": \"red\",\r\n    \"description\": \"Lena  Testing\",\r\n    \"ClientReferenceNumber\": \"Ref#31w3391\",\r\n    \"CustomerStoreCode\": null,\r\n    \"MoneyReqExpDate\": \"2024-12-06\",\r\n    \"Address\": \"736 Meridian Road N/A\",\r\n    \"ZipCode\": \"T2A 2N7\",\r\n    \"City\": \"Calgary\",\r\n    \"Province\": \"Alberta\",\r\n    \"Country\": \"Canada\",\r\n    \"Recipient\": {\r\n        \"Name\": \"Berkay Payeee\",\r\n        \"Email\": \"lena.hotea@dcbank.ca\",\r\n        \"PhoneCountryCode\": \"1\",\r\n        \"PhoneNumber\": \"4032452555\"\r\n     },\r\n   // \"TransferType\": \"AccountDeposit\",\r\n   // \"AccountNumber\": \"03-00192-51441436\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/ETransferSender/CreateEtransferTransactionWithSenderHigh","description":"<h3 id=\"description\">Description</h3>\n<p>The Create ETransfer High Performance With Sender High API allows you to swiftly generate Interac e-Transfer transactions with comprehensive sender and recipient details. This versatile API enables you to initiate transactions using the recipient's email and phone number while also including the sender's information. Once a transaction is received and submitted into our system the API will return with a XXX status for that transaction. It is recommended to use the Web Hooks to receive further status updates regarding the transaction.</p>\n<p><strong>Version 1.1</strong> -- NotificationType 3 added (send both email and SMS notification). Additional error code(s).</p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sender</td>\n<td></td>\n<td></td>\n<td>The Sender Information Section.</td>\n<td></td>\n</tr>\n<tr>\n<td>Sender &gt;&gt; Name</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>The sender name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Sender &gt;&gt; Email</td>\n<td><em>String</em></td>\n<td>64</td>\n<td>The senders email address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Sender &gt;&gt; phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>The senders Phone Country Code.  <br /><code>1</code> if <strong>Canada</strong> or <strong>USA</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Sender &gt;&gt; phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Indicates the senders phone number without Country Code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority of the transaction.  <br />Priority Type Codes:  <br /><code>0</code> - Real Time  <br /><code>2</code> - Bulk Priority</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Notification Type values must be  <br /><code>0</code> – Email (default value)  <br /><code>1</code> - SMS  <br /><code>2</code> - Suppress Notifications  <br />  <br /><strong>V1.1</strong>  <br /><code>3</code> - Email AND SMS.  <br />  <br />When client uses notification type \"3\", Interac will generate both an email and SMS notification for the transaction.  <br />  <br />If the recipient is registered for Auto Deposit (AD), Interac will send notification as follows:  <br />- If email is registered for AD, a notification will go to <strong>email only.</strong>  <br />- If <strong>email and mobile number</strong> are registered for AD, a notification will go to <strong>email only.</strong>  <br />- If a mobile number is registered (and no email) for AD, a notification will go as <strong>SMS only.</strong></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>transactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Transaction Type Code value must be:  <br /><code>C</code> - Credit Transaction (Money Send),  <br /><code>D</code> - Debit Transaction (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>dateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The creation date of a transaction and it must be equal to or greater than the current date. If no date is provided, the current date, in UTC, will be provided.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>securityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />  <br /><strong>Required</strong> if Transaction Type Code is <code>C</code> and has no Direct Deposit Registration (DDR).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>securityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>SecurityQuestionAnswer standards:  <br />- No spaces.  <br />- Length must be between 3 and 25 characters long.  <br />  <br /><strong>Required</strong> if a Security Question is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Reference number supplied by the user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>The store code for Client.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>25  <br />yyyy-mm-dd  <br />OR  <br />yyyy-mm-ddThh:mm:ss.FFFZ</td>\n<td>The transaction's expiry date. This date value is in UTC.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the street address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Indicates the zip/postal code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the city.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the province.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the country.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Recipient</td>\n<td></td>\n<td></td>\n<td>The Receiver Information Section.</td>\n<td></td>\n</tr>\n<tr>\n<td>Recipient &gt;&gt; Name</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates the receivers name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Recipient &gt;&gt; Email</td>\n<td><em>String</em></td>\n<td>64</td>\n<td>Indicicatesthe receivers email.  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Recipient &gt;&gt; phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>The Phone Country Code. <code>1</code> if Canada or USA.  <br />  <br /><strong>Required</strong> if Notification Type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Recipient &gt;&gt; phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Indicates the receivers phone number without Country Code.  <br />  <br /><strong>Required</strong> if Notification Type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>IsSucceeded</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether or not the action was successful.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The etransfer transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Integer</em></td>\n<td>The payee identifier.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Integer</em></td>\n<td>The transaction detail table identifier.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>A description of any error that may occurr.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>String</em></td>\n<td>The validation code.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The clients unique reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE02</td>\n<td>Invalid Email.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE2</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE6</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE8</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE9</td>\n<td>Please Try Again With Different Client Reference Number</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionSenderHighOpE10</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE23</td>\n<td>Invalid Email. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE24</td>\n<td>Invalid Phone Number. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE25</td>\n<td>Invalid Phone Country Code. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE26</td>\n<td>Phone Country Code Not Found.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE27</td>\n<td>Phone Number May Not Exceed 20 Characters.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE28</td>\n<td>Invalid Phone Number.</td>\n</tr>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE16</td>\n<td>Transaction Date Must Be Greater Than The Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE002</td>\n<td>Client Reference Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE53</td>\n<td>Transaction Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE006</td>\n<td>Invalid Date Of Funds.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE3</td>\n<td>Security Question Cannot Contain 'http:', '<a href=\"https://\">https://', 'www</a>.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE6</td>\n<td>Security Question Answer Cannot Contain 'http:', '<a href=\"https://\">https://', 'www</a>.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>ETransferDateControlE01</td>\n<td>Expiry Date Cannot Be Before The Current Date.</td>\n</tr>\n<tr>\n<td>IndividualETransferInsE223</td>\n<td>Expiry Date Cannot Be Bigger Than Etransfer Maximum Expiry Date. Etransfer Maximum Expiry Date: 40 Days.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE1</td>\n<td>Security Question Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE2</td>\n<td>Security Question Cannot Exceed 40 Characters.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE4</td>\n<td>Security Question Answer Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE5</td>\n<td>Security Question Answer May Contain Letters, Digits, Hyphens And French Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE4</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE001</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description Cannot Contain 'http:', '<a href=\"https://\">https://', 'www</a>.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionSenderHighOpE11</td>\n<td>High API Is Not Enabled On This URL.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Invalid Transaction Type Code.</td>\n</tr>\n<tr>\n<td>ReceiverPhoneCountryNotFound</td>\n<td>Receiver Phone Country ID Not Found.</td>\n</tr>\n<tr>\n<td>CountryNotFound</td>\n<td>Country Could Not Be Found.</td>\n</tr>\n<tr>\n<td>ProvienceNotFound</td>\n<td>Provience Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CityNotFound</td>\n<td>City Could Not Be Found.</td>\n</tr>\n<tr>\n<td><strong>V1.1 -</strong> CustomerCreateErrorE30</td>\n<td>Email Cannot Exceed 64 Characters.</td>\n</tr>\n<tr>\n<td><strong>V1.1 -</strong>  <br />CustomerCreateErrorE31</td>\n<td>Invalid Sender Email Format.</td>\n</tr>\n<tr>\n<td><strong>V1.1 -</strong>  <br />CustomerCreateErrorE31</td>\n<td>Invalid Receiver Email Format.</td>\n</tr>\n<tr>\n<td><strong>V1.1 -</strong>  <br />CustomerCreateErrorE33</td>\n<td>Receiver Email Cannot Exceed 64 Characters.</td>\n</tr>\n<tr>\n<td><strong>V1.1 -</strong>  <br />DateValidatorErrorE001</td>\n<td>Invalid Date Of Funds.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","ETransferSender","CreateEtransferTransactionWithSenderHigh"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e00541ae-509e-461c-a0cf-b9a16d6d6193","name":"Create Etransfer Transaction With Sender High 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{    \r\n    \"Sender\": {\r\n        \"name\": \"Berkay New\",\r\n        \"email\": \"pirteyemli@gufum.com\",\r\n        \"phoneCountryCode\": \"1\",\r\n        \"phoneNumber\": \"5555555555\"\r\n    },\r\n   \"priorityTypeCode\": \"0\",\r\n    \"notificationType\": \"0\",\r\n    \"transactionTypeCode\": \"C\",\r\n    \"amount\": 12.00,\r\n    \"dateOfFunds\": \"2023-03-23\",\r\n    \"securityQuestion\": \"What is my favorite color?\",\r\n    \"securityQuestionAnswer\": \"red\",\r\n    \"description\": \"This is my memo\",\r\n    \"ClientReferenceNumber\": \"Ref#1\",\r\n    \"CustomerStoreCode\": null,\r\n    \"MoneyReqExpDate\": \"2023-03-30\",\r\n    \"Address\": \"736 Meridian Road N/A\",\r\n    \"ZipCode\": \"T2A 2N7\",\r\n    \"City\": \"Calgary\",\r\n    \"Province\": \"Alberta\",\r\n    \"Country\": \"Canada\",\r\n    \"Recipient\": {\r\n        \"name\": \"Berkay Payeee\",\r\n        \"email\": \"jovekoce@ema-sofia.eu\",\r\n        \"phoneCountryCode\": \"1\",\r\n        \"phoneNumber\": \"5555555555\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://hsmrcsandbox.dcbank.ca/integrationapi/v1.0/ETransferSender/CreateEtransferTransactionWithSenderHigh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Mar 2023 20:34:37 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.21.6","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": \"\",\n        \"IsSucceeded\": true,\n        \"TransactionId\": 2949888,\n        \"TransactionEtransferId\": 0,\n        \"TransactionReferenceNumber\": 100000000004396093,\n        \"PayeeId\": 0,\n        \"TransactionDetailTableId\": 0,\n        \"ErrorDescription\": null,\n        \"ValidationCode\": null,\n        \"ClientReferenceNumber\": \"Ref#1\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"8bb1dbd8-2501-4320-8974-deb398f878e9"},{"name":"Cancel Etransfer Transaction High","id":"5f7c8fbf-dc97-423c-9fd9-851da3bed188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReferenceNumber\": \"100000000006406299\",\r\n    // \"ClientReferenceNumber\" : \"Ref#33391\"\r\n    \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CancelEtransferTransactionHigh","description":"<h3 id=\"description\">Description</h3>\n<p>CancelETransferTransactionHigh will attempt to cancel the submitted High Performance transaction before it is processed by DCBank and sent to Interac. If the transaction has already been processed by DCBank and sent to Interac, then it will attempt to cancel the e-transfer with Interac. If successfully cancelled a Cancelled status Webhook will be sent and the Transaction's Status will be set to Cancelled.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Reference Number</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Search Etransfer Transaction</strong> API.  <br />Either this Field OR <code>Client Reference Number</code> field is required.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>The Reference Number Supplied by the Client when creating the high performance transaction.  <br />  <br />  <br />Either this Field OR <code>Reference Number</code> field is required.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CancelEtransferTransactionHighOpE10</td>\n<td>No permission to execute this API endpoint.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CancelEtransferTransactionHigh"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"72306390-03bb-4027-8365-b14f0a0ab3bb","name":"Cancel Etransfer Transaction High","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReferenceNumber\": \"100000000006406299\",\r\n    \"ClientReferenceNumber\" : \"Ref#33391\"\r\n    \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CancelEtransferTransactionHigh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Apr 2024 20:39:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.3","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": 1908046,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"5f7c8fbf-dc97-423c-9fd9-851da3bed188"}],"id":"3f36cf58-bbc0-4f01-8bfe-ea60b0752cf1","_postman_id":"3f36cf58-bbc0-4f01-8bfe-ea60b0752cf1","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Parameters","item":[{"name":"Get Security Question","id":"40c73c6f-1d4f-4b68-8489-f74c900a8eac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferSecurityQuestion","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Security Question API retrieves the security question attached to the customer's account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the particular security question.</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>The security question.</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>The answer to the security question.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetEtransferSecurityQuestion"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"91b9fcc7-1971-4b9e-b6ea-6e356680b89b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferSecurityQuestion"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"SecurityQuestionId\": 10054,\n            \"SecurityQuestion\": \"Test Question\",\n            \"SecurityQuestionAnswer\": \"Answer\"\n        },\n        {\n            \"SecurityQuestionId\": 10044,\n            \"SecurityQuestion\": \"What is your favorite book?\",\n            \"SecurityQuestionAnswer\": \"HomoDeus\"\n        },\n        {\n            \"SecurityQuestionId\": 10006,\n            \"SecurityQuestion\": \"What is your favourite animal\",\n            \"SecurityQuestionAnswer\": \"dog\"\n        },\n        {\n            \"SecurityQuestionId\": 10005,\n            \"SecurityQuestion\": \"What 's your favorite color \",\n            \"SecurityQuestionAnswer\": \"red\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"40c73c6f-1d4f-4b68-8489-f74c900a8eac"}],"id":"a477ff05-49a2-476f-b17e-df6c1dd9e8b8","_postman_id":"a477ff05-49a2-476f-b17e-df6c1dd9e8b8","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Incoming Delay/Decision","item":[{"name":"e-Transfer Delay","item":[],"id":"c932b05a-e7ab-4f6f-9a23-9ce31565c0c2","description":"<h3 id=\"description\">Description</h3>\n<p>When an incoming Etransfer transaction hits our system and the Etransfer delay feature is enabled, a webhook will be sent out as part of the delay flow. The data of the webhook can change depending on whether it's a fulfillment of a money request or an autodeposit/account number deposit transaction.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SenderName</td>\n<td>string</td>\n<td>The name of the person/business sending money (Deposit only)</td>\n</tr>\n<tr>\n<td>SenderEmailAddress</td>\n<td>string</td>\n<td>The email of the person/business sending money (Deposit only)</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>string</td>\n<td>The name of the person/business originally contacted (Fulfill only)</td>\n</tr>\n<tr>\n<td>ContactEmailAddress</td>\n<td>string</td>\n<td>The email of the person/business originally contacted (Fulfill only) (May be <a href=\"https://mailto:noreply@dcbank.ca\">noreply@dcbank.ca</a> if suppress notifications are on)</td>\n</tr>\n<tr>\n<td>ContactPhoneNumber</td>\n<td>string</td>\n<td>The phone number of the person/business originally contacted (Fulfill only)</td>\n</tr>\n<tr>\n<td>ResponderName</td>\n<td>string</td>\n<td>The name of the person/business who fulfilled the money request (Fulfill only)</td>\n</tr>\n<tr>\n<td>ResponderEmailAddress</td>\n<td>string</td>\n<td>The email of the person/business who fulfilled the money request (Fulfill only)</td>\n</tr>\n<tr>\n<td>RecipientName</td>\n<td>string</td>\n<td>The name of the person receiving the funds</td>\n</tr>\n<tr>\n<td>RecipientEmailAddress</td>\n<td>string</td>\n<td>The email address of the person receiving the funds</td>\n</tr>\n<tr>\n<td>UnstructuredRemittance</td>\n<td>string</td>\n<td>Commonly referred to as description, given by the other FI or when the money request was being created</td>\n</tr>\n<tr>\n<td>InteracReference</td>\n<td>string</td>\n<td>The incoming Interac reference</td>\n</tr>\n<tr>\n<td>RequestReference</td>\n<td>string</td>\n<td>The Interac reference originally created with the money request (Fulfill only)</td>\n</tr>\n<tr>\n<td>DCBankReferenceNumber</td>\n<td>long</td>\n<td>DCBanks internal reference number. (Fulfill only)</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td>string</td>\n<td>The ClientReferenceNumber provided when creating the money request. If none was provided, this will be DCBank's internal reference number. (Fulfill only)</td>\n</tr>\n<tr>\n<td>InteracContactTime</td>\n<td>DateTime</td>\n<td>The time when Interac contacted DCBank, and signifies the start of the countdown for responding to DCBank for acceptance/rejection. Time is in UTC.  <br />  <br />Format: YYYY-MM-DDTHH:mm:ss.FFFFFFF  <br />  <br />Example: 2024-08-27T21:54:20.5902821</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td>string</td>\n<td>Signifies whether the transaction is either 'Request Money' or 'Send Money'</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>string</td>\n<td>The type of transaction. Request Money will always be \"Fulfill\". Money Sends can be 'AutoDeposit', 'AccountDeposit', or 'UnknownType'</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>decimal</td>\n<td>The amount being sent to the recipient</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-fulfill-payload\">Example Fulfill Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ContactName\": \"Contact Person\",\n  \"ContactEmailAddress\": \"moneycontactor@dcbank.ca\",\n  \"ResponderName\": \"Responder Person\",\n  \"ResponderEmailAddress\": \"moneyresponder@dcbank.ca\",\n  \"RecipientName\": \"Fulfill Test\",\n  \"RecipientEmailAddress\": \"interactesting@dcbank.ca\",\n  \"UnstructuredRemittance\": \"TEST WEBHOOK #1\",\n  \"InteracReference\": \"C1F8JpU3DzzB\",\n  \"RequestReference\": \"CA1MRpEzyngw\",\n  \"DCBankReferenceNumber\": 100000000007538166,\n  \"ClientReferenceNumber\": \"TEST WEBHOOK #1\",\n  \"InteracContactTime\": \"2024-08-23T17:44:59.2037549\",\n  \"TransactionType\": \"Request Money\",\n  \"PaymentType\": \"Fulfill\",\n  \"Amount\": 0.01\n}\n\n</code></pre>\n<h3 id=\"example-autodeposit-payload\">Example Autodeposit Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"SenderName\": \"Interac Tester\",\n  \"SenderEmailAddress\": \"moneysender@dcbank.ca\",\n  \"RecipientName\": \"Autodeposit Test\",\n  \"RecipientEmailAddress\": \"interactesting@dcbank.ca\",\n  \"UnstructuredRemittance\": \"TEST WEBHOOK #1\",\n  \"InteracReference\": \"C1AqxJEddzxe\",\n  \"InteracContactTime\": \"2024-08-23T16:33:27.4131442\",\n  \"TransactionType\": \"Send Money\",\n  \"PaymentType\": \"AutoDeposit\",\n  \"Amount\": 0.01\n}\n\n</code></pre>\n","_postman_id":"c932b05a-e7ab-4f6f-9a23-9ce31565c0c2","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"FulfillDelay Confirmation","id":"ede51765-4b54-479a-93bc-08858258665f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Confirmation\": true,\r\n    \"InteracReferenceNumber\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/FulfillDelayConfirmation","description":"<h3 id=\"description\">Description</h3>\n<p>The FulfillDelay Confirmation is used with the ETransfer Delay Decision system, where this API can be used to reject or accept incoming fulfillments or incoming money sends. This decision is final and the same transaction cannot be updated multiple times, and is only applicable to non real-time transactions.</p>\n<p>Decisions are subject to times when Interac retries the transaction.</p>\n<ul>\n<li><p>Fast retries: Every 30 seconds (3x)</p>\n</li>\n<li><p>Delayed retries: Every 15 minutes</p>\n</li>\n</ul>\n<p><i>Note:</i> There is a maximum time of 60 minutes from the InteracContactTime before a decision must be reached, failure to apply a final decision will apply the default state as stated in your contract/settings.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Confirmation</td>\n<td>boolean</td>\n<td></td>\n<td>The indicator as to whether to accept the transaction (<code>True</code>) or reject the transaction (<code>False</code>).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td>string</td>\n<td></td>\n<td>The incoming Interac Reference Number provided inside the webhook.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FulfillDelayConfirmationE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>FulfillDelayConfirmationE2</td>\n<td>Interac Reference Number Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>FulfillDelayConfirmationE3</td>\n<td>Interac Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>FulfillDelayConfirmationE6</td>\n<td>Unable To Get Connection Parameters.</td>\n</tr>\n<tr>\n<td>FulfillDelayConfirmationE7</td>\n<td>Incoming Transaction Not Found.</td>\n</tr>\n<tr>\n<td>FulfillDelayConfirmationE8</td>\n<td>Transaction Cannot Be Updated When In A Non-Pending State.</td>\n</tr>\n<tr>\n<td>FulfillDelayConfirmationE9</td>\n<td>More Than 1 Hour And 5 Minutes Has Passed Since Initial Contact Time. Cannot Update.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","FulfillDelayConfirmation"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3759e4ea-46d4-4625-bf80-a275b6f6cce9","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Confirmation\": true,\r\n    \"InteracReferenceNumber\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/FulfillDelayConfirmation"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ede51765-4b54-479a-93bc-08858258665f"}],"id":"059ac5b1-1e23-48f9-a4b9-ee480ef11ff7","_postman_id":"059ac5b1-1e23-48f9-a4b9-ee480ef11ff7","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Other","item":[{"name":"Contact","item":[{"name":"Create Contact","id":"07776916-660d-4642-bb25-d962983e486e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactTypeCode\": \"P\",\n    \"PreferredLanguageId\": 2000,\n    \"FirstName\": \"Craig\",\n    \"MiddleName\": \"\",\n    \"LastName\": \"Whitby\",\n    \"BirthDate\": \"1980-01-24\",\n    \"CompanyName\": \"\",\n    \"TradeName\": \"\",\n    \"Email\": \"dummy@somedomain.com\",\n    \"PhoneNumber\": \"1 555-555-5555\",\n    \"Address1\": \"1234 Airdrie Street SW\",\n    \"Address2\": \"Apt 3000\",\n    \"ZipCode\": \"T4B3S3\",\n    \"CountryId\": 38,\n    \"ProvinceId\": 663,\n    \"CityId\": 10093\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferContact","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Contact API creates a contact for e-Transfer's.</p>\n<p><b>Note:</b> The number returned in the Response Body will be the <code>ContactId</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customer's number that this contact should be connected to. This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of the Contact:  <br /><code>P</code> Personal/ Individual  <br /><code>C</code> Corporate Contact.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The personal contact's first name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code>is <code>P</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The personal contact's middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The personal contact's last name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code>is <code>P</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The personal contact's date of birth.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The corporate contact's company name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code>is <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>TradeName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The corporate contact's trade name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code>is <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>The contact's e-mail address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>12</td>\n<td>The contact's phone number, including the country code.  <br />  <br /><code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The contact's address line #1.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The contact's address line #2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>9</td>\n<td>The contact's zip/postal code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Integer</em></td>\n<td>3</td>\n<td>The contact's country ID.  <br />  <br />This value can be retrieved using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>The contact's province.  <br />  <br />This value can be retrieved using the <strong>Parameter -&gt; Get Province List By Country</strong> API.  <br />  <br /><strong>Required</strong> if <code>CountryId</code> is <strong>CA</strong>, <strong>USA</strong> or <strong>MEX</strong>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>7</td>\n<td>The contact's city.  <br />  <br />This value can be retrieved using the <strong>Parameter -&gt; Get City List By Province</strong> API.  <br />  <br /><strong>Required</strong> if <code>CountryId</code> is <strong>MEX</strong>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PreferredLanguageId</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>The contact's preferred language:  <br /><code>2000</code> English  <br /><code>2001</code> French</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferPayeeE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferPayeeE2</td>\n<td>Contact Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferPayeeE3</td>\n<td>Phone Number Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferPayeeE4</td>\n<td>Phone Number Country Is Invalid.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeCheckE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeCheckE1</td>\n<td>Client Type Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeCheckE2</td>\n<td>Program Code Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE1</td>\n<td>Customer Payee Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CreateEtransferContact"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8299aa5a-872a-445e-ab30-65ec8d9f365f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"CustomerNumber\": \"0220000017\",\n   \"ContactTypeCode\": \"P\", \n   \"PrefferedLanguageId\": 2000, \n   \"FirstName\": \"Craig\", \n   \"MiddleName\": \"\", \n   \"LastName\": \"Whitby\", \n   \"BirthDate\": \"1980-01-24\", \n   \"CompanyName\": \"\", \n   \"TradeName\": \"\", \n   \"Email\": \"dummy@somedomain.com\", \n   \"PhoneNumber\": \"1 555-555-5555\", \n   \"Address1\": \"1234 Airdrie Street SW\", \n   \"Address2\": \"Apt 3000\", \n   \"ZipCode\": \"T4B3S3\", \n   \"CountryId\": 38, \n   \"ProvinceId\": 663, \n   \"CityId\": 10093 \n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferContact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 291,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"07776916-660d-4642-bb25-d962983e486e"},{"name":"Update Contact","id":"56c2e21a-e89d-4c78-856e-d9563222679e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ContactId\": 291,\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactTypeCode\": \"P\",\n    \"PreferredLanguageId\": 2000,\n    \"FirstName\": \"Craig\",\n    \"MiddleName\": \"\",\n    \"LastName\": \"Whitby\",\n    \"BirthDate\": \"1980-01-24\",\n    \"CompanyName\": \"\",\n    \"TradeName\": \"\",\n    \"Email\": \"dummy@somedomain.com\",\n    \"PhoneNumber\": \"1 555-555-5555\",\n    \"Address1\": \"1234 Airdrie Street SW\",\n    \"Address2\": \"Apt 3000\",\n    \"ZipCode\": \"T4B3S3\",\n    \"CountryId\": 38,\n    \"ProvinceId\": 663,\n    \"CityId\": 10093\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/UpdateEtransferContact","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Contact API updates the e-Transfer contact.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The contact's unique ID.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The number of the customer this contact should be connected to. This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type of the Contact:  <br /><code>P</code> Personal/ Individual,  <br /><code>C</code> Corporate Contact.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The personal contact's first name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code> is <code>P</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The personal contact's middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The personal contact's last name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code> is <code>P</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The personal contact's date of birth.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The corporate contact's company name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code> is <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>TradeName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The corporate contact's trade name.  <br />  <br /><strong>Required</strong> if <code>Contact Type Code</code> is <code>C</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>The contact's email address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>12</td>\n<td>The contact's phone number, including the country code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The contact's address line #1.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The contact's address line #2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>9</td>\n<td>The contact's zip/postal code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Integer</em></td>\n<td>3</td>\n<td>The contact's country.  <br />  <br />This value can be retrieved using the <strong>Parameter -&gt; Get Country List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>The contact's province.  <br />  <br />This value can be retrieved using the <strong>Parameter -&gt; Get Province List By Country</strong> API.  <br />  <br /><strong>Required</strong> if <code>CountryId</code> is <strong>CA</strong>, <strong>USA</strong> or <strong>MEX</strong>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>7</td>\n<td>The contact's city.  <br />  <br />This value can be retrieved using the <strong>Parameter -&gt; Get City List By Province</strong> API.  <br />  <br /><strong>Required</strong> if <code>CountryId</code> is <strong>MEX</strong>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PreferredLanguageId</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>The contact's preferred language:  <br /><code>2000</code> English  <br /><code>2001</code> French</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateEtransferPayeeE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>UpdateEtransferPayeeE2</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>UpdateEtransferPayeeE3</td>\n<td>Contact Type Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateEtransferPayeeE4</td>\n<td>Phone Number Is Invalid.</td>\n</tr>\n<tr>\n<td>UpdateEtransferPayeeE5</td>\n<td>Phone Number Country Is Invalid.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeCheckE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeCheckE2</td>\n<td>Program Code Must Be Filled.</td>\n</tr>\n<tr>\n<td>ClientCustomerPayeeE1</td>\n<td>Customer Payee Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","UpdateEtransferContact"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"49e0aa58-e961-446c-8073-a7c8db44b9bb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ContactId\": 291,\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactTypeCode\": \"P\",\n    \"PreferredLanguageId\": 2000,\n    \"FirstName\": \"Craig\",\n    \"MiddleName\": \"\",\n    \"LastName\": \"Whitby\",\n    \"BirthDate\": \"1980-01-24\",\n    \"CompanyName\": \"\",\n    \"TradeName\": \"\",\n    \"Email\": \"dummy@somedomain.com\",\n    \"PhoneNumber\": \"1 555-555-5555\",\n    \"Address1\": \"1234 Airdrie Street SW\",\n    \"Address2\": \"Apt 3000\",\n    \"ZipCode\": \"T4B3S3\",\n    \"CountryId\": 38,\n    \"ProvinceId\": 663,\n    \"CityId\": 10093\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/UpdateEtransferContact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"ErrorCode\": \"0\",\n\t\"ErrorDescription\": \"Successfull\",\n\t\"StackTrace\": null,\n\t\"IsSucceeded\": true,\n\t\"ErrorList\": [],\n\t\"ParameterList\": []\n}"}],"_postman_id":"56c2e21a-e89d-4c78-856e-d9563222679e"},{"name":"Delete Contact","event":[{"listen":"prerequest","script":{"id":"0d4cb231-70ac-4bff-a35d-507c3b368c09","exec":[""],"type":"text/javascript"}}],"id":"b27d256f-c645-4664-a1fa-e33aaeb61ce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"123\",\n    \"ContactId\": 654\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DeleteEtransferContact","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete Contact API deletes an e-Transfer contact.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Get ETransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Get ETransfer Contact</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DeleteEtransferContactE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>DeletePayeeE1</td>\n<td>Payee Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","DeleteEtransferContact"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bdf03254-e1f1-4ec9-9483-f642d8942f0b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactId\": 293\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DeleteEtransferContact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b27d256f-c645-4664-a1fa-e33aaeb61ce9"},{"name":"Get Contact List","id":"0d441f6f-4776-4724-a4fb-cd0bd1fe208c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10026666666\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferContact","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Contact List API takes in the CustomerNumber as a parameter and returns a list of that customers' contacts and their respective information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customers unique number.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get ETransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>The contacts unique identifier.</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The contacts full name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The contacts email.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The contacts date of birth.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The contacts phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The street address for the contact.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The street address for the contact.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip/postalcode in which the contact resides.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the contact resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the contact resides.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the contact resides.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetEtransferContact"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b44084fb-7e59-4c1d-ad06-e853ea0142b9","name":"Create Contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CustomerNumber\": \"10026666666\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferContact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 15:12:24 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"CustomerNumber\": \"10026666666\",\n            \"ContactId\": 7,\n            \"ContactName\": \"Contact Name\",\n            \"Email\": \"shawnCustTest1@test.ca\",\n            \"BirthDate\": \"1987-03-07T00:00:00\",\n            \"PhoneNumber\": \"+1 5436754356\",\n            \"AddressLine1\": \"string\",\n            \"AddressLine2\": \"string\",\n            \"ZipCode\": null,\n            \"City\": \"\",\n            \"Province\": \"\",\n            \"Country\": \"\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"0d441f6f-4776-4724-a4fb-cd0bd1fe208c"}],"id":"ea5f8504-988f-4b61-a6e9-a21a3ab846a9","_postman_id":"ea5f8504-988f-4b61-a6e9-a21a3ab846a9","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Auto Deposit","item":[{"name":"Direct Deposit Registration","id":"e7969a47-f4c8-461a-9957-b8cf50a29825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"InteracEmail\": \"{{email_address}}\",\n    \"WalletAccountId\": 12345,\n    \"ServiceType\": \"Email\",\n    \"Phone\": \"4032154871\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DirectDepositRegistration","description":"<h3 id=\"description\">Description</h3>\n<p>The Direct Deposit Registration (DDR) API registers the customer for DDR. Client's API can use API when they have already registered for DDR but still receives the \"Active ETransfer Customer not found\" warning while using <strong>/ETransfer/CreateEtransferTransaction</strong> .</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>InteracEmail</td>\n<td><em>String</em></td>\n<td>50</td>\n<td>The customer's Interac email. This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>WalletAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID of the Wallet Account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ServiceType</td>\n<td><em>Enum</em></td>\n<td>-</td>\n<td>Specify direct deposit type:  <br /><code>PHONE</code>- registration by phone number.  <br /><code>EMAIL</code> - registration by email.  <br />  <br />Default value is <code>EMAIL</code>.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Must be a valid canadian phone number for auto-deposit  <br />(###-###-####)  <br />  <br /><strong>Required</strong> if Service Type = <code>PHONE</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DirectDepositRegistrationE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EmailLengthControlE01</td>\n<td>Email Cannot Exceed 50 Characters.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>DirectDepositRegistrationE2</td>\n<td>Wallet Account ID Is Required.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","DirectDepositRegistration"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7d8c02ea-5846-4ce8-8672-d102d2018944","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"InteracEmail\": \"{{email_address}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/DirectDepositRegistration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e7969a47-f4c8-461a-9957-b8cf50a29825"},{"name":"Check Direct Deposit Registration","id":"9e86a88e-ada6-459f-83f5-ae086e5aa974","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactId\": 67\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/ContactAdrStatus","description":"<h3 id=\"description\">Description</h3>\n<p>The Check Direct Deposit Registration API determines whether or not the contact has a Direct Deposit Registration (DDR).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NotificationType</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The way in which a notification will be received by the recepient:  <br /><code>0</code> Email,  <br /><code>1</code> SMS.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsContactHaveDdrE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>IsContactHaveDdrE2</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>IsContactHaveDdrE3</td>\n<td>Notification Phone Number/Email Not Found.</td>\n</tr>\n<tr>\n<td>IsContactHaveDdrE9</td>\n<td>Customer Direct Deposit Handle Not Found.</td>\n</tr>\n<tr>\n<td>ActiveEtransferSenderRecordE01</td>\n<td>Active Etransfer Sender Record Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","ContactAdrStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"30756a01-39da-4e51-990b-435b6c3a9b42","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactId\": 67\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/ContactAdrStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": false,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"9e86a88e-ada6-459f-83f5-ae086e5aa974"}],"id":"1a8e2d7b-4ae8-44b2-9296-cec549580045","_postman_id":"1a8e2d7b-4ae8-44b2-9296-cec549580045","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Interac In-App Transaction Completion","id":"2f8ec3e4-87ef-409e-9f03-7a0c682280ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ReferenceNumber\": \"100000000126742429\",\r\n    \"TransactionId\":\"15611400\",\r\n    \"FromDate\": \"2021-12-02\",\r\n    \"ToDate\":\"2021-12-02\",\r\n    \"ClientCustomerNumber\":\"10220000697\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/InteracUrlApi","description":"<h3 id=\"description\">Description</h3>\n<p>This API allows an application to initiate an Interac ETransfer or Money Request.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The transactions reference number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The start date of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The clients unique customer number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The \"CA\" interac reference number.</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>indicates the type of transaction, a money send or a money request.</td>\n</tr>\n<tr>\n<td>BankTransactionStatus</td>\n<td><em>String</em></td>\n<td>The bank status of the transaction.</td>\n</tr>\n<tr>\n<td>BankTransactionStatusParamValue</td>\n<td><em>String</em></td>\n<td>The status parameter of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>Url</td>\n<td><em>String</em></td>\n<td>The gateway URL.</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The name of the contact.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the contact.</td>\n</tr>\n<tr>\n<td>TransactionStatus</td>\n<td><em>String</em></td>\n<td>The status of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the transaction status.</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients unique customer number.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the transaction.</td>\n</tr>\n<tr>\n<td>CustomerEmail</td>\n<td><em>String</em></td>\n<td>The email of the customer.</td>\n</tr>\n<tr>\n<td>DirectionStatus</td>\n<td><em>String</em></td>\n<td>The direction funds are moving. <code>Incoming</code> or <code>Outgoing</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InteracUrlApiOpE2</td>\n<td>From Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InteracUrlApiOpE3</td>\n<td>To Date Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InteracUrlApiOpE6</td>\n<td>Customer not found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","InteracUrlApi"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"866eb628-28d7-4d3c-b172-2383a86332da","name":"Interac In-App Transaction Completion","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ReferenceNumber\": \"100000000126742429\",\r\n    \"TransactionId\":\"\",\r\n    \"FromDate\": \"\",\r\n    \"ToDate\":\"\",\r\n    \"ClientCustomerNumber\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/InteracUrlApi"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Dec 2021 20:06:57 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"468","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=4a686babf170cab898f6db045c489b03fd905da71e885f1130cb67aab571939a;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"TransactionDate\": \"2021-12-02T19:01:43.308785\",\n            \"InteracReferansNumber\": \"CA1MRzp2gpAH\",\n            \"ReferenceNumber\": \"100000000126742429\",\n            \"TransactionType\": \"Money Request\",\n            \"BankTransactionStatus\": \"Sent\",\n            \"BankTransactionStatusParamValue\": \"S\",\n            \"TransactionAmount\": 130,\n            \"Url\": \"https://gateway-web.fit.interac.ca/acceptPaymentRequest.do?rID=CA1MRzp2gpAH&src=email\",\n            \"ContactName\": \"API URL Testing\",\n            \"ContactId\": 8550,\n            \"TransactionStatus\": \"Sent\",\n            \"TransactionStatusId\": 14001,\n            \"ClientCustomerNumber\": \"10220000697\",\n            \"TransactionId\": 15611400,\n            \"CustomerEmail\": \"bepih38632@slvlog.com\",\n            \"DirectionStatus\": \"Outgoing\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"2f8ec3e4-87ef-409e-9f03-7a0c682280ec"},{"name":"Interac Autodeposit Registration","id":"ccfa3e1a-9e4a-4c9e-808a-941fcda50c34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"// DEPRECATED PLEASE USE GetCustomerDdrRegistration\r\n{\r\n    \"Email\" : \"craig@dcbank.ca\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/InteracAutodepositRegistration","description":"<p>DEPRECATED. PLEASE USE GetCustomerDdrRegistration ENDPOINT</p>\n","urlObject":{"path":["integrationapi","v1.0","ETransfer","InteracAutodepositRegistration"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ccfa3e1a-9e4a-4c9e-808a-941fcda50c34"},{"name":"Get Customer DDR Registration","id":"3f2d018a-668c-4646-bcd5-fddf14b749c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n \"Email\" : \"test@test.ca\",\r\n//  \"Phone\":\"Phone\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/ETransfer/GetCustomerDdrRegistration","description":"<h3 id=\"description\">Description</h3>\n<p><strong>Version 1.0</strong> -- Customer DDR Registration API that checks if the Email has a direct deposit registration with Interac.</p>\n<p><strong>Version 1.1</strong> -- Customer DDR Registration API that checks either the Email or Phone Number has a direct deposit registration with Interac.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Customer's email.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Phone <strong>(v1.1)</strong></td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Customer's phone number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HasDDR</td>\n<td><em>Boolean</em></td>\n<td>Indicates whether or not the customer is DDR registered.  <br />A <code>True</code> or <code>False</code> value.</td>\n</tr>\n<tr>\n<td>RegistrationName</td>\n<td><em>String</em></td>\n<td>The customers registration name.</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>The customers legal name. Includes: first name, middle name, last name if <code>(P - Personal)</code> and company name, trade name if <code>(C - Corporate)</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetCustomerDdrRegistrationOpE1</td>\n<td>Incorrect Email Format.</td>\n</tr>\n<tr>\n<td>GetCustomerDdrRegistrationOpE2</td>\n<td>Error From Interac - API Call Failed.</td>\n</tr>\n<tr>\n<td>GetCustomerDdrRegistrationRequestV11E1 <strong>(v1.1)</strong></td>\n<td>Incorrect Email Format.</td>\n</tr>\n<tr>\n<td>GetCustomerDdrRegistrationRequestV11E2 <strong>(v1.1)</strong></td>\n<td>Error From Interac - API Call Failed.</td>\n</tr>\n<tr>\n<td>GetCustomerDdrRegistrationRequestV11E3 <strong>(v1.1)</strong></td>\n<td>Either Email OR Phone Number Can Be Checked, Not Both.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","ETransfer","GetCustomerDdrRegistration"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1a3f2aa1-d008-4386-9211-e86a672d343a","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Email\" : \"craig.etransfers@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetCustomerDdrRegistration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Aug 2022 16:47:31 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"HasDDR\": true,\n        \"RegistrationName\": \"DCBank eTransfer Demo\",\n        \"LegalName\": {\n            \"FirstName\": null,\n            \"MiddleName\": null,\n            \"LastName\": null,\n            \"CompanyName\": \"DCBank eTransfer Demo\",\n            \"TradeName\": null\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3f2d018a-668c-4646-bcd5-fddf14b749c0"},{"name":"GetInteracHistory","id":"e78471f5-647a-4e17-af96-2c571d7c93b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    // \"ReferenceNumber\": 100000000007110134,\r\n    // \"InteracReference\": \"CADmV4RT\"\r\n     \"ClientReference\": \"kimtestt10842\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/GetEtransferStatusHistory","description":"<h3 id=\"description\">Description</h3>\n<p>Search for complete etransfer transaction history</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>18 digits</td>\n<td>Bank reference.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InteracReference</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Interac reference.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Client  <br />Reference.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>Bank reference.</td>\n</tr>\n<tr>\n<td>InteracReference</td>\n<td><em>String</em></td>\n<td>Interac reference.</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>Client reference.</td>\n</tr>\n<tr>\n<td>StatusCode</td>\n<td><em>Short</em></td>\n<td>Status number.</td>\n</tr>\n<tr>\n<td>StatusDescription</td>\n<td><em>String</em></td>\n<td>Status description.</td>\n</tr>\n<tr>\n<td>StatusChangeDate</td>\n<td><em>DateTime</em></td>\n<td>Status change date.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferStatusHistoryOpErr01</td>\n<td>Empty Request.</td>\n</tr>\n<tr>\n<td>EtransferStatusHistoryOpErr02</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>EtransferStatusHistoryOpErr03</td>\n<td>No History Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","GetEtransferStatusHistory"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e78471f5-647a-4e17-af96-2c571d7c93b5"}],"id":"0d1c7729-b2df-45c3-9dfd-4c02a3a6dce2","_postman_id":"0d1c7729-b2df-45c3-9dfd-4c02a3a6dce2","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"0c2babe3-d962-4cfe-a9bc-55e678825eaa","description":"<p>An Interac e-Transfer is a convenient and secure way to send money electronically within Canada. With just an email address or mobile phone number, you can transfer funds directly from your bank account to another person or business.</p>\n<p>Plus, with robust encryption and authentication measures in place, you can trust that your money and personal information are kept safe throughout the process. Experience the ease and reliability of Interac e-Transfer for all your payment needs.</p>\n","_postman_id":"0c2babe3-d962-4cfe-a9bc-55e678825eaa","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Accounts","item":[{"name":"Get All Account","id":"35833d91-92cd-4805-b838-489d9f1848fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetAllAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Account API retrieves a list of All Account for the client.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The accounts unique identifier.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The unique client identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The client customer number.</td>\n</tr>\n<tr>\n<td>CustomerBusinessType</td>\n<td><em>String</em></td>\n<td>The customer business type.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>AccountSequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The account sequence number.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The name of the account owner.</td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The account expiry.</td>\n</tr>\n<tr>\n<td>AccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance in the account.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account.</td>\n</tr>\n<tr>\n<td>AccountStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The accounts status code.</td>\n</tr>\n<tr>\n<td>AccountStatusDescription</td>\n<td><em>String</em></td>\n<td>A description of the accounts status code.</td>\n</tr>\n<tr>\n<td>LastUpdated</td>\n<td><em>DateTime</em></td>\n<td>Date account was last updated.</td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Numeric</em></td>\n<td>The client customer identifier.</td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>The currency identifier.</td>\n</tr>\n<tr>\n<td>IsCurrencySupported</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating if the account currency code is supposed.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>Numeric</em></td>\n<td>The currency code, indicating the currency of the funds in the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","GetAllAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e183df13-7c92-4627-923b-69f9a7ac3eb3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetAllAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n    \t{\n\t        \"AccountId\": 12345,\n\t        \"UniqueClientId\": 12345,\n\t        \"CustomerNumber\": 12345,\n\t        \"ClientCustomerNumber\": \"\",\n\t        \"CustomerBusinessType\": \"\",\n\t        \"AccountNumber\": \"\",\n\t        \"AccountSequenceNumber\": 123,\n\t        \"AccountOwnerName\": \"\",\n\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"AccountBalance\": 123.00,\n\t        \"AccountStatus\": 0,\n\t        \"AccountStatusCode\": \"\",\n\t        \"AccountStatusDesc\": \"\",\n\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"ClientCustomerId\": 12345,\n\t        \"CurrencyId\": 12345,\n\t        \"IsCurrencySupported\": true,\n\t        \"SwitchCurrencyCode\": \"\",\n\t        \"CurrencyCode\": \"\"\n    \t},\n    \t{\n\t        \"AccountId\": 12345,\n\t        \"UniqueClientId\": 12345,\n\t        \"CustomerNumber\": 12345,\n\t        \"ClientCustomerNumber\": \"\",\n\t        \"CustomerBusinessType\": \"\",\n\t        \"AccountNumber\": \"\",\n\t        \"AccountSequenceNumber\": 123,\n\t        \"AccountOwnerName\": \"\",\n\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"AccountBalance\": 123.00,\n\t        \"AccountStatus\": 0,\n\t        \"AccountStatusCode\": \"\",\n\t        \"AccountStatusDesc\": \"\",\n\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"ClientCustomerId\": 12345,\n\t        \"CurrencyId\": 12345,\n\t        \"IsCurrencySupported\": true,\n\t        \"SwitchCurrencyCode\": \"\",\n\t        \"CurrencyCode\": \"\"\n    \t},\n    \t{\n\t        \"AccountId\": 12345,\n\t        \"UniqueClientId\": 12345,\n\t        \"CustomerNumber\": 12345,\n\t        \"ClientCustomerNumber\": \"\",\n\t        \"CustomerBusinessType\": \"\",\n\t        \"AccountNumber\": \"\",\n\t        \"AccountSequenceNumber\": 123,\n\t        \"AccountOwnerName\": \"\",\n\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"AccountBalance\": 123.00,\n\t        \"AccountStatus\": 0,\n\t        \"AccountStatusCode\": \"\",\n\t        \"AccountStatusDesc\": \"\",\n\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"ClientCustomerId\": 12345,\n\t        \"CurrencyId\": 12345,\n\t        \"IsCurrencySupported\": true,\n\t        \"SwitchCurrencyCode\": \"\",\n\t        \"CurrencyCode\": \"\"\n    \t}\n\t],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"35833d91-92cd-4805-b838-489d9f1848fd"},{"name":"Get Main Account","id":"55ac1124-1d6e-4585-8618-43cfe3dd8e0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetMainAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Main Account API retrieves the main account information for the client.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The accounts unique identifier.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The unique client identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The client customer number.</td>\n</tr>\n<tr>\n<td>CustomerBusinessType</td>\n<td><em>String</em></td>\n<td>The customer business type.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>AccountSequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The account sequence number.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The name of the account owner.</td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The account expiry.</td>\n</tr>\n<tr>\n<td>AccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance in the account.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account.</td>\n</tr>\n<tr>\n<td>AccountStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The accounts status code.</td>\n</tr>\n<tr>\n<td>AccountStatusDescription</td>\n<td><em>String</em></td>\n<td>A description of the accounts status code.</td>\n</tr>\n<tr>\n<td>LastUpdated</td>\n<td><em>DateTime</em></td>\n<td>Date account was last updated.</td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Numeric</em></td>\n<td>The client customer identifier.</td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>The currency identifier.</td>\n</tr>\n<tr>\n<td>IsCurrencySupported</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating if the account currency code is supposed.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>Numeric</em></td>\n<td>The currency code, indicating the currency of the funds in the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","GetMainAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5357fef9-c839-47c5-a644-cc96a8f045ea","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetMainAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AccountId\": 12345,\n        \"UniqueClientId\": 12345,\n        \"CustomerNumber\": 12345,\n        \"ClientCustomerNumber\": \"\",\n        \"CustomerBusinessType\": \"\",\n        \"AccountNumber\": \"\",\n        \"AccountSequenceNumber\": 123,\n        \"AccountOwnerName\": \"\",\n        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n        \"AccountBalance\": 123.00,\n        \"AccountStatus\": 0,\n        \"AccountStatusCode\": \"\",\n        \"AccountStatusDesc\": \"\",\n        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n        \"ClientCustomerId\": 12345,\n        \"CurrencyId\": 12345,\n        \"IsCurrencySupported\": true,\n        \"SwitchCurrencyCode\": \"\",\n        \"CurrencyCode\": \"\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"55ac1124-1d6e-4585-8618-43cfe3dd8e0e"},{"name":"Get All Sub Account","id":"dee231e0-5777-4209-93b2-c8d3cc45ebe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetAllSubAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Sub Account API retrieves a list of all Sub-Account for the client.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The accounts unique identifier.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The unique client identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The unique customer number.</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The client customer number.</td>\n</tr>\n<tr>\n<td>CustomerBusinessType</td>\n<td><em>String</em></td>\n<td>The customer business type.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>AccountSequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The account sequence number.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The name of the account owner.</td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>The account expiry.</td>\n</tr>\n<tr>\n<td>AccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance in the account.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account.</td>\n</tr>\n<tr>\n<td>AccountStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The accounts status code.</td>\n</tr>\n<tr>\n<td>AccountStatusDescription</td>\n<td><em>String</em></td>\n<td>A description of the accounts status code.</td>\n</tr>\n<tr>\n<td>LastUpdated</td>\n<td><em>DateTime</em></td>\n<td>Date account was last updated.</td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Numeric</em></td>\n<td>The client customer identifier.</td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>The currency identifier.</td>\n</tr>\n<tr>\n<td>IsCurrencySupported</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating if the account currency code is supposed.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>Numeric</em></td>\n<td>The currency code, indicating the currency of the funds in the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","GetAllSubAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dca8ee7a-e60b-41cc-8201-6083e7d1d920","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetAllSubAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"MainAccountOwnerName\": \"\",\n        \"MainAccountId\": 12345,\n        \"MainAccountNumber\": \"\",\n        \"MainAccountBalance\": 123.00,\n        \"CdicAccountList\": [\n\t\t\t{\n\t\t        \"AccountId\": 12345,\n\t\t        \"UniqueClientId\": 12345,\n\t\t        \"CustomerNumber\": 12345,\n\t\t        \"ClientCustomerNumber\": \"\",\n\t\t        \"CustomerBusinessType\": \"\",\n\t\t        \"AccountNumber\": \"\",\n\t\t        \"AccountSequenceNumber\": 123,\n\t\t        \"AccountOwnerName\": \"\",\n\t\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\t        \"AccountBalance\": 123.00,\n\t\t        \"AccountStatus\": 0,\n\t\t        \"AccountStatusCode\": \"\",\n\t\t        \"AccountStatusDesc\": \"\",\n\t\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\t        \"ClientCustomerId\": 12345,\n\t\t        \"CurrencyId\": 12345,\n\t\t        \"IsCurrencySupported\": true,\n\t\t        \"SwitchCurrencyCode\": \"\",\n\t\t        \"CurrencyCode\": \"\"\n\t    \t},\n\t    \t{\n\t\t        \"AccountId\": 12345,\n\t\t        \"UniqueClientId\": 12345,\n\t\t        \"CustomerNumber\": 12345,\n\t\t        \"ClientCustomerNumber\": \"\",\n\t\t        \"CustomerBusinessType\": \"\",\n\t\t        \"AccountNumber\": \"\",\n\t\t        \"AccountSequenceNumber\": 123,\n\t\t        \"AccountOwnerName\": \"\",\n\t\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\t        \"AccountBalance\": 123.00,\n\t\t        \"AccountStatus\": 0,\n\t\t        \"AccountStatusCode\": \"\",\n\t\t        \"AccountStatusDesc\": \"\",\n\t\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\t        \"ClientCustomerId\": 12345,\n\t\t        \"CurrencyId\": 12345,\n\t\t        \"IsCurrencySupported\": true,\n\t\t        \"SwitchCurrencyCode\": \"\",\n\t\t        \"CurrencyCode\": \"\"\n\t    \t},\n\t    \t{\n\t\t        \"AccountId\": 12345,\n\t\t        \"UniqueClientId\": 12345,\n\t\t        \"CustomerNumber\": 12345,\n\t\t        \"ClientCustomerNumber\": \"\",\n\t\t        \"CustomerBusinessType\": \"\",\n\t\t        \"AccountNumber\": \"\",\n\t\t        \"AccountSequenceNumber\": 123,\n\t\t        \"AccountOwnerName\": \"\",\n\t\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\t        \"AccountBalance\": 123.00,\n\t\t        \"AccountStatus\": 0,\n\t\t        \"AccountStatusCode\": \"\",\n\t\t        \"AccountStatusDesc\": \"\",\n\t\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\t        \"ClientCustomerId\": 12345,\n\t\t        \"CurrencyId\": 12345,\n\t\t        \"IsCurrencySupported\": true,\n\t\t        \"SwitchCurrencyCode\": \"\",\n\t\t        \"CurrencyCode\": \"\"\n\t    \t}\n    \t]\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"dee231e0-5777-4209-93b2-c8d3cc45ebe5"},{"name":"Get Sub Account By Id","id":"08bb632f-afc7-451d-8d16-61f6c3d8d430","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetSubAccountById?AccountId={{long}}","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Sub Account By ID API retreives the Sub-Account by specifying the account Id.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Long</em></td>\n<td></td>\n<td>ID of the account to get.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MainAccountOwnerName</td>\n<td><em>String</em></td>\n<td>The name of the main account owner.</td>\n</tr>\n<tr>\n<td>MainAccountId</td>\n<td><em>Numeric</em></td>\n<td>The identifier of the main account./</td>\n</tr>\n<tr>\n<td>MainAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The main account number.</td>\n</tr>\n<tr>\n<td>MainAccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the main account.</td>\n</tr>\n<tr>\n<td>CdicAccount</td>\n<td><em>List</em></td>\n<td>A list including all the CDIC account details, laid out in the rows below.</td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The CDIC account identifier.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The clients unique identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customer number.</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The client customer number.</td>\n</tr>\n<tr>\n<td>CustomerBusinessType</td>\n<td><em>String</em></td>\n<td>The customers business type. Whether <code>P - Personal</code>, or <code>C - Corporate</code>.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The CDIC account number.</td>\n</tr>\n<tr>\n<td>AccountSequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The sequence number of the CDIC account.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The CDIC account owner name.</td>\n</tr>\n<tr>\n<td>ExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date.</td>\n</tr>\n<tr>\n<td>AccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The CDIC account balance.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account. Whether its <code>active</code> or <code>inactive</code>.</td>\n</tr>\n<tr>\n<td>AccountStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The accounts status code.</td>\n</tr>\n<tr>\n<td>AccountStatusDescription</td>\n<td><em>String</em></td>\n<td>The description of the status code.</td>\n</tr>\n<tr>\n<td>LastUpdated</td>\n<td><em>DateTime</em></td>\n<td>The last date/time the account was updated in any way.</td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Numeric</em></td>\n<td>The client customer identifier.</td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>The currency identifier.</td>\n</tr>\n<tr>\n<td>IsCurrencySupported</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the account currency is supported.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency code.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"related-errors\">Related Errors</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetCDICAccountE1</td>\n<td>CDIC Main Account Not Found.</td>\n</tr>\n<tr>\n<td>GetCdicAccount3</td>\n<td>Cdic Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","GetSubAccountById"],"host":["{{baseUrl}}"],"query":[{"key":"AccountId","value":"{{long}}"}],"variable":[]}},"response":[{"id":"f0e699a4-77ec-4e70-b5ce-502b5f79912e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetSubAccountById?AccountId={{long}}","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","Cdic","GetSubAccountById"],"query":[{"key":"AccountId","value":"{{long}}"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"MainAccountOwnerName\": \"\",\n        \"MainAccountId\": 12345,\n        \"MainAccountNumber\": \"\",\n        \"MainAccountBalance\": 123.00,\n        \"CdicAccount\": {\n\t        \"AccountId\": 12345,\n\t        \"UniqueClientId\": 12345,\n\t        \"CustomerNumber\": 12345,\n\t        \"ClientCustomerNumber\": \"\",\n\t        \"CustomerBusinessType\": \"\",\n\t        \"AccountNumber\": \"\",\n\t        \"AccountSequenceNumber\": 123,\n\t        \"AccountOwnerName\": \"\",\n\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"AccountBalance\": 123.00,\n\t        \"AccountStatus\": 0,\n\t        \"AccountStatusCode\": \"\",\n\t        \"AccountStatusDesc\": \"\",\n\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"ClientCustomerId\": 12345,\n\t        \"CurrencyId\": 12345,\n\t        \"IsCurrencySupported\": true,\n\t        \"SwitchCurrencyCode\": \"\",\n\t        \"CurrencyCode\": \"\"\n    \t}\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"08bb632f-afc7-451d-8d16-61f6c3d8d430"},{"name":"Get Sub Account By Customer Number","id":"bbee90d7-bf0f-451b-a758-603cd17e8e63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetSubAccountByCustomerNumber?CustomerNumber=123456","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Sub Account By Customer Number API retrieves the Sub-Account by using the specific Customer number.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MainAccountOwnerName</td>\n<td><em>String</em></td>\n<td>The name of the main account owner.</td>\n</tr>\n<tr>\n<td>MainAccountId</td>\n<td><em>Numeric</em></td>\n<td>The identifier of the main account./</td>\n</tr>\n<tr>\n<td>MainAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The main account number.</td>\n</tr>\n<tr>\n<td>MainAccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the main account.</td>\n</tr>\n<tr>\n<td>CdicAccount</td>\n<td><em>List</em></td>\n<td>A list including all the CDIC account details, laid out in the rows below.</td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The CDIC account identifier.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The clients unique identifier.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customer number.</td>\n</tr>\n<tr>\n<td>ClientCustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The client customer number.</td>\n</tr>\n<tr>\n<td>CustomerBusinessType</td>\n<td><em>String</em></td>\n<td>The customers business type. Whether <code>P - Personal</code>, or <code>C - Corporate</code>.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The CDIC account number.</td>\n</tr>\n<tr>\n<td>AccountSequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The sequence number of the CDIC account.</td>\n</tr>\n<tr>\n<td>AccountOwnerName</td>\n<td><em>String</em></td>\n<td>The CDIC account owner name.</td>\n</tr>\n<tr>\n<td>ExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date.</td>\n</tr>\n<tr>\n<td>AccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The CDIC account balance.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account. Whether its <code>active</code> or <code>inactive</code>.</td>\n</tr>\n<tr>\n<td>AccountStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The accounts status code.</td>\n</tr>\n<tr>\n<td>AccountStatusDescription</td>\n<td><em>String</em></td>\n<td>The description of the status code.</td>\n</tr>\n<tr>\n<td>LastUpdated</td>\n<td><em>DateTime</em></td>\n<td>The last date/time the account was updated in any way.</td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Numeric</em></td>\n<td>The client customer identifier.</td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>The currency identifier.</td>\n</tr>\n<tr>\n<td>IsCurrencySupported</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the account currency is supported.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td><em>String</em></td>\n<td>The currency code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetCDICAccountE1</td>\n<td>CDIC Main Account Not Found.</td>\n</tr>\n<tr>\n<td>GetCdicAccount2</td>\n<td>Cdic Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","GetSubAccountByCustomerNumber"],"host":["{{baseUrl}}"],"query":[{"key":"CustomerNumber","value":"123456"}],"variable":[]}},"response":[{"id":"7ce2b1d0-983a-4309-bef9-3ad969916558","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/Cdic/GetSubAccountByCustomerNumber?CustomerNumber={{string}}","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","Cdic","GetSubAccountByCustomerNumber"],"query":[{"key":"CustomerNumber","value":"{{string}}"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"MainAccountOwnerName\": \"\",\n        \"MainAccountId\": 12345,\n        \"MainAccountNumber\": \"\",\n        \"MainAccountBalance\": 123.00,\n        \"CdicAccount\": {\n\t        \"AccountId\": 12345,\n\t        \"UniqueClientId\": 12345,\n\t        \"CustomerNumber\": 12345,\n\t        \"ClientCustomerNumber\": \"\",\n\t        \"CustomerBusinessType\": \"\",\n\t        \"AccountNumber\": \"\",\n\t        \"AccountSequenceNumber\": 123,\n\t        \"AccountOwnerName\": \"\",\n\t        \"ExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"AccountBalance\": 123.00,\n\t        \"AccountStatus\": 0,\n\t        \"AccountStatusCode\": \"\",\n\t        \"AccountStatusDesc\": \"\",\n\t        \"LastUpdated\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t        \"ClientCustomerId\": 12345,\n\t        \"CurrencyId\": 12345,\n\t        \"IsCurrencySupported\": true,\n\t        \"SwitchCurrencyCode\": \"\",\n\t        \"CurrencyCode\": \"\"\n    \t}\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bbee90d7-bf0f-451b-a758-603cd17e8e63"},{"name":"Delete Sub Account","id":"29695d28-c93e-4575-80d6-b33cf956a9d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 23456\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/DeleteSubAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete Sub Account API removes/deletes the CDIC Sub Account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>ID of the sub account to delete.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountDel1</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>AccountDel2</td>\n<td>Account Already Deleted.</td>\n</tr>\n<tr>\n<td>AccountDel3</td>\n<td>Invalid Account Type.</td>\n</tr>\n<tr>\n<td>AccountDel4</td>\n<td>Permissions To Make Changes To This Account Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>AccountDel5</td>\n<td>Account Has A Balance. The Account Could Not Be Deleted.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","DeleteSubAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8910c653-f38b-4590-a0a7-5c23f58a37de","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 23456\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/DeleteSubAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"29695d28-c93e-4575-80d6-b33cf956a9d7"},{"name":"Update Sub Account Status","id":"8917bc0e-b822-4f86-9a6d-f6dad1c8af8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"AcountId\": 0,\r\n  \"AccountStatus\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/UpdateSubAccountStatus","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Sub Account Status API updates the status of the CDIC sub account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>ID of the sub account to delete.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The status of the account:  <br /><code>0</code> Active,  <br /><code>1</code> Inactive.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountStatusUpd1</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>AccountStatusUpd2</td>\n<td>Invalid Account Type.</td>\n</tr>\n<tr>\n<td>AccountStatusUpd3</td>\n<td>Permissions To Make Changes To This Account Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>AccountStatusUpd4</td>\n<td>Invalid Account Status.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","UpdateSubAccountStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fb5be956-a050-4fd1-858d-845d87faadec","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"AcountId\": 0,\n    \"AccountStatus\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/UpdateSubAccountStatus"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8917bc0e-b822-4f86-9a6d-f6dad1c8af8b"},{"name":"Money Deposit To Sub Account","id":"1cc23717-f306-4727-aded-b927f7717a39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"ClientUniqueReferenceNumber\": \"\",\n    \"Description\": \"\",\n    \"ToAccountId\": 12345,\n    \"TransferAmount\": 123.00\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/MoneyDepositToSubAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Money Deposit To Sub Account API deposits money to a CDIC sub account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClientUniqueReferenceNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The clients unique reference number, for transaction duplication control.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>500</td>\n<td>Description for the transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ToAccountId</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>ID of the sub account to deposit money to.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount to transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>ClientUniqueReferenceNumber</td>\n<td><em>String</em></td>\n<td>The clients unique reference number, for transaction duplication control.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Cdic","MoneyDepositToSubAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"97461e41-c157-44f3-a6d5-fe2680495c9e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"ClientUniqueReferenceNumber\": \"1234567\",\n    \"Description\": \"Test\",\n    \"ToAccountId\": 123456,\n    \"TransferAmount\": 145.78\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Cdic/MoneyDepositToSubAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 12345,\n        \"ClientUniqueReferenceNumber\": \"\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"1cc23717-f306-4727-aded-b927f7717a39"}],"id":"25bea397-2a02-4cb9-b93a-f6a937233afc","_postman_id":"25bea397-2a02-4cb9-b93a-f6a937233afc","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"DDT ","item":[{"name":"Create Bulk DDT Numbers","id":"51f176e1-4e71-4663-95db-050764c8502b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"NumberOfRequestedDdt\":2\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/CreateBulkDdt","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Bulk DDT Numbers API retrieves a list of bulk DDT numbers.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NumberOfRequestedDdt</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Number of requested DDT. Maximum value of 1000.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The starting sequence number.</td>\n</tr>\n<tr>\n<td>EndSequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The ending sequence number.</td>\n</tr>\n<tr>\n<td>NumberOfRequestedDdt</td>\n<td><em>Numeric</em></td>\n<td>The number of the requested DDT.</td>\n</tr>\n<tr>\n<td>UniqueClientId</td>\n<td><em>Numeric</em></td>\n<td>The clients unique identifier.</td>\n</tr>\n<tr>\n<td>DDTNumberList</td>\n<td><em>List</em></td>\n<td>A list including the DDT details, laid out below.</td>\n</tr>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>The DDT owners identifier.</td>\n</tr>\n<tr>\n<td>DDTId</td>\n<td><em>Numeric</em></td>\n<td>The DDTs identifier.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT number.</td>\n</tr>\n<tr>\n<td>SequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The starting sequence number.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The DDT owners email address.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateDDTAccountE1</td>\n<td>DDT Pool Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateDDt01</td>\n<td>Maximum 1000 Bank Account Can Be Created At Once.</td>\n</tr>\n<tr>\n<td>CreateDDt02</td>\n<td>Invalid Sequence. This Sequence Has Been Used Before.</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE1</td>\n<td>Invalid Program.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE2</td>\n<td>Invalid Unique Client ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE4</td>\n<td>Invalid Pool Account ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE6</td>\n<td>Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE7</td>\n<td>Invalid Currency.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE8</td>\n<td>Sub Account Not Found For This Program.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","CreateBulkDdt"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f6a115a7-a4cd-469f-8433-bab4ca02db6e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"NumberOfRequestedDdt\": 5\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/CreateBulkDdt"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 18:45:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"360","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"SequenceNumber\": 3,\n        \"EndSequenceNumber\": 8,\n        \"NumberOfRequestedDdt\": 5,\n        \"UniqueClientId\": 500034,\n        \"DDTNumberList\": [\n            {\n                \"DDTOwnerId\": 310408,\n                \"DDTId\": 21794,\n                \"DDTNumber\": \"35210009990881963\",\n                \"SequenceNumber\": 3,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310409,\n                \"DDTId\": 21795,\n                \"DDTNumber\": \"35210009918763939\",\n                \"SequenceNumber\": 4,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310410,\n                \"DDTId\": 21796,\n                \"DDTNumber\": \"35210009980932453\",\n                \"SequenceNumber\": 5,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310411,\n                \"DDTId\": 21797,\n                \"DDTNumber\": \"35210009975078676\",\n                \"SequenceNumber\": 6,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310412,\n                \"DDTId\": 21798,\n                \"DDTNumber\": \"35210009946226495\",\n                \"SequenceNumber\": 7,\n                \"Email\": null\n            }\n        ],\n        \"PoolAccountNumber\": \"35210009606001301\",\n        \"PoolAccountName\": \"Pooled Account DDT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"51f176e1-4e71-4663-95db-050764c8502b"},{"name":"Get By Ddt Id","id":"3a491e7c-863e-4510-8de8-68a823c3295c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/GetByDdtId?ddtid={{ddtid}}","description":"<h3 id=\"description\">Description</h3>\n<p>The Get By Ddt Id API retrieves a single registered DDT sub account for the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ddtid</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>ID of the DDT sub account to get.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PoolAccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The pooled account balance.</td>\n</tr>\n<tr>\n<td>PoolAccountOwnerName</td>\n<td><em>String</em></td>\n<td>The pooled account owners name.</td>\n</tr>\n<tr>\n<td>PoolAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number of the pooled account.</td>\n</tr>\n<tr>\n<td>PoolAccountName</td>\n<td><em>String</em></td>\n<td>The name of the pooled account.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>List</em></td>\n<td>A list including details about the DDT account, laid out below.</td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>Numeric</em></td>\n<td>The Social Insurance Number of the DDT account owner.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The account owners first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The account owners middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The account owners last name.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>The date of birth of the account owner.</td>\n</tr>\n<tr>\n<td>ExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date.</td>\n</tr>\n<tr>\n<td>IssuedDate</td>\n<td><em>DateTime</em></td>\n<td>The issued date.</td>\n</tr>\n<tr>\n<td>DDTBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the DDT account.</td>\n</tr>\n<tr>\n<td>DDTStatus</td>\n<td><em>String</em></td>\n<td>The DDT account status code.</td>\n</tr>\n<tr>\n<td>DDTStatusDesc</td>\n<td><em>String</em></td>\n<td>A description of the DDT account status code.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td><em>String</em></td>\n<td>The DDT owner phone number.</td>\n</tr>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>The DDT owner identifier.</td>\n</tr>\n<tr>\n<td>DDTId</td>\n<td><em>Numeric</em></td>\n<td>The DDT identifier.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT number.</td>\n</tr>\n<tr>\n<td>SequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT account sequence number.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the DDT account owner.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateDDTAccountE1</td>\n<td>DDT Pool Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE1</td>\n<td>Invalid Program.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE2</td>\n<td>Invalid Unique Client ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE4</td>\n<td>Invalid Pool Account ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE6</td>\n<td>Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE7</td>\n<td>Invalid Currency.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE8</td>\n<td>Sub Account Not Found For This Program.</td>\n</tr>\n<tr>\n<td>GetDdtAccount2</td>\n<td>DDT Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","GetByDdtId"],"host":["{{baseUrl}}"],"query":[{"key":"ddtid","value":"{{ddtid}}"}],"variable":[]}},"response":[{"id":"8cf8ef67-ecd0-4045-8ca4-4924c0b832b4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/Ddt/GetByDdtId?ddtid=21527","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","Ddt","GetByDdtId"],"query":[{"key":"ddtid","value":"21527"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 18:50:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"373","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"PoolAccountBalance\": 0,\n        \"PoolAccountOwnerName\": null,\n        \"DDTNumber\": {\n            \"SIN\": null,\n            \"Name\": \"\",\n            \"MiddleName\": null,\n            \"LastName\": null,\n            \"DateOfBirth\": null,\n            \"ExpireDate\": \"2021-07-03T09:50:09.937\",\n            \"IssuedDate\": \"2020-07-03T09:50:09.97\",\n            \"DDTBalance\": 0,\n            \"DDTStatus\": \"A\",\n            \"DDTStatusDesc\": \"Active\",\n            \"Phone\": \"\",\n            \"DDTOwnerId\": 310250,\n            \"DDTId\": 21527,\n            \"DDTNumber\": \"35210009961942620\",\n            \"SequenceNumber\": 1,\n            \"Email\": \"\"\n        },\n        \"PoolAccountNumber\": \"35210009606001301\",\n        \"PoolAccountName\": \"Pooled Account DDT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3a491e7c-863e-4510-8de8-68a823c3295c"},{"name":"Get By Ddt Owner Id","id":"c1b7e9e2-2948-49b4-b43f-f7298387fa73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/GetByDdtOwnerId?ddtownerid={{ddtownerid}}","description":"<h3 id=\"description\">Description</h3>\n<p>The Get By Ddt Owner Id retrieves a single registered DDT sub account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Owner ID of the sub account to get.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PoolAccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The pooled account balance.</td>\n</tr>\n<tr>\n<td>PoolAccountOwnerName</td>\n<td><em>String</em></td>\n<td>The pooled account owners name.</td>\n</tr>\n<tr>\n<td>PoolAccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number of the pooled account.</td>\n</tr>\n<tr>\n<td>PoolAccountName</td>\n<td><em>String</em></td>\n<td>The name of the pooled account.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>List</em></td>\n<td>A list including details about the DDT account, laid out below.</td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>Numeric</em></td>\n<td>The Social Insurance Number of the DDT account owner.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The account owners first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The account owners middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The account owners last name.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>The date of birth of the account owner.</td>\n</tr>\n<tr>\n<td>ExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date.</td>\n</tr>\n<tr>\n<td>IssuedDate</td>\n<td><em>DateTime</em></td>\n<td>The issued date.</td>\n</tr>\n<tr>\n<td>DDTBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the DDT account.</td>\n</tr>\n<tr>\n<td>DDTStatus</td>\n<td><em>String</em></td>\n<td>The DDT account status code.</td>\n</tr>\n<tr>\n<td>DDTStatusDesc</td>\n<td><em>String</em></td>\n<td>A description of the DDT account status code.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td><em>String</em></td>\n<td>The DDT owner phone number.</td>\n</tr>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>The DDT owner identifier.</td>\n</tr>\n<tr>\n<td>DDTId</td>\n<td><em>Numeric</em></td>\n<td>The DDT identifier.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT number.</td>\n</tr>\n<tr>\n<td>SequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT account sequence number.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the DDT account owner.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateDDTAccountE1</td>\n<td>DDT Pool Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE1</td>\n<td>Invalid Program.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE2</td>\n<td>Invalid Unique Client ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE4</td>\n<td>Invalid Pool Account ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE6</td>\n<td>Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE7</td>\n<td>Invalid Currency.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE8</td>\n<td>Sub Account Not Found For This Program.</td>\n</tr>\n<tr>\n<td>GetDdtAccount2</td>\n<td>DDT Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","GetByDdtOwnerId"],"host":["{{baseUrl}}"],"query":[{"key":"ddtownerid","value":"{{ddtownerid}}"}],"variable":[]}},"response":[{"id":"843ee69d-0727-4cdf-bb71-cb7572bf1be4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/Ddt/GetByDdtOwnerId?ddtownerid=310250","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","Ddt","GetByDdtOwnerId"],"query":[{"key":"ddtownerid","value":"310250"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 18:51:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"373","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"PoolAccountBalance\": 0,\n        \"PoolAccountOwnerName\": null,\n        \"DDTNumber\": {\n            \"SIN\": null,\n            \"Name\": \"\",\n            \"MiddleName\": null,\n            \"LastName\": null,\n            \"DateOfBirth\": null,\n            \"ExpireDate\": \"2021-07-03T09:50:09.937\",\n            \"IssuedDate\": \"2020-07-03T09:50:09.97\",\n            \"DDTBalance\": 0,\n            \"DDTStatus\": \"A\",\n            \"DDTStatusDesc\": \"Active\",\n            \"Phone\": \"\",\n            \"DDTOwnerId\": 310250,\n            \"DDTId\": 21527,\n            \"DDTNumber\": \"35210009961942620\",\n            \"SequenceNumber\": 1,\n            \"Email\": \"\"\n        },\n        \"PoolAccountNumber\": \"35210009606001301\",\n        \"PoolAccountName\": \"Pooled Account DDT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c1b7e9e2-2948-49b4-b43f-f7298387fa73"},{"name":"Search","id":"4a3da4f5-1ec8-4046-83e6-ef976ab91d0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"BeginDate\": \"\",\r\n    \"EndDate\": \"\",\r\n    \"DDTStatus\": \"\",\r\n    \"DDTOwnerId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Search","description":"<h3 id=\"description\">Description</h3>\n<p>The Search API retrieves a list of all registered DDT sub accounts.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Search for accounts issued on/after this date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Search for accounts issued on/before this date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DDTStatus</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Search for accounts with the following status values:  <br /><code>A</code> Active  <br /><code>C</code> Closed  <br /><code>D</code> Deactivated  <br /><code>I</code> Inactive  <br /><code>T</code> Suspended</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Search for accounts belonging to the supplied ID value.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PoolAccountBalance</td>\n<td><em>Decimal</em></td>\n<td>The pooled account balance.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>List</em></td>\n<td>A list including details about the DDT account, laid out below.</td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>Numeric</em></td>\n<td>The Social Insurance Number of the DDT account owner.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The account owners first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The account owners middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The account owners last name.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>The date of birth of the account owner.</td>\n</tr>\n<tr>\n<td>ExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date.</td>\n</tr>\n<tr>\n<td>IssuedDate</td>\n<td><em>DateTime</em></td>\n<td>The issued date.</td>\n</tr>\n<tr>\n<td>DDTBalance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the DDT account.</td>\n</tr>\n<tr>\n<td>DDTStatus</td>\n<td><em>String</em></td>\n<td>The DDT account status code.</td>\n</tr>\n<tr>\n<td>DDTStatusDesc</td>\n<td><em>String</em></td>\n<td>A description of the DDT account status code.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td><em>String</em></td>\n<td>The DDT owner phone number.</td>\n</tr>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>The DDT owner identifier.</td>\n</tr>\n<tr>\n<td>DDTId</td>\n<td><em>Numeric</em></td>\n<td>The DDT identifier.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT number.</td>\n</tr>\n<tr>\n<td>SequenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The DDT account sequence number.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the DDT account owner.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateDDTAccountE1</td>\n<td>DDT Pool Account Not Found.</td>\n</tr>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE1</td>\n<td>Invalid Program.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE2</td>\n<td>Invalid Unique Client ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE4</td>\n<td>Invalid Pool Account ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE6</td>\n<td>Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE7</td>\n<td>Invalid Currency.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE8</td>\n<td>SubAccount Not Found For This Program.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","Search"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2eb2ad15-e07f-409d-9b26-6641bcace40b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"BeginDate\": \"2020-01-01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 18:46:52 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"561","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"PoolAccountBalance\": 0,\n        \"DDTList\": [\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-03T09:50:09.937\",\n                \"IssuedDate\": \"2020-07-03T09:50:09.97\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310250,\n                \"DDTId\": 21527,\n                \"DDTNumber\": \"35210009961942620\",\n                \"SequenceNumber\": 1,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-03T09:50:10.043\",\n                \"IssuedDate\": \"2020-07-03T09:50:10.047\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310251,\n                \"DDTId\": 21528,\n                \"DDTNumber\": \"35210009933317117\",\n                \"SequenceNumber\": 2,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.72\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.737\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310408,\n                \"DDTId\": 21794,\n                \"DDTNumber\": \"35210009990881963\",\n                \"SequenceNumber\": 3,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.8\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.807\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310409,\n                \"DDTId\": 21795,\n                \"DDTNumber\": \"35210009918763939\",\n                \"SequenceNumber\": 4,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.827\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.83\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310410,\n                \"DDTId\": 21796,\n                \"DDTNumber\": \"35210009980932453\",\n                \"SequenceNumber\": 5,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.867\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.88\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310411,\n                \"DDTId\": 21797,\n                \"DDTNumber\": \"35210009975078676\",\n                \"SequenceNumber\": 6,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.92\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.923\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310412,\n                \"DDTId\": 21798,\n                \"DDTNumber\": \"35210009946226495\",\n                \"SequenceNumber\": 7,\n                \"Email\": \"\"\n            }\n        ],\n        \"PoolAccountNumber\": \"35210009606001301\",\n        \"PoolAccountName\": \"Pooled Account DDT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4a3da4f5-1ec8-4046-83e6-ef976ab91d0d"},{"name":"Update","id":"8c4fee5f-40bc-4d4a-957f-468f4c563284","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"DDTOwnerId\":  383860,\r\n    \"Name\": \"First\",\r\n    \"MiddleName\": \"Middle\",\r\n    \"LastName\": \"Last\",\r\n    \"DateOfBirth\": \"1990-10-31\",\r\n    \"Email\": \"\",\r\n   \r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Update","description":"<h3 id=\"description\">Description</h3>\n<p>The Update API retrieves the selected DDT sub account's details for the supplied DdtOwnerId.</p>\n<p>This endpoint combines the user's <code>Name</code>, <code>MiddleName</code>, and <code>LastName</code> into a single string with automatic spaces between them, and enforces a maximum combined character limit of 30, including spaces.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DdtOwnerId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The DDT Owner ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Customer's social insurance number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Customer's first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Customer's middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Customer's last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td>DateTime</td>\n<td>yyyy-mm-dd</td>\n<td>Customer's birth date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Customer's email address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneCountryCodeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Customer's phone country code ID.  <br />This value can be obtained using the <strong>Parameter -&gt; Address -&gt; Get Country Code</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer's phone number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PhoneTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The phone number type ID:  <br /><code>16057</code> Primary,  <br /><code>16058</code> Alternate,  <br /><code>16059</code> Cell,  <br /><code>16060</code> Business,  <br /><code>16061</code> Fax.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Customer's street address line 1.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Customer's street address line 2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Customer's zip/postal code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Customer's country ID.  <br />This vlaue can be obtained using the <strong>Parameter -&gt; Address -&gt; Get Country List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Customer's province ID.  <br />This value can be obtained using the <strong>Parameter -&gt; Address -&gt; Get Province List By Country</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The customer's city ID.  <br />This value can be obtained using the <strong>Parameter -&gt; Address -&gt;</strong> <strong>Get City By Province</strong> API.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DDTOwnerId</td>\n<td><em>Numeric</em></td>\n<td>The DDT account owners identifier.</td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>Numeric</em></td>\n<td>The DDT account owners Social Insurance Number.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The DDT account owners first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The DDT account owners middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The DDT account owners last name.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>The DDT account owners date of birth.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The DDT account owners email address.</td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The account owners phone country code. 1 for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The account owners phone number.</td>\n</tr>\n<tr>\n<td>PhoneTypeId</td>\n<td><em>Numeric</em></td>\n<td>The type ID of the phone number.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The account owners street address.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The account owners street address.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip/postalcode of the account owners address.</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>The country ID of the account owners address.</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>The provincial ID of the account owners address.</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>The city ID of the account owners address.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvalidRequest</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>UpdateDdtAccount1</td>\n<td>Invalid DDT Owner ID.</td>\n</tr>\n<tr>\n<td>UpdateDdtAccount1</td>\n<td>DDT Account Email Format Is Not Valid.</td>\n</tr>\n<tr>\n<td>UpdateDdtAccount2</td>\n<td>DDT Account Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","Update"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"457a0a69-7652-4432-b447-2452d90d2f1a","name":"Update","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"DDTOwnerId\":  381189,\r\n    \"Name\": \"First\",\r\n    \"MiddleName\": \"Middle\",\r\n    \"LastName\": \"Last\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Oct 2024 21:45:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"DDTOwnerId\": 381189,\n        \"SIN\": null,\n        \"Name\": \"First\",\n        \"MiddleName\": \"Middle\",\n        \"LastName\": \"Last\",\n        \"DateOfBirth\": null,\n        \"Email\": null,\n        \"PhoneCountryCodeId\": null,\n        \"PhoneNumber\": null,\n        \"PhoneTypeId\": null,\n        \"AddressLine1\": null,\n        \"AddressLine2\": null,\n        \"ZipCode\": null,\n        \"CountryId\": null,\n        \"ProvinceId\": null,\n        \"CityId\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"8c4fee5f-40bc-4d4a-957f-468f4c563284"},{"name":"Delete","id":"950852ce-9739-43a8-98ca-4e31942a3000","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"Id\": 21527\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Delete","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete API deletes a DDT sub account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The DDT ID of the DDT sub account to delete.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountDel1</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>AccountDel2</td>\n<td>Account Already Deleted.</td>\n</tr>\n<tr>\n<td>AccountDel3</td>\n<td>Invalid Account Type.</td>\n</tr>\n<tr>\n<td>AccountDel4</td>\n<td>Permissions To Make Changes To This Account Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>AccountDel5</td>\n<td>Account Has Balance. Account Could Not Be Deleted.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","Delete"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"59d5fc41-ceaf-48f2-949b-f41a020cf854","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Id\": 21527\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Delete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 19:37:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"128","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {},\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"950852ce-9739-43a8-98ca-4e31942a3000"},{"name":"Update Ddt Status","id":"4201f85e-6453-433c-9852-f57531a0ff3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"DdtId\": 1086,\n    \"DdtStatus\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/UpdateDdtStatus","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Ddt API updates the DDT sub account's status.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DdtId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>DDT ID of the account to be updated.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DdtStatus</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>DDT account status codes:  <br /><code>0</code> Active  <br /><code>1</code> Inactive</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountStatusUpd1</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>AccountStatusUpd2</td>\n<td>Invalid Account Type.</td>\n</tr>\n<tr>\n<td>AccountStatusUpd3</td>\n<td>Permissions To Make Changes To This Account Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>AccountStatusUpd4</td>\n<td>Invalid Account Status.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","UpdateDdtStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9b3d399a-96d4-47b9-8da9-f2ba536adef5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"DdtId\": 21528,\n    \"DdtStatus\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/UpdateDdtStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 19:43:37 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"128","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {},\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4201f85e-6453-433c-9852-f57531a0ff3d"},{"name":"Money Deposit","id":"d1352183-6cd4-4251-9bca-f76e6a08b419","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"DdtId\": 21528,\n    \"Amount\": 100.00,\n    \"Description\": \"Test\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/MoneyDeposit","description":"<h3 id=\"description\">Description</h3>\n<p>The Money Deposit API moves money from the Customer's primary DDT account to his/her DDT sub account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DdtId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>ID of the DDT sub account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The amount of the deposit.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>500</td>\n<td>The description of the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>ClientUniqueReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients unique reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DdtMoneyDeposit1</td>\n<td>DDT Pooled Account Not Found <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit2</td>\n<td>DDT Account Could Not Found <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit3</td>\n<td>DDT Account Could Not Found <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit4</td>\n<td>Sender Account Status Is Not Active <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit5</td>\n<td>Receviver Account Status Is Not Active <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit6</td>\n<td>DDT Account Not Found <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit7</td>\n<td>Invalid Account Type. Only DDT Sub Account Can Be Used <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit8</td>\n<td>Permissions To Make Changes To This Account Have Not Been Granted. <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyDeposit9</td>\n<td>Insufficient Balance <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtCreateTransaction1</td>\n<td>{{ClientUniqueReferenceNumber}} Transaction Already Exists.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","MoneyDeposit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bb7bd9df-e8e7-4ddc-a7f8-510bc7bbd4c3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Description\": \"Test\",\n    \"DdtId\": 21528,\n    \"Amount\": 100.00\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/MoneyDeposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 19:49:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"170","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 108345,\n        \"ClientUniqueReferenceNumber\": \"12312313131\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d1352183-6cd4-4251-9bca-f76e6a08b419"},{"name":"Money Withdrawal","id":"289c12f3-414b-4f05-9f52-b8745ce2535c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"DdtId\": 21528,\n    \"Amount\": 100.00,\n    \"Description\": \"Test\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/MoneyWithdrawal","description":"<h3 id=\"description\">Description</h3>\n<p>The Money Withdrawl API withdraws money from the Customer's primary DDT account to the DDT sub account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DdtId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>ID of the DDT sub account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The amount of the withdrawal.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>500</td>\n<td>A description of the transaction.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>ClientUniqueReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients unique reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DdtMoneyWithdrawal1</td>\n<td>DDT Pooled Account Not Found <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal2</td>\n<td>DDT Account Could Not Found <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal3</td>\n<td>DDT Account Could Not Found <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal4</td>\n<td>Sender Account Status Is Not Active <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal5</td>\n<td>Receviver Account Status Is Not Active <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal6</td>\n<td>DDT Account Not Found <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal7</td>\n<td>Invalid Account Type. Only DDT Sub Account Can Be Used <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal8</td>\n<td>Permissions To Make Changes To This Account Have Not Been Granted <em>(sub).</em></td>\n</tr>\n<tr>\n<td>DdtMoneyWithdrawal9</td>\n<td>Insufficient Balance <em>(primary).</em></td>\n</tr>\n<tr>\n<td>DdtCreateTransaction1</td>\n<td>{{ClientUniqueReferenceNumber}} Transaction Already Exists.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","MoneyWithdrawal"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"33293e88-e3ba-4496-ac3d-1b5a20e138ec","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Description\": \"Test\",\n    \"DdtId\": 21528,\n    \"Amount\": 100.00\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/MoneyWithdrawal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 19:49:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"170","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"TransactionId\": 108345,\n        \"ClientUniqueReferenceNumber\": \"12312313131\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"289c12f3-414b-4f05-9f52-b8745ce2535c"},{"name":"Search EFT Transaction","id":"a70cea4f-fd5e-48c4-8e44-8ddb2f002db2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"Description\": \"test1\",\n  \"TransactionTypeCode\": \"C\",\n  \"TransactionStatusCode\": \"S\",\n  \"MinAmount\": \"0\",\n  \"MaxAmount\": \"100\",\n  \"EftTypeCode\": \"P\",\n  \"MinTransactionDate\": \"2020-02-13\",\n  \"MaxTransactionDate\": \"2020-02-15\",\n  \"TransactionId\": \"102292\",\n  \"TransactionReferenceNumber\": \"100000000125135720\",\n  \"AccountNumber\": \"240189035\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/SearchEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Search EFT Transaction API retrieves a specific EFT transaction based on the criteria submitted.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The description of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The type code of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td>String</td>\n<td>1</td>\n<td>The status code of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The minimum amount to search.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The maximum amount to search.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The type code of the EFT.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinTransactionDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The start date to search by.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxTransactionDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The end date to search by.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The unique transaction identifier.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>18</td>\n<td>The unique transaction reference number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>The account number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>The transactions unique identifier.</td>\n</tr>\n<tr>\n<td>TransactionEftId</td>\n<td><em>Numeric</em></td>\n<td>The EFT transaction unique identifier.</td>\n</tr>\n<tr>\n<td>IsEditable</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether or not the transaction is able to be edited.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>EftTypeId</td>\n<td><em>Numeric</em></td>\n<td>The EFT type ID.</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>The EFT type code.</td>\n</tr>\n<tr>\n<td>EftTypeDescription</td>\n<td><em>String</em></td>\n<td>A description of the EFT type code.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The number of the account.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The transaction type ID.</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>The transaction type code.</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>A description of the transaction type code.</td>\n</tr>\n<tr>\n<td>TransactionSourceId</td>\n<td><em>Numeric</em></td>\n<td>The transaction source identifier.</td>\n</tr>\n<tr>\n<td>TransactionSourceCode</td>\n<td><em>Numeric</em></td>\n<td>The transaction source code.</td>\n</tr>\n<tr>\n<td>TransactionSourceDescription</td>\n<td><em>String</em></td>\n<td>A description of the transaction source code.</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>A description of the transaction status code.</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>The transaction status code.</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Numeric</em></td>\n<td>The transaction status ID.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>FileId</td>\n<td><em>Numeric</em></td>\n<td>The file ID of the EFT file.</td>\n</tr>\n<tr>\n<td>FileName</td>\n<td><em>String</em></td>\n<td>The file name of the EFT file.</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>The short name of where the transaction originated.</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>The full name of where the transaction originated.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","SearchEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e5f5b38-9349-40dd-9edf-2edd9680325d","name":"Search EFT Transaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"Description\": \"test1\",\n  \"TransactionTypeCode\": \"C\",\n  \"TransactionStatusCode\": \"S\",\n  \"MinAmount\": \"0\",\n  \"MaxAmount\": \"100\",\n  \"EftTypeCode\": \"P\",\n  \"MinTransactionDate\": \"2020-02-13\",\n  \"MaxTransactionDate\": \"2020-02-15\",\n  \"TransactionId\": \"102292\",\n  \"TransactionReferenceNumber\": \"100000000125135720\",\n  \"AccountNumber\": \"240189035\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/SearchEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Dec 2021 21:08:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"TransactionId\": 102292,\n            \"TransactionEftId\": 20086,\n            \"IsEditable\": false,\n            \"Description\": \"test1\",\n            \"Amount\": 67,\n            \"FeeAmount\": 8,\n            \"EftTypeId\": 16364,\n            \"EftTypeCode\": \"P\",\n            \"EftTypeDescription\": \"Priority\",\n            \"TransactionDate\": \"2020-02-14T07:00:00\",\n            \"AccountName\": \"EFT EP Financial  Funding Account\",\n            \"AccountNumber\": \"240189035\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"TransactionTypeDescription\": \"Credit\",\n            \"TransactionSourceId\": 12001,\n            \"TransactionSourceCode\": \"101\",\n            \"TransactionSourceDescription\": \"Manual\",\n            \"TransactionStatusDescription\": \"Sent\",\n            \"TransactionStatusCode\": \"S\",\n            \"TransactionStatusId\": 14001,\n            \"TransactionReferenceNumber\": \"100000000125135720\",\n            \"FileId\": 0,\n            \"FileName\": null,\n            \"OriginatorShortName\": \"DCBANK\",\n            \"OriginatorLongName\": \"DIRECTCASH BANK\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a70cea4f-fd5e-48c4-8e44-8ddb2f002db2"},{"name":"Search e-Transfer Transaction","id":"e75fbd96-3768-4b8a-834a-c66d8bcfa4b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"Description\": \"Test Banking\",\n  \"TransactionTypeCode\": \"C\",\n  \"TransactionStatusCode\": \"C\",\n  \"MinAmount\": \"10\",\n  \"MaxAmount\":\"100\" ,\n  \"PriorityTypeCode\": \"0\",\n  \"MinMoneyReqExpDate\": \"2020-01-01\",\n  \"MaxMoneyReqExpDate\": \"2021-01-01\",\n  \"SecurityQuestionId\": null,\n  \"ReferenceNumber\": \"100000000125313341\",\n  \"InteracReferenceNumber\": \"CAM8Fmmn\",\n  \"TransactionReferenceNumber\": \"100000000125313341\",\n  \"AccountNumber\": \"953955275\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/SearchETransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Search API retrieves e-Transfer transaction details based on the specified criteria.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>A description of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The type code of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The status code of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The minimum amount to search by.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxAmount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The maximum amount to search by.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The priority type code of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MinMoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The minimum expiry date of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MaxMoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The maximum expiry date of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The security question identifier.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique reference number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The unique \"CA\" interac reference number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>18</td>\n<td>The unique transaction reference number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>15</td>\n<td>The account number.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Numeric</em></td>\n<td>Thje unique transaction ID.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Numeric</em></td>\n<td>The unique etransfer transaction ID.</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Numeric</em></td>\n<td>The contact identifier.</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The contact name.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Numeric</em></td>\n<td>The transaction type ID.</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>The transaction type code.</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>A description of the transaction type code.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with the transaction.</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>String</em></td>\n<td>The account name.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>PriorityTypeId</td>\n<td><em>Numeric</em></td>\n<td>The priority type ID.</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>Numeric</em></td>\n<td>The priority type code.</td>\n</tr>\n<tr>\n<td>PriorityTypeDescription</td>\n<td><em>String</em></td>\n<td>A description of the priority type code.</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the money request.</td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction was initiated.</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the security question.</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>The security question.</td>\n</tr>\n<tr>\n<td>SecurityAnswer</td>\n<td><em>String</em></td>\n<td>The answer to the security question.</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>A description of the transaction status code.</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>The transaction status code.</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Numeric</em></td>\n<td>The transaction status ID.</td>\n</tr>\n<tr>\n<td>InteracStatusCode</td>\n<td><em>Numeric</em></td>\n<td>The interac status code.</td>\n</tr>\n<tr>\n<td>InteracStatusDescription</td>\n<td><em>String</em></td>\n<td>A description of the interac status code.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The interac \"CA\" reference number.</td>\n</tr>\n<tr>\n<td>ParticipantReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The partcipant reference number.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>Numeric</em></td>\n<td>The clients reference number.</td>\n</tr>\n<tr>\n<td>InteracStatus</td>\n<td><em>String</em></td>\n<td>The status of the transaction with interac.</td>\n</tr>\n<tr>\n<td>IsDeferred</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating if the transaction was deferred or not.</td>\n</tr>\n<tr>\n<td>TransactionMemo</td>\n<td><em>String</em></td>\n<td>The transaction memo.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td><em>String</em></td>\n<td>The email of the user who initiated the transaction.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The sending name of the user who initiated the transaction.</td>\n</tr>\n<tr>\n<td>ApplicationId</td>\n<td><em>Numeric</em></td>\n<td>The application ID.</td>\n</tr>\n<tr>\n<td>SenderBank</td>\n<td><em>Numeric</em></td>\n<td>The bank number of the sending bank.</td>\n</tr>\n<tr>\n<td>SenderTransit</td>\n<td><em>Numeric</em></td>\n<td>The transit number of the sending bank.</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>A description of any errors that may occurr.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Ddt","SearchETransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"aca6cd1a-741d-4415-bf83-3fbe020e741a","name":"Search e-Transfer Transaction","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"Description\": \"Test Banking\",\n  \"TransactionTypeCode\": \"C\",\n  \"TransactionStatusCode\": \"C\",\n  \"MinAmount\": \"10\",\n  \"MaxAmount\":\"100\" ,\n  \"PriorityTypeCode\": \"0\",\n  \"MinMoneyReqExpDate\": \"2020-01-01\",\n  \"MaxMoneyReqExpDate\": \"2021-01-01\",\n  \"SecurityQuestionId\": null,\n  \"ReferenceNumber\": \"100000000125313341\",\n  \"InteracReferenceNumber\": \"CAM8Fmmn\",\n  \"TransactionReferenceNumber\": \"100000000125313341\",\n  \"AccountNumber\": \"953955275\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/SearchETransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Dec 2021 20:00:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"TransactionId\": 107253,\n            \"TransactionEtransferId\": 23607,\n            \"ContactId\": 0,\n            \"ContactName\": null,\n            \"Description\": \"Test Banking\",\n            \"TransactionTypeId\": 6020,\n            \"TransactionTypeCode\": \"C\",\n            \"TransactionTypeDescription\": \"Money Send\",\n            \"Amount\": 34.25,\n            \"FeeAmount\": 0,\n            \"TransactionDate\": \"2020-07-06T15:27:38.0681264\",\n            \"AccountName\": \"DDT Funding Account \",\n            \"AccountNumber\": \"953955275\",\n            \"PriorityTypeId\": 20004,\n            \"PriorityTypeCode\": \"0\",\n            \"PriorityTypeDescription\": \"Real Time\",\n            \"MoneyReqExpDate\": \"2020-07-11T05:59:58.999\",\n            \"DateOfFunds\": \"2020-07-06T15:27:38.0681264\",\n            \"SecurityQuestionId\": 0,\n            \"SecurityQuestion\": \"What is your favorite book?\",\n            \"SecurityQuestionAnswer\": null,\n            \"TransactionStatusDescription\": \"Completed\",\n            \"TransactionStatusCode\": \"C\",\n            \"TransactionStatusId\": 14007,\n            \"InteracStatusId\": 96311,\n            \"InteracStatusCode\": \"10\",\n            \"InteracStatusDescription\": \"Completed\",\n            \"InteracReferenceNumber\": \"CAM8Fmmn\",\n            \"ParticipantReferenceNumber\": \"100000000125313341\",\n            \"TransactionReferenceNumber\": \"100000000125313341\",\n            \"ClientReferenceNumber\": \"100000000125313341\",\n            \"InteracStatus\": \"Completed\",\n            \"IsDefered\": false,\n            \"TransactionMemo\": \"Test Banking\",\n            \"InserUser\": \"berkantloslms@dcbank.ca\",\n            \"SenderName\": \"1Finitive Financial\",\n            \"ApplicationId\": 1,\n            \"SenderBank\": \"\",\n            \"SenderTransit\": \"\",\n            \"ErrorDescription\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e75fbd96-3768-4b8a-834a-c66d8bcfa4b4"}],"id":"1b824f15-2a1e-4c3b-8fbd-bece50b6aad5","event":[{"listen":"prerequest","script":{"id":"5b1384dc-5a8b-4e6e-a71b-1343ef524225","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0403aede-5e7f-4fd6-a287-852b01c7ce0e","type":"text/javascript","exec":[""]}}],"_postman_id":"1b824f15-2a1e-4c3b-8fbd-bece50b6aad5","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"AML/KYC","item":[{"name":"Manual Kyc Application Verifications","item":[{"name":"Digital ID","item":[{"name":"Send Digital ID Request","id":"f0cf8692-6cb6-447d-860b-5e08332b809e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppDigitalIdVerificationRequest","description":"<h3 id=\"description\">Description</h3>\n<p>The Send Digital ID Request API sends the manual KYC App Digital Id verification request.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendIdentificationImageUploadRequestOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>AmlKycHelperSendDigitalIDImgUploadRequest_InvalidParameterId1</td>\n<td>Kyc Manual Application Request Empty.</td>\n</tr>\n<tr>\n<td>AmlKycHelperSendDigitalIDImgUploadRequest_InvalidParameterId2</td>\n<td>Kyc Manual Application Not Found.</td>\n</tr>\n<tr>\n<td>AmlKycHelperSendDigitalIDImgUploadRequest_NotActivated</td>\n<td>Digital Identification Method Is Not Activated For This Record.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","SendManualKycAppDigitalIdVerificationRequest"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"62e7e1fd-6c52-4c72-909b-206ed5fa6635","name":"Send Digital ID Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppDigitalIdVerificationRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:35:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 70,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f0cf8692-6cb6-447d-860b-5e08332b809e"},{"name":"Upload Digital ID Photo","id":"cfc73fad-8f75-482f-8ec0-5dd20de9262f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"55","type":"text"},{"key":"UserPhoto","type":"file","src":"/C:/Users/dcbank/Desktop/26449.png"},{"key":"IdentityPhotoFront","type":"file","src":"/C:/Users/dcbank/Desktop/cbimage (1).png"},{"key":"IdentityPhotoBack","type":"file","src":"/C:/Users/dcbank/Desktop/cbimage (2).png"},{"key":"Referrer","value":"https://www.google.com","type":"text"},{"key":"UserAgent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36","type":"text"},{"key":"IpAddress","value":"78.186.26.36","type":"text"}]},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/UploadManualKycAppIdentificationImage","description":"<h3 id=\"description\">Description</h3>\n<p>The Upload Digital ID Photo APP uploads the KYC App Identification image.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdentityPhotoFrontId</td>\n<td><em>Numeric</em></td>\n<td>An identifier indicating the front of the proof of identity photo.</td>\n</tr>\n<tr>\n<td>IdentityPhotoBackId</td>\n<td><em>Numeric</em></td>\n<td>An identifier indicating the back of the proof of identity photo.</td>\n</tr>\n<tr>\n<td>UserPhotoId</td>\n<td><em>Numeric</em></td>\n<td>The users photo identifier.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UploadIdentificationImage_MissingFile</td>\n<td>Missing Image File</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","AmlKyc","UploadManualKycAppIdentificationImage"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"aec6f672-d56c-449b-93f2-8fcbc08cf4e5","name":"Upload Digital ID Photo","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"55","type":"text"},{"key":"UserPhoto","type":"file","src":"/C:/Users/dcbank/Desktop/26449.png"},{"key":"IdentityPhotoFront","type":"file","src":"/C:/Users/dcbank/Desktop/cbimage (1).png"},{"key":"IdentityPhotoBack","type":"file","src":"/C:/Users/dcbank/Desktop/cbimage (2).png"},{"key":"Referrer","value":"https://www.google.com","type":"text"},{"key":"UserAgent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36","type":"text"},{"key":"IpAddress","value":"78.186.26.36","type":"text"}]},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/UploadManualKycAppIdentificationImage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Jan 2022 14:30:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"IdentityPhotoFrontId\": 33701,\n        \"IdentityPhotoBackId\": 33702,\n        \"UserPhotoId\": 33700\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"cfc73fad-8f75-482f-8ec0-5dd20de9262f"},{"name":"Process Digital ID","id":"cb07e898-970a-497a-9b20-63fde1fe3162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212,  \n  \"ForceCheck\" : false\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/ProcessManualKycAppDigitalIdVerification","description":"<h3 id=\"description\">Description</h3>\n<p>The Process Digital ID API manually verifies the KYC Digital Id Verification.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ForceCheck</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Indicates the duplicates check.  <br />  <br />A <code>True</code> or <code>False</code> value.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProcessDigitalIdentityVerificationOp_KycManualNotFound</td>\n<td>Manual KYC Application Was Not Found.</td>\n</tr>\n<tr>\n<td>ProcessDigitalIdentityVerificationOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","ProcessManualKycAppDigitalIdVerification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fab8e459-8fe9-4f50-9fa8-a5ac07e352b2","name":"Process Digital ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55,  \n  \"ForceCheck\" : true\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/ProcessManualKycAppDigitalIdVerification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:34:47 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"131","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 27,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"cb07e898-970a-497a-9b20-63fde1fe3162"},{"name":"Get Digital Id Result","id":"323c9991-5f86-444c-af35-24db1c9fad10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppDigitalIdResult","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Digital ID Result API provides the result of the KYC App Digital ID verification.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>The street address provided by the applicant in their application.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>The street address provided by the applicant in their application.</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>The postal code provided by the applicant in their application.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country provided by the applicant in their application.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province provided by the applicant in their application.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city provided by the applicant in their application.</td>\n</tr>\n<tr>\n<td>CanadaPostScore</td>\n<td><em>Numeric</em></td>\n<td>The score given by canada post ranking the identity match.</td>\n</tr>\n<tr>\n<td>UserPhotoId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the user photo provided.</td>\n</tr>\n<tr>\n<td>IdentityPhotoId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the identity photo provided.</td>\n</tr>\n<tr>\n<td>IdentityPhotoBackId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the back of the identity photo provided.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The applicants first name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The applicants last name.</td>\n</tr>\n<tr>\n<td>CardIdType</td>\n<td><em>String</em></td>\n<td>The type of product used for proof of identity.</td>\n</tr>\n<tr>\n<td>CardIdNumber</td>\n<td><em>Numeric</em></td>\n<td>The number of piece of proof of identity.</td>\n</tr>\n<tr>\n<td>CardBirthDate</td>\n<td><em>DateTime</em></td>\n<td>The applicants birthdate indicated on the piece of proof of identity.</td>\n</tr>\n<tr>\n<td>CardIdExpDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of proof of identity.</td>\n</tr>\n<tr>\n<td>CardIssueDate</td>\n<td><em>DateTime</em></td>\n<td>The date the piece of identification was issued to the applicant.</td>\n</tr>\n<tr>\n<td>CardPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>Where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CardCountry</td>\n<td><em>String</em></td>\n<td>The country where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CardProvince</td>\n<td><em>String</em></td>\n<td>The province where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>IdQuality</td>\n<td><em>Decimal</em></td>\n<td>A numeric value of the quality of the piece of dientification.</td>\n</tr>\n<tr>\n<td>PhotoIdMatch</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating how well the photo matches the piece of identification photo.</td>\n</tr>\n<tr>\n<td>IdInfoMatch</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating how well the applicants given information matches that of the piece of identification.</td>\n</tr>\n<tr>\n<td>IdFacePhotoMatch</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating how well the photo matches the piece of identification photo.</td>\n</tr>\n<tr>\n<td>PhotoQuality</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating the quality of the image provided.</td>\n</tr>\n<tr>\n<td>BirthdateMatch</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating how well the applicants given information matches that of the piece of identification.</td>\n</tr>\n<tr>\n<td>NameConfidence</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating how well the applicants given information matches that of the piece of identification.</td>\n</tr>\n<tr>\n<td>AddressConfidence</td>\n<td><em>Decimal</em></td>\n<td>A numeric value indicating how well the applicants given information matches that of the piece of identification.</td>\n</tr>\n<tr>\n<td>AvgScore</td>\n<td><em>Decimal</em></td>\n<td>The overall average score of how well the applicants given information matches that of the piece of identification.</td>\n</tr>\n<tr>\n<td>IpAddress</td>\n<td><em>String</em></td>\n<td>The IP address of the user of the application.</td>\n</tr>\n<tr>\n<td>UserAgent</td>\n<td><em>String</em></td>\n<td>The user of the application.</td>\n</tr>\n<tr>\n<td>Referer</td>\n<td><em>String</em></td>\n<td>The referer.</td>\n</tr>\n<tr>\n<td>IpCountry</td>\n<td><em>String</em></td>\n<td>The country where the IP address originates.</td>\n</tr>\n<tr>\n<td>IpProvince</td>\n<td><em>String</em></td>\n<td>The province where the IP address originates.</td>\n</tr>\n<tr>\n<td>IpCity</td>\n<td><em>String</em></td>\n<td>The city where the IP address originates.</td>\n</tr>\n<tr>\n<td>IpLocationLatitude</td>\n<td><em>String</em></td>\n<td>The latitude of where the IP address originates.</td>\n</tr>\n<tr>\n<td>IpLocationLongitude</td>\n<td><em>String</em></td>\n<td>The longitude of where the IP address originates.</td>\n</tr>\n<tr>\n<td>IsAnonymous</td>\n<td><em>Boolean</em></td>\n<td><code>True</code> or <code>False</code> value indiciating whether the IP is anonymous or not.</td>\n</tr>\n<tr>\n<td>IsAnonymousVpn</td>\n<td><em>Boolean</em></td>\n<td><code>True</code> or <code>False</code> value indiciating whether the VPN is anonymous or not.</td>\n</tr>\n<tr>\n<td>IsAnonymousHosting</td>\n<td><em>Boolean</em></td>\n<td><code>True</code> or <code>False</code> value indiciating whether the IP is anonymously hosting or not.</td>\n</tr>\n<tr>\n<td>UserType</td>\n<td><em>String</em></td>\n<td>The user type.</td>\n</tr>\n<tr>\n<td>Isp</td>\n<td><em>String</em></td>\n<td>The ISP.</td>\n</tr>\n<tr>\n<td>Organization</td>\n<td><em>String</em></td>\n<td>The organization.</td>\n</tr>\n<tr>\n<td>IpPostalCode</td>\n<td><em>String</em></td>\n<td>The postal code of where the IP address originates.</td>\n</tr>\n<tr>\n<td>IdCountry</td>\n<td><em>String</em></td>\n<td>The country indicated on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdProvince</td>\n<td><em>String</em></td>\n<td>The province indicated on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdCity</td>\n<td><em>String</em></td>\n<td>The city indicated on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdUnit</td>\n<td><em>String</em></td>\n<td>The unit number indicated on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdStreet</td>\n<td><em>String</em></td>\n<td>The street indicated on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdStreetNumber</td>\n<td><em>Numeric</em></td>\n<td>The street number indicated on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdPostalCode</td>\n<td><em>String</em></td>\n<td>The postal code indicated on the piece of identification.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperGetDigitalIdentityVerificationResult_nullKyc2</td>\n<td>Manual Kyc Application Was Not Found.</td>\n</tr>\n<tr>\n<td>GetDigitalIdentityVerificationVerifyResultOp_NullRequest</td>\n<td>Request Cannot Be Null</td>\n</tr>\n<tr>\n<td>AmlKycHelperGetDigitalIdentityVerificationResult_NotActivated</td>\n<td>Digital Identification Method Is Not Activated For This Record.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetManualKycAppDigitalIdResult"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"620ff317-3a01-4864-9524-e321a174f50f","name":"Get Digital Id Result","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppDigitalIdResult"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:32:18 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"670","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AddressLine1\": \"1078 6 Ave SW\",\n        \"AddressLine2\": \"\",\n        \"PostalCode\": \"T2P 5N6\",\n        \"Country\": \"Canada\",\n        \"Province\": \"Alberta\",\n        \"City\": \"Calgary\",\n        \"CanadaPostScore\": 0,\n        \"UserPhotoId\": 33795,\n        \"IdentityPhotoId\": 33793,\n        \"IdentityPhotoBackId\": 33794,\n        \"FirstName\": \"MY PLACE STREET\",\n        \"LastName\": \"SAMPLE SAM\",\n        \"CardIdType\": \"drivers-license\",\n        \"CardIdNumber\": \"134711-320\",\n        \"CardBirthDate\": \"1971-11-20T00:00:00\",\n        \"CardIdExpDate\": \"2023-11-20T00:00:00\",\n        \"CardIssueDate\": \"2018-05-17T00:00:00\",\n        \"CardPlaceOfIssue\": \"Canada, Alberta\",\n        \"CardCountry\": null,\n        \"CardProvince\": null,\n        \"IdQuality\": 0.9,\n        \"PhotoIdMatch\": null,\n        \"IdInfoMatch\": 0,\n        \"IdFacePhotoMatch\": 0.98,\n        \"PhotoQuality\": 0.87,\n        \"BirthdateMatch\": 0,\n        \"NameConfidence\": 0,\n        \"AddressConfidence\": 1,\n        \"AvgScore\": 0.73,\n        \"IpAddress\": \"72.2.60.162:52844, 192.168.0.6\",\n        \"UserAgent\": null,\n        \"Referer\": null,\n        \"IpCountry\": null,\n        \"IpProvince\": null,\n        \"IpCity\": null,\n        \"IpLocationLatitude\": null,\n        \"IpLocationLongitude\": null,\n        \"IsAnonymous\": null,\n        \"IsAnonymousVpn\": null,\n        \"IsAnonymousHosting\": null,\n        \"UserType\": null,\n        \"Isp\": null,\n        \"Organization\": null,\n        \"IpPostalCode\": null,\n        \"IdCountry\": null,\n        \"IdProvince\": null,\n        \"IdCity\": null,\n        \"IdUnit\": null,\n        \"IdStreet\": null,\n        \"IdStreetNumber\": null,\n        \"IdPostalCode\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"323c9991-5f86-444c-af35-24db1c9fad10"},{"name":"Verify Digital Id","id":"8051cac7-78dd-473c-a862-0366ecbeb456","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/VerifyManualKycAppDigitalIdVerification","description":"<h3 id=\"description\">Description</h3>\n<p>The Verify Digital ID verifies the manual KYC App Digital Id Verification has been completed.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperSaveVerifiedDigitalIdVerification_KycNotFound</td>\n<td>Manual KYC Application Not Found.</td>\n</tr>\n<tr>\n<td>AmlKycHelperSaveVerifiedDigitalIdVerification_NotProcessed</td>\n<td>Digital ID Cannot Be Saved As Verified Because The Digital ID Is Not Processed Yet.</td>\n</tr>\n<tr>\n<td>VerifyDigitalIdentityVerificationOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","VerifyManualKycAppDigitalIdVerification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"330932b8-7e30-457a-bf6c-67a42967a662","name":"Verify Digital Id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/VerifyManualKycAppDigitalIdVerification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:31:37 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8051cac7-78dd-473c-a862-0366ecbeb456"},{"name":"Get Image","id":"7a2d51be-7156-41a8-98cc-dea5acc05693","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetImage?Id=84677&Width=50&Height=50&Stretch=false","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Image API retrieves the image uploaded.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ImageUtils_EmptyFile</td>\n<td>Image File Is Empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetImage"],"host":["{{baseUrl}}"],"query":[{"key":"Id","value":"84677"},{"key":"Width","value":"50"},{"key":"Height","value":"50"},{"key":"Stretch","value":"false"}],"variable":[]}},"response":[{"id":"625709c3-a1de-4b5f-b6ac-16668508d2e8","name":"Get Image","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetImage?Id=32877&Width=50&Height=50&Stretch=false","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","AmlKyc","GetImage"],"query":[{"key":"Id","value":"32877"},{"key":"Width","value":"50"},{"key":"Height","value":"50"},{"key":"Stretch","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:46:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"4403","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": \"iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABAjSURBVGhD7ZlpVFTXlsdLXxKTTjrmmdfRGOOEU3CKUURFBRmUUeZ5LCwoKCigKIYqoJB5lqmoYpZ5nlHQOCEgTjhr9OW95LXp12t1f7ndq+zPWf/e5xalOCSf3rfHXeu39j3DLfb/7L3PPVcFC9fCtXAtXAvXwrVw0fXixf89r64/rZMnpeqSUjJ1iYoMnTxZRe00XTz1/SOQvSRFJ0tM0UniknRXrlzW/f0//qb7+aenxLM5O/9eb//65x90z54+0j394eFbPHn8QPff//Wful9//fW5oKqm8YXJYRsctHLAAUt7mJofw95DR3lMDtroOWSDPXOW8XKctQ1z5s01zGHtt3/HGttNDqOjswM//fgYjx7M/iYP7t/CvdnrmL05jds3Jt/i1vWruHd7Br88//cXgkSlijtk7Ygjtq44bOMEds9EMd68N7R/b8677g+y+3ltExLT1t6Gp0/u487sDT13Xrd3ScBtEnD92gRmpi6/YnqOufbNmau4+P04J1Cocjj24+ZHj78U8o/gsNW7+9nfYlFqbW/Fk8d3MUsr+hazM7h9axo3ZiYwTc5OTV76Ta7TnNHRYb0QM0u9EIMYA/Pb88ff6idrYUlRPeKAI2QtSASDbxPs3jCfYWpui9Y2EvJoFrO3pnju3Z2hCN3Gj8/u4MnDm7h7e5r6J3H/7jU8JG5dn8DU1QuYnNAzNcfM9BWMjvBCcnkhR2xdYGnnyluLY84vmd//Lqysj8OS5pl5emO3MBA7JaHYESvCjhgRdkUKYRIcgIPOHrCycYb1Uf1vH6C/10ZCHrMaIIf//GQWN65dRU1NCyKlWTjqEIHvTH2xZ6837OzDkSDPRm93D82dwq2Zy7h6+TzPJDFDURkZGdILOWztBCt7Nx4W+qNOHnB083sZBWsH95fjBqyppqyPueCAnx+2ycXYeFKKDZkxejLmmGtvVkVjp1SEQ+5esCExLMWaW5rx4xNKLaqD9MwymJgF4d++tsOHy45A8L4pBIKdxHbCmPgGSz7aCzu7UHR3deMOCbpy6RwuXzzHR2d4eIATKDNyOYujzrBx9IQlOZiYchKa2kZo606jpFwDd99QiogbP27gmL07rJ08sSvqBDaSw4xN5OxvsTE9mhfE7vcJg2Fu6YS+vm5y5BKs7CKwbKUtVq53wldGx/GvX1hh8Uf7sOj9PfMwgWDRLl7Qx5+YIiW1kGpogp4fw8SV8xgaIiGpWXmcpZ07jh33Jie9SEgmGprbcbqlE2XqGrj7neCdt3X2pTk+sHX0xlEXX+yIj4ARObfxDad/l3R91HZFhCI9rxymB4UUBXus/8Ydaza5kKBjeO8TMwg+mC/idfSRMoYkSkV1c5nEjGNwsJ8TqLLzORsHDzi4+ZKzPrCw9YA4JhmK9Dwc9wyhKOnH7F394ODqC0cSsys2nBfxpqMbTkbDKIOcpTRjlvHmnHUUnQPZUgjtvPD5104w2uqBdVtc8cUaByxZeoic/JZfeYFgK++wQLANgj/sfl3MYhadrcjMKKHt9wr6+7s5QVZuEXfMyQuO7gFw8w5AYJAffPy84OXrhaCQQPgEBNIYwx8urgE4HHaCHHxdBJ865Pz2JAn2ScJgLqJ6CBdhT2wEtqRG8WOGuSspKqWyIPwl3APme9zx5UY3SiknvP/pYXLuOxhvc0FAUDziZBkIFSVj7z5vEvIdje0gESZzYijVKDKfLTuEocE+KvZBEpJXzNm7+MPWNQQJsUG41h+OqaFo3BiX49F0CpqqpbB1CYILRee4jxBblcyxVyI2kAhmD4vD4OIVAnf3ILgR7u7BZINh7x+KXfJIGJGY1STCUinG/QhPPJd6otrDHZ+vP46P/miBpX8yh0pVgEsXz9D7gXakiXHabs9RDYyjolyL1Wtt+Oi8LmYL/ANkuHjxDCfIyS/jnOgP27uFQpkYijvjUsxeSMC9KQV+uK5AW50UDu5CeHpS0YdTSr2RLiwaVmHh8KZxd58T89C3vVi/dyh2yyVYTpHMlgXj53B3PIr0wF2KypZ1R/HBZ+aorNRienIcZ4ZphYd6eYaJUeLq5bPo6erEylVWc5F5VS/LV1qjo6ODE+QWVHDO3kI4eIqgUobhyYQcD0jE/alkPJlMQKs2Ek4eJ+DtGwZTmYRW9pUIdr8vTgIfHxE8/MPgERAO10AiQAS3IHYfxuNJ/fbCcGxOi8JwtB+eiT3wgPhZfBx26/bBIyQZ0xNjGB7oxghjsIdgVg/rv3rpDLKySmj32kGpNifkPWLRt7SLFXCCvKJKzpVWzsVXDEVSJCbPJOHicCK+74vH5b4YqAvIIZ9weAWKsVNBaTWXSnw0CCdRBHz9xfANEMPxRAS2pkZjawojas7q2ayMxn5lBG5IvPCIRNwXueBZgA1yzI9AW9+MMYrEEG3JQ31d74QJHBvph9FGBz4Sr6KyA6JwBSfIL63iPALC4CuUwI8ICI3UcyIS/kIxfIQR8AuJgleohHfIsN0yQaztxZ4LoeeCJXAU6yPGxt5kFdWIDQl5QPXxUOSKu4H2uOu8H2PB7ujp70V/bxf6ezp/lwvnhnHM7gQ5v/W19AoTKzlBQXkV5xkcAX9RNPxEUviGEif0+IRGk40mUVJ4h0n51WZOGYRsp1X2pefYs4E093ikvmYMEZsPK3RbhRgPqT4ehDhh1ssSt+13Y0LshZ7BXvT0dBDtetvNrAHWr+87Pz4IZ9fIN4TsQDgTUlSh5XyE0QgOl5HDMfCh1WfWj/qCwuJ46x9CIknMpkQxjFRRvGMbmFVGwkcciwChFIE0x4mErE2PwlqVBF8pw7Emle1W+lpaniaBRaIQP4Q44IHbQdx22IMH1saoPXYENc0t6CWnu7vIcXK4u6sNXZ2tL63+vhVjZ/qxz8yHnN9A9aF/t7xMrTJ1LRckkvFOx8hVyC2shFSejpSMQoSI45Gclgdlej5kibSvVxTDODMWG8gp45Ox2FuQDOeYOCgVOUhR5UOsOAlTRQwOqeQQaUvhWKDC7sQoHsucVEhy0zAgCcGFtARciRPifo4c2cFh/EliiIq6s6MFXR16AcNDA+jr7aT+XgwO9GKIaqS+rh5fr7WF6X5/fPTJAf5FyVJLGpPJCcqrGriQ8Hg+Ihk5pSgurUayKhe5xZWIJmHZBWWo0DYgOjYVVe0dOFCkxJqUCOzIlCG1rwUhpQVILzyFolMaFJVUQXWyEGJJEoppQYqK1AgJkyH0RBxOldegqbUTBXEy9Gm1GKdVvtDWAC0dg1QnizEyPEBCmtHe1sRHZnzsDAb6e9hbG+fGRnFt6hJKy+rwxUobhIal44/0MhQs2kmC9kOjqeEEFdrTnFCSCGGEHJl5pdDUNfHHk5rGNpRrGlBT30LRKUC8IhONbZ3Yl5+MdSxlaCv1qy6Gf30pvHIzUF/bAk1VAx3gxvi5OYUViEtIR1SUAm7SOATXVSCvWYPHnha4R+n1MFWCGZUMFmZ+2LLNg471VPB97VT0rRSNPpw/d5ZSqgXnxodxbfoSZLKTcPeMxwoSEhaRAeMdHhSNjdhv5kuL0McJ1DXNnEiqQERcKmIofVIyiyAlm5pZjNjkLCSk5kKekgOZIgtpJ4tgoYinOpBgEwlZlxLJH9F35yfBKkcJf0UKkikiUvlJRMWrIIxXwjZJjtWKcCwn8UflQtxw3oc7rmZ46mMOb1NHWtFDWPGVDZZ/aYndJu7Izi4kUc2UTl18qqnpRWnnICKn6UhPZ6xPPjuEtUaOeO8DerMv3onc3GI6NNJZq6q2lYuQqXjnw0iQX2gMgsQyhETKEUW1EilLg4ScYkTFpSE8QYVtaVKsp4LelEa7FAkyotVlhb2e1Y5Cgj0psdhNbKHxr9Mi8EVCKARRvlgXZI8bDib4q8tulJmyIwY7GNILjv/uYIdFsnRcX/GVFTZutseqNUepoFkd0OGR1QMVuP7cxU7AW+ijS0Qvy060tbZyAm1jGxeVkMGvPnNaFJ1MgpIhjk1BnCIbMUmZPGyc2fjETAQqVPz7hBczt70aYLvZeoLtbutJ3JdJIvwpLgjvkxCzeCF+ivHGaIAbvlxmhvWbnGG83Q2btjjzDvO7EHOWF8UEkiXHDVutfpztVMbYvtOFBJxGe2sjWltbOEFNUycXQw7LWPoQ8ZRKMkaKAdY/716ZgyRlHoJS02FMkVmjinz7m4SitIGi9HVyOFYlirAqPhQfxwTAhca+T4qnk0ACVlJ6HDQPoY80+qzd68tHYr7D70Iv0Bi793qgsaEWrS31ZGvIMiEt3VxcWj4SKLfl6QWQ0wmUkZBeiETqS6A+NsasoS2nMaWqGFLaFA6rEviUWpOmTy0jBolYTS+/ZfHBWBLlBUGEGz6M8sHOwGB8+qkZPvj4AP6wxARLPtyL1euOYce3ruQgSy/69mDOLmYpRDArYN8eLDpbsXTpfjrtxlAkGtDcVEsbjBYN9dUkpJkTNHcMcUkZp6DMLkVKTpneZpfp77MM9+X8vTL7FN0zS300L53mqLLKEZlVALuMFOyhXWgLvf3XkogVVNifRwdgpSQIJtESBCWq4OUfTytPOb5Yny7MwfUb7dB0uo52pVTs2++J5SuOYMm/mPLj7y3Zi6W0zW7+xg6+PlEoKy2l7bkedTVVqKlWo5ZsfZ0WLUxIe98ol1mkRU5JNbKKtQTZompkk80uruGtvl2DnFOsTXP4tpaHPZdHY/lFtcgs1CKZtl1pdjHCVDmIoBdlvLIAycpiJKUV0+lAgUUsx4lF9DnLVn+NkS0aaVXbW+vRRqmi1ahRkF9IX3/0LsvJR0VZGf9+6WxvpPFGPqWY8Pq6atRRRJiYluYmTjAwcokrqWpGSVUTyqpbUdPUjYaWXjS190PT2IHymla0dA7iNGs3dKKutY/vZ/NLNM04xaDni/nfIFvZiPzSOmSTqPRcDVJz1BRFNTJJvEiaRSLow4iELGbb55yQ2toqVNMKa7WVdK9Gfb2GHKa0adBQXzmGh/sxcfUyJicnMD09ibNnRzE9NUnvrH6o1aWUZqc5wcj3VzlNUx+dd4iWftS29ZGz/agnalv0/cz5OjZGbQPV1G9A29QLDVF1uhcV9Z0o1rSgsLIZ+RVNBLMksrod0cnF+l2HvicEc8W7ej0JqVGjmkRoNBUUkQreGlBXlqKpqR43b17H+LkxnD8/jpmZady6dZMXVFl5Co2NtZzg5+d/f9E3NoGWvjFi/BX9zLK+MTT3Em+O87Cxs2jqOUOcRUPnKKpbB6FuGkDl6f6XVDTSgrSPIDGjipxnRc2KV1/AK1ZZokpdhsqKUvqkPfUOSniq1OUkqpxEa3jR6soyaKivpLgAXV1dLwTsn+T/5391uonJGd3o2QvEed3wmXO6IcboWd0wMTTK7omRMwS1R87pBskOUptnWM/A0Iiuf3D4bQaG+bHO7n5dXn4VodblF6h1eXmVupJT1bre3h5db0+Prqen+y0M/d3dXYTBdumf6e3VXbhwQffLL788n/tfkoVr4Vq4Fq6Fa+H6Z74Egv8HEzdhBgnt9fkAAAAASUVORK5CYII=\",\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"7a2d51be-7156-41a8-98cc-dea5acc05693"}],"id":"a60c30ff-b510-488b-b792-066b13261f19","_postman_id":"a60c30ff-b510-488b-b792-066b13261f19","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Account","item":[{"name":"Submit Account Verification","id":"c237b155-d060-4c55-8a76-25589cc47dde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Id\":20212,\n\t\"Institution\": null,\n\t\"RequestId\": null,\n\t\"FlinksAccount\": {\n\t\t\"TransitNumber\": null,\n\t\t\"InstitutionNumber\": null,\n\t\t\"EftEligibleRatio\": 0.0,\n\t\t\"Title\": null,\n\t\t\"AccountNumber\": null,\n\t\t\"Balance\": {\n\t\t\t\"Available\": null,\n\t\t\t\"Current\": null,\n\t\t\t\"Limit\": null\n\t\t},\n\t\t\"Category\": null,\n\t\t\"Currency\": null,\n\t\t\"Holder\": {\n\t\t\t\"Name\": null,\n\t\t\t\"Address\": {\n\t\t\t\t\"CivicAddress\": null,\n\t\t\t\t\"City\": null,\n\t\t\t\t\"Province\": null,\n\t\t\t\t\"PostalCode\": null,\n\t\t\t\t\"POBox\": null,\n\t\t\t\t\"Country\": null\n\t\t\t},\n\t\t\t\"Email\": null,\n\t\t\t\"PhoneNumber\": null\n\t\t},\n\t\t\"Id\": null\n\t},\n\t\"Login\": {\n\t\t\"Username\": null,\n\t\t\"IsScheduledRefresh\": false,\n\t\t\"LastRefresh\": \"0001-01-01T00:00:00\",\n\t\t\"Type\": null,\n\t\t\"Id\": null\n\t}\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SubmitManualKycAppAccountVerification","description":"<h3 id=\"description\">Description</h3>\n<p>The Submit Account Verification API submits the details of the account for verification.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>VerifyKycFlinksAccountOp_KycNotFound</td>\n<td>Manual Kyc Application Not Found.</td>\n</tr>\n<tr>\n<td>VerifyKycFlinksAccountOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>VerifyKycFlinksAccountOp_KycNotFound</td>\n<td>Manual KYC Application Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","SubmitManualKycAppAccountVerification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c237b155-d060-4c55-8a76-25589cc47dde"},{"name":"Send Account Verification Request","id":"11dbd1ce-e9ee-4cf1-aef6-6cdbb02fbe27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppAccountVerificationRequest","description":"<h3 id=\"description\">Description</h3>\n<p>The Send Account Verification Request API sends the account details for verification.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperSendAccountVerificationRequest_InvalidParameterId2</td>\n<td>Kyc Manual Application Not Found.</td>\n</tr>\n<tr>\n<td>AmlKycHelperSendAccountVerificationRequest_NotActivated</td>\n<td>Account Verification Method Is Not Activated For This Record.</td>\n</tr>\n<tr>\n<td>SendKycAccountVerificationEmailRequestOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","SendManualKycAppAccountVerificationRequest"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3d1b18cc-dfbd-4de2-b9c0-dbe9b9ca937f","name":"Send Account Verification Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppAccountVerificationRequest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:49:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"131","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 71,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"11dbd1ce-e9ee-4cf1-aef6-6cdbb02fbe27"},{"name":"Get Verified Account","id":"56063455-7bb1-466a-80b0-297d2f2d49b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppVerifiedAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Verified Account API retrieves the verified account information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Numeric</em></td>\n<td>The account ID.</td>\n</tr>\n<tr>\n<td>Title</td>\n<td><em>String</em></td>\n<td>The title on the account.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td><em>String</em></td>\n<td>The currency of funds in the account.</td>\n</tr>\n<tr>\n<td>Category</td>\n<td><em>String</em></td>\n<td>The category of account.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the account owner.</td>\n</tr>\n<tr>\n<td>CivicAddress</td>\n<td><em>String</em></td>\n<td>The street address of the account owner.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city in which the account owner resides.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province in which the account owner resides.</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>The postal code in which the accout owner resides.</td>\n</tr>\n<tr>\n<td>PoBox</td>\n<td><em>String</em></td>\n<td>The mail box of the account owner.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country in which the account owner resides.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The account owners email.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The phone number of the account owner.</td>\n</tr>\n<tr>\n<td>AvailableBalance</td>\n<td><em>Decimal</em></td>\n<td>The available balance in the account.</td>\n</tr>\n<tr>\n<td>CurrentBalance</td>\n<td><em>Decimal</em></td>\n<td>The current account balance, includes any pending funds going into or out of the account.</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td><em>Decimal</em></td>\n<td>The account limit if one exists.</td>\n</tr>\n<tr>\n<td>Institution</td>\n<td><em>String</em></td>\n<td>The institution the account is with.</td>\n</tr>\n<tr>\n<td>Username</td>\n<td><em>String</em></td>\n<td>The username.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>The type of account.</td>\n</tr>\n<tr>\n<td>InstitutionNumber</td>\n<td><em>Numeric</em></td>\n<td>The bank number.</td>\n</tr>\n<tr>\n<td>TransitNumber</td>\n<td><em>Numeric</em></td>\n<td>The transit number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetKycVerifiedFlinksAccountOp_KycNotFound</td>\n<td>Manual KYC Application Not Found.</td>\n</tr>\n<tr>\n<td>GetKycVerifiedFlinksAccountOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetManualKycAppVerifiedAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b845d660-f0e1-49f7-ac0e-86a93aac450d","name":"Get Verified Account","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppVerifiedAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 12:56:17 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"284","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"AccountId\": null,\n        \"Title\": null,\n        \"AccountNumber\": null,\n        \"Currency\": null,\n        \"Category\": null,\n        \"Name\": null,\n        \"CivicAddress\": null,\n        \"City\": null,\n        \"Province\": null,\n        \"PostalCode\": null,\n        \"Pobox\": null,\n        \"Country\": null,\n        \"Email\": null,\n        \"PhoneNumber\": null,\n        \"AvailableBalance\": null,\n        \"CurrentBalance\": null,\n        \"Limit\": null,\n        \"Institution\": \"TD\",\n        \"Username\": null,\n        \"Type\": null,\n        \"InstitutionNumber\": null,\n        \"TransitNumber\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"56063455-7bb1-466a-80b0-297d2f2d49b7"},{"name":"Get Account  Summary","id":"a054877e-ffea-4262-945f-b62ebe3c5c0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"RequestId\": null,\n  \"LoginId\": null,\n  \"Institution\": null\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppAccountVerificationSummary","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Account Summary API retrieves the account summary for the Customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RequestId</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates request ID for the linked account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LoginId</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates login ID for the linked account.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Institution</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates the Institution name.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperGetAccountSummary_InvalidId1</td>\n<td>Request ID Is Invalid.</td>\n</tr>\n<tr>\n<td>FlinksHelper_NetworkError</td>\n<td>Flinks Service Network Access Error.</td>\n</tr>\n<tr>\n<td>GetKycFlinksAccountSummaryOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetManualKycAppAccountVerificationSummary"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"01b21f1f-6bf0-47ec-ac56-8827ded39c64","name":"Get Account  Summary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"RequestId\": \"3e5add80-25b9-4e65-bc7f-37a565aa43fe\",\n  \"LoginId\": \"ec70f844-5da3-4482-43e0-08d8193ed080\",\n  \"Institution\": \"TD\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppAccountVerificationSummary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 13:04:24 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"285","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"HttpStatusCode\": 400,\n        \"Accounts\": null,\n        \"Links\": null,\n        \"Login\": null,\n        \"Institution\": null,\n        \"RequestId\": null,\n        \"Tag\": null,\n        \"Message\": \"RequestId 3e5add80-25b9-4e65-bc7f-37a565aa43fe is invalid or session has ended\",\n        \"FlinksCode\": \"SESSION_NONEXISTENT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a054877e-ffea-4262-945f-b62ebe3c5c0c"}],"id":"3708f6ee-b3c7-4cab-b08d-f86e46e41d50","_postman_id":"3708f6ee-b3c7-4cab-b08d-f86e46e41d50","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Document","item":[{"name":"Get Document List","id":"4b5a8255-9d26-417a-9476-ad5a90cf0bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppDocumentList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Document List API retrieves the list of the Client's documents.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>DocumentType</td>\n<td><em>Numeric</em></td>\n<td>The type code of the document.</td>\n</tr>\n<tr>\n<td>VerificationType</td>\n<td><em>Numeric</em></td>\n<td>The code indicating the way in which the document was verified.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetDocumentListOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetManualKycAppDocumentList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e62bc2a-173b-452a-9c59-103e4435fcfc","name":"Get Document List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycAppDocumentList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 13:09:48 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"163","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 2,\n            \"DocumentType\": \"1\",\n            \"VerificationStatus\": \"1\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"4b5a8255-9d26-417a-9476-ad5a90cf0bff"},{"name":"Delete Document","id":"fae6073f-2141-4ce1-b13b-7bcf42a04f1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 2\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DeleteManualKycAppDocument","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete Document API removes the specified document from the document list.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperKycManualDocumentDelete_NotFound</td>\n<td>Manual Kyc Application Document Not Found.</td>\n</tr>\n<tr>\n<td>DeleteKycDocumentOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","AmlKyc","DeleteManualKycAppDocument"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2301ef05-abe9-4782-8cbf-1de507acba58","name":"Delete Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 2\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DeleteManualKycAppDocument"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Jan 2022 14:48:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"fae6073f-2141-4ce1-b13b-7bcf42a04f1e"},{"name":"Insert Or Update Document","id":"441bfff3-6d00-4ab6-b72e-a95a468aaf13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\":20206,\n  \"DocumentId\": 0,\n  \"DocumentType\": \"1\",\n  \"VerificationStatus\": \"1\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/InsertOrUpdateManualKycAppDocument","description":"<h3 id=\"description\">Description</h3>\n<p>The Insert Or Update API manually updates or inserts a document into the Customer's document list.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DocumentId</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the ID of the document.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DocumentType</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates the type of document.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>VerificationStatus</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates the verification status of the document.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KycManualDocumentInsertOrUpdate_KycNotFound</td>\n<td>Manual Kyc Application Not Found.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateKycDocumentOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>InsertOrUpdateKycDocumentOp_DocumentTypeNotFound</td>\n<td>Document Type Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","InsertOrUpdateManualKycAppDocument"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fc40f69c-b646-4d70-9921-89d7a376f636","name":"Insert Or Update Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\":55,\n  \"DocumentId\": 2,\n  \"DocumentType\": \"1\",\n  \"VerificationStatus\": \"1\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/InsertOrUpdateManualKycAppDocument"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 13:10:58 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"128","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 2,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"441bfff3-6d00-4ab6-b72e-a95a468aaf13"},{"name":"Upload Document","id":"aaa5a11c-7700-4633-9ffb-c07e0a80fb06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"DocumentId","type":"file","value":null}]},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/UploadManualKycAppDocument","description":"<h3 id=\"description\">Description</h3>\n<p>The Upload Document API manually uploads a document to the Customer's list.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The document identifier.</td>\n</tr>\n<tr>\n<td>DocumentType</td>\n<td><em>Numeric</em></td>\n<td>The type of document.</td>\n</tr>\n<tr>\n<td>VerificationStatus</td>\n<td><em>Numeric</em></td>\n<td>The verification status of the document.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperKycManualDocumentUpload_EmptyFile</td>\n<td>File Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","UploadManualKycAppDocument"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ba9b0beb-72b5-4d51-83c9-5f8f9b2888b2","name":"Upload Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"DocumentId","type":"text","value":"3"},{"key":"File","type":"file","src":"/C:/Users/alimu/OneDrive/Masaüstü/postmantest/testone.pdf"}]},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/UploadManualKycAppDocument"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 13:23:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"163","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"Id\": 3,\n        \"DocumentType\": \"4\",\n        \"VerificationStatus\": \"1\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"aaa5a11c-7700-4633-9ffb-c07e0a80fb06"},{"name":"Download Document","id":"ae3820be-1442-4c6a-a17d-b2d721cd3512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"DocumentId\":3\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DownloadManualKycAppDocument","description":"<h3 id=\"description\">Description</h3>\n<p>The Download Document API manually dowonloads the KYC App Document.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DocumentId</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DownloadKycDocumentOp_KycDocNotFound</td>\n<td>Manual Kyc Application Document Not Found.</td>\n</tr>\n<tr>\n<td>DownloadKycDocumentOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","AmlKyc","DownloadManualKycAppDocument"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae3820be-1442-4c6a-a17d-b2d721cd3512"},{"name":"Download Document Base64","id":"aa098e99-d2a2-4bba-8d90-b5f4096adc0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"DocumentId\":46\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DownloadManualKycAppDocumentBase64","description":"<h3 id=\"description\">Description</h3>\n<p>The Download Document Base64 API manually downloads the KYC App Document Base64.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DocumentId</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DownloadKycDocumentOp_KycDocNotFound</td>\n<td>Manual KYC Application Document Not Found.</td>\n</tr>\n<tr>\n<td>DownloadKycDocumentOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","DownloadManualKycAppDocumentBase64"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f82d4d98-2ced-4f3f-8bbe-f8c5a5294d0f","name":"Download Document Base64","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"DocumentId\":2\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DownloadManualKycAppDocumentBase64"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 13:13:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"6170","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": null,\n    \"StackTrace\": null,\n    \"Item\": \"JVBERi0xLjcKJeLjz9MKNSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDEzMzU+PnN0cmVhbQp4nK1a23IbNwx911fwMXmheb/4LZem00yacVP1A1RLSdWxrUaS3d8vseSSkFNpCVkej2XYxDkgDgVhSX6fvZ3Prj5IJgP3ls2/zmSMPFjmQ+QxsPly9uqXpy17t9gu2Zvb/fppsV9vHtin9W7/ev737Kf57LfZ9wqiAMEogHLB86gHAOT3frFfHfNTxnHrsePA+mmx2zPD3q+/rY9TSstdxK43f20eVuzz4/2fqy3yElwaKQNLr9YFB69B6Mi+/Jz+laL+d6Ydcz5wIdn9zNo4Gnez3zsBlEl/i8wLw61LIMUm4xgRuVYNp9hknDShigETKgYFgOvQMLJJDsPawJ3GoQz2M5xBVXW4kJwEQhA1XEl1pYQSLF5bm77Zm1+fLwn1bDU1b3ls6Lh62lA7frmDtROcc549f91+g5xApMpyFZkSmgvPkhHYdjX7enRi2vCgeyZ2ghlWF0wzU0sXuD5JPaalcWutVewjgyUIiSpkJoCUp+ZZEtvIhqSG9GWOipFzIwJX54vevNPstJgSvg2v8VmK8NYreIv3Cm+D5P5CwhfqbuERN6RGkoQfyXqFR2Q1se608GlUKh3nCo+8YXZqQng0vMbnScLLyAVBeDXUvMsIn6n7hW/ckBpNE76QdQvfyGpiw4TwQnFxvvDNGyZ3vLqU+NrwGl9nDczCG2d57BfeeMvthYQv1N3CI25ITWdhK8KPZL3CI7IxsfF4+c25SdjxbOGRN8zueHUp8bXhNb7OGliEl4oHgvBKcXMp4TN1v/CNG1LTWdhG4QtZt/CNrCb2ePkdcqNjQj1beOQNlf54dcnxoeH1Hd9ZA7Pw2kbu+4XXLnXrFxK+UHcLj7hB+EASfiTrFR6RVeH1hPDwcr7wzRsq/VRzh4bX+EjNnRYOcLqFl46rSwmfqfuFb9yQGlpzN5J1C9/IamInmjsVEtPZwiNvmN1Uc4eG1/hIzZ2ymtt+4ZXTXF5I+ELdLTzihtTQmruRrFd4RFYTO9HcqZRRe77wzRtmN9XcoeE1PlJzp4TghiC8FFxcSvhM3S9844bU0Jq7kaxb+EZWEhvFRHMng+bmbOGRN8xuqrlDw2t8pOZOGs91v/DSunG78cXCF+pu4RE3pIbW3I1kvcIjsprYieZOavGCXTvkDbObau7Q8BofqbmLhrJxJ9O4S23cZeZ+2Rs1tHa0fbvC1a1646p1dGLbzvsX7No1Z9A8TmjeRlfJDUVyI0lbduJiO3aZuH/fRqD9OkV9iKNt14kfduvUAV/fSYGzkhu8xZ9t6oGDU4ZHiWCyTYWxMSUaRVNsMoyXPKBoik2GMZYrHE22yTBwXIejyTYVxkTFJYqm2GQYl5YPiqbYZBgducDRZJsMIxW3OJpsU2F0sDyiaIpNhkmP0wZFU2wyjFbp3Y1gsk2GSc94GkeTbSqM8pF7FE2xyTDpwUOhaIpNhlHpwRVHk20yTOqGJY4m21QY6fXBAWexyTCpRRMommKTYZQ4qMXFpsJEfVCKs0ku6P6gEGeTfK5eD+eLnX6S6vDhMXo9VqfCpNCzSz5Up7ujQ/TxTJ0KcniE3greAcx4T0JyNdzvgOsAPn3oqOGD/o/dass+L+5X7Jp9fLxbL9jHZOz+557F6G+8g64QYXxZ/bPZ7tnNarveLHfsGpxfsRMQEIIb+q7hdshyuV3tit8x0uhh2SIvuEjCPmw39518qbeJOdyb7eZp/XC7Oklo4TfsNfDNN51sOn0c5zhvNrv94o692yxXnb5QvVS5N3O7eXzYl1ssP7j/B9lyVsEKZW5kc3RyZWFtCmVuZG9iago0IDAgb2JqCjw8L0NvbnRlbnRzIDUgMCBSL01lZGlhQm94WzAgMCA1OTUgODQyXS9QYXJlbnQgMiAwIFIvUmVzb3VyY2VzPDwvRm9udDw8L0YxIDYgMCBSL0YyIDcgMCBSPj4+Pi9UcmltQm94WzAgMCA1OTUgODQyXS9UeXBlL1BhZ2U+PgplbmRvYmoKOSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDEyOTg+PnN0cmVhbQp4nK1ay24dRRDdz1f0Ejblfj/YBQJsAPG4P+AQJxiRRDEGfp+u2z3ddS3dO1WjsSKNyuk653SdcU3N4/Py9Wm5+84oY9Xp3eItpKBSzlCKOr1dvnj1+/Pjv/fPj58+qtf3zw9fnv5cvj0tvyyfL/OsjxASTfzm/umt+uH+72fl1evH94/P11K9CRALTf35j08fH9RP/3x48/BEsjQYb0xW9RhijnjM2hX16/f1v6rq/xYXVUoFdFYflhDKGvy1/MYEsL7+rqisqyRXQXosxvG6gLMTp8dinLqhgYEb6oEEAFyeGC0UywghYz6Rco5f4JxdtZcnUrTg/dnUfGfsndVWq/JVCPWfevXjy1PCvjibZrZzzoZry9czaC4P+JPrj744f3KMMamXx6f3WBdUa2t5grLagU7KBsjq6WF5d3Vzrq4onM3dYMYzDLfaqE3M4G5Sr6WZ3LU0OvDI8DTEQnUynyHEm/vshZ1ka2GjvmpGqw2e8PuNn9m4u7hl/Fw+9BmJ8TE5sHzjY66Hg4zv1GzjCTeWJomMX8m4xhOyUVh72/gYItjdxpNs3F3eMJ4sH/qcyHiLTY9vvD2X8RjjGzXf+MmNpSky4zsZ2/hJNgrrN4yvNTT7jZ/ZdXfmenfp+ubyoY/ZA5vxISbQfONDqioPMr5Ts40n3FgaZmPrxq9kXOMJ2Sjs9fbbahM06N3Gk2zc3fXu0vXN5UMfswd2442DIjDeOvBHGd+o+cZPbiwNs7GtxncytvGTbBT2evs918aXCGW38SQbh7utazxZPoY70TXex/orvvE+aXAHGd+p2cYTbjTei4xfybjGE7JhfNkw3jvI+42f2bi7TePn8lVfkhmvEx7YxpsE9ijjGzXf+MmNpZENdysZ2/hJNgq7Mdy5Um8IdxtPsnF3W8MdWT70iYY7FzxEvvEuerDH+N6Z2b5PaiyMbLRbubi2T65R1Y3JzrmEDHtdn9nY57cmO7J86BNNdk4bCALXjQFzkOuNme/6oMbCyOa6lYvt+uAaVd0Y62z2yLDTdZKNm9sa68jyoU801tlaCM933YZ8jOedl+35SoxFkQ10KxPX8ZVp1HNjmrPOIP5ev2c2bu16R+ni5vKhj9n2mt+mBMmjOqs9HHRN78x8xwc19nbZg7qVi+354BpV3XhOZ1JGhp2uk+y6ubDV28nyrq9wn1x216towXM6Ewwc9HfemdmuT2osjKy3r1xc1yfXqOpGbzcV1O53fWbj5rZ6O1k+9Il6ey6SZ3QlQzrG88bLtnwQ16JcNNttxzsT1/DBtNbTudt+J4v4ex/Gj2Tc2PVbw/4sfqwe4pj3r318i5Lncr5yHjS8RdFDuUFca8J9ybSOblH0RG4wjXpetkzeG8AULARLXt21WPoiMVW9JRGYFkthYingiZoei2HqyZaJmh6LYaqljqppsRjGFEhUTYulMKE4sERNj8UwMUIkanoshsEX4OSVb4/FMMZByASmxVIYnxNooqbHYpiowRM1PRbDOAeFqmmxGEYnPEyYFkthahuCTNT0WAwTPFiipsdiGJsgUTUtFsPU21xD1bRYCmOTv/hwocdimNqzNVHTYzGMrffuVE2LpTCm1GGfqOmxGKZe8jxR02MxjK9DKFXTYjFMveg5qqbF4g9e6oRExLRQ3NDrGE6ktFD8LdH5I5k0vyVy9Xq+41OiAdNjKYyLPaV9SCRPHx8OpfEdkRSEfjaUaIuZMP8D9HLV2gplbmRzdHJlYW0KZW5kb2JqCjggMCBvYmoKPDwvQ29udGVudHMgOSAwIFIvTWVkaWFCb3hbMCAwIDU5NSA4NDJdL1BhcmVudCAyIDAgUi9SZXNvdXJjZXM8PC9Gb250PDwvRjEgNiAwIFIvRjIgNyAwIFI+Pj4+L1RyaW1Cb3hbMCAwIDU5NSA4NDJdL1R5cGUvUGFnZT4+CmVuZG9iagoxMSAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDEyOTc+PnN0cmVhbQp4nK1a23IcRQx9n6+YR3iR+37hLRDgBSgu+wMOcYIpklSMgd+ntX3Tump3pKlxuWpKduuc0zqzWm3vfF6+Pi133+lVm/X0bnEGol9jSpDzenq7fPHq9+fHf++fHz99XF/fPz98efpz+fa0/LJ8vswzLoCPNPGb+6e36w/3fz+vbn39+P7x+Vqq0x5Cpqk///Hp48P60z8f3jw8kSwF2mmd1nL1IQW8JmXz+uv35V9F9X+LDWuMGVRaPyze5x78tfzGBDCu/C2vSRVJtoC0WIzjVAZrJk6LxThlQwMDN9QCCQDYNDFqKJbhfcJ8IuUcv8A5u2oub6RgwLmzqelOmzujjFrzV96X3/XVjy9vCfPibprZ1tqkry3vd9Bc7vEnpWzDxf2TQghxfXl9eo91QbWmlMevRllQcTUe0vr0sLy7ujlbVmTO5m4w4x2GW63UOiSwN6l7aSY3lsbwyPA2xEI1MpfAh5v7bIWdZKOw8aoZtTZ4w+83fmbj7uyW8XP50JckxodowfCND6lcDjK+UbONJ9xYGicyvpNxjSdko7D5tvHBBzC7jSfZuDu/YTxZ3vU5JTLeYNPjG2/OZTzG+ErNN35yY2mYja0b38jYxk+yUdjr7bfWptRQ7zd+Zpfdxevdpemby8eNyeyB1XgfIii+8T4WlQcZ36jZxhNuND6KjO9kXOMJ2TDe3DbeewVqt/EkG3d3vbs0fXP50Mfsgc14bSELjDcW3FHGV2q+8ZO7lCYzG1s3vpGxjZ9ko7DX2++5Ni4HyLuNJ9m4u63hjiwf+kTDnQvlT3zjXVRgDzK+UbONJ9xYGtlw18m4xhOyUdiN4c45C2m/8TMbd7c13JHlQ59ouHMq4oVtvI5gjjK+UvONn9xYGtlw18nYxk+yUdiN4a40IYi7jSfZuLut4Y4s7/q8aLiz3kHgG2+DA3OM742Z7fukxsLIRrvOxbV9co2qbkx2ZR5Dhr2uz2zc3NZkR5YPfaLJzioNXuC61qAPcr0y810f1Dj5MHtad71xsV0fXOO1fr3xngtjkkOGna6TbJznw4brZPmY57XEdVMK4fiuG5+O8bzxsj3vxFgUL3K8M3Ed70yjnmrDb6sRf6/fMxu35rb8nsu7PpMlfuvsJUd1Rjk46D29MfMdH9SlMN6KPO9cbM8HV6+qSrdd1zEhw07XSTZubst1snzok7leRAvO6bTXcNDrvDGzXZ/UWBjZK71zcV2fXL2qeuO1rguo2e/6zMbNbfV2snzoE/X2lCVndDlBPMbzysu2fBBjUWSnNI2Ja/hgGvXcOKKJBvH3HsaPZNzY9X7SzuLH6iGO2fPa+BYk53KucB40vAXRodwgxpowe1gf3YLoRG4wjXpefizkfQMYvQFvyFd3NZZ+kRiL3hwJTI2lMCFncERNi8Uw5WZLRE2LxTDFUkvV1FgMozNEqqbGUhifLRiipsVimBAgEDUtFsPgF+DkK98Wi2G0BZ8ITI2lMC5FUERNi8UwQYEjaloshrEWMlVTYzGMiniZMDWWwthUWg1R02IxjHdgiJoWi2FMhEjV1FgMUz7maqqmxlIYE93FgwstFsOUnq2ImhaLYUz57E7V1FgKo3MZ9omaFothylueI2paLIZxZQilamoshilvepaqqbH4gZcyIRExNRQ39DKGEyk1FD9LdH5IJs5niWx5P9/xKNGAabEUxoaWUh8kkqePB4fieI5ICkIfG4q0xUyY/wHndtZGCmVuZHN0cmVhbQplbmRvYmoKMTAgMCBvYmoKPDwvQ29udGVudHMgMTEgMCBSL01lZGlhQm94WzAgMCA1OTUgODQyXS9QYXJlbnQgMiAwIFIvUmVzb3VyY2VzPDwvRm9udDw8L0YxIDYgMCBSL0YyIDcgMCBSPj4+Pi9UcmltQm94WzAgMCA1OTUgODQyXS9UeXBlL1BhZ2U+PgplbmRvYmoKMTMgMCBvYmoKPDwvRmlsdGVyL0ZsYXRlRGVjb2RlL0xlbmd0aCA5NTQ+PnN0cmVhbQp4nK1Zy3ITMRC871foCJeJ3g9ugQAXoHj4BwxxgimSFMbA7yNZWmnsqvVqtpxK1dY4mu5WtyzLyq/h5Wq4eiOYkGx1N2gJzjDnPYTAVrfDs+tv++3f9X779Mhu1vvN89WP4fVq+DT8Ou6T2oJxuPHVenfL3q1/75lmN9v77X6qVQsDNuDWj9+fHjfsw5+Hr5sd6uIgtBCexaex3qan5yqwz2/jn6Lqf4OyzLkA3LOHwZgwFj+HL50AUsfXAvM8SlIRpNRkHM0DKNlwSk3GiROqGGlCpaAAgPINI5dkGcb41I+kHOoTnEOq8nghWQlaH0L1V0JeSS45Cy+Mib/s+v3pkpAnq6l1K6Usnxo+rqA23KQf74MwR+vHW2sdO33u7pMvSa2M9hgmuQLumDTg2W4z3E1OTsURoWdyZ5jTCktTzdTCelBnqUdrGneyRvSRpWWYjCpk2oOxZ+dZjG1k1Vg7GUb2Ji345cG37jQ7ORd8G171OUrw1imQ/cFbHx8XCr5QdwePuJM1ihT8SNYbPCKrxvrzwVtjQS4OHnWn2emZ4NHwqi+Qgpdp0+sPXh5svEzwmbo/+MadrOnc2MbgC1l38I1sNFZOb7/Zm+ihWB58606zm95dir42vOrr3ANz8MY64P3BGxdVXij4Qt0dPOJO1nRubCX4kaw3eERWjZ3efrM3hgNfHDzqTrOb3l2Kvja86uvcA0vwQkEgBC8V6EsFn6n7g2/cyZrOjW0MvpB1B9/IqrHT2+/BGx0shMXBo+44Ozd3uEPDqz7S4U7b+FJ/8NpxUBcKvlB3B4+4kzW0w91I1hs8IqvGzhzutFbglwffutPs5g53aHjVRzrcae7Sozt44UBeKvhM3R98407W0A53I1l38I2sGjtzuFMhfiFcHDzqjrPjc4c7NLzo84Z0uFNGg+0PPh43QV4m98LcnXujTsbQYh+5emNvXNXVudSVSwxLU2/daXJzb3c0vOojvd0VF2AIqQsB4kKpZ+b+1Ct1Moa2y49c3alXruqqPSLsu0hyRoLBN0C5pt5HuSg4eASTayqMDQE0UlNqMoyT4JGaUpNhYqoKq8k1GUYEcFhNrqkwJsSv+khNqckw1oJFakpNhkn3qFhNrskw8VBrsJpcU2G0j1+KkJpSk2HiSUsjNaUmw6h4Usdqck2GiR//CqvJNRVG+bjZIDWlJsPETyWJ1JSaDCPjmQaryTX5Qr/+V6DUafsUCy70K06pyTjKjj35Qn8BALrBHy/0ySjHF/jNXozzH02qTpsKZW5kc3RyZWFtCmVuZG9iagoxMiAwIG9iago8PC9Db250ZW50cyAxMyAwIFIvTWVkaWFCb3hbMCAwIDU5NSA4NDJdL1BhcmVudCAyIDAgUi9SZXNvdXJjZXM8PC9Gb250PDwvRjEgNiAwIFIvRjIgNyAwIFI+Pj4+L1RyaW1Cb3hbMCAwIDU5NSA4NDJdL1R5cGUvUGFnZT4+CmVuZG9iagoxIDAgb2JqCjw8L0xhbmcoZW4pL1BhZ2VzIDIgMCBSL1R5cGUvQ2F0YWxvZz4+CmVuZG9iagozIDAgb2JqCjw8L0NyZWF0aW9uRGF0ZShEOjIwMjAwODE4MTkzODIyKzAzJzAwJykvTW9kRGF0ZShEOjIwMjAwODE4MTkzODIyKzAzJzAwJykvUHJvZHVjZXIoaVRleHSuIDcuMS4xMiCpMjAwMC0yMDIwIGlUZXh0IEdyb3VwIE5WIFwoQUdQTC12ZXJzaW9uXCkpL3ZpZXdwb3J0KHdpZHRoPWRldmljZS13aWR0aCwgaW5pdGlhbC1zY2FsZT0xLjApPj4KZW5kb2JqCjYgMCBvYmoKPDwvQmFzZUZvbnQvVGltZXMtQm9sZC9FbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvU3VidHlwZS9UeXBlMS9UeXBlL0ZvbnQ+PgplbmRvYmoKNyAwIG9iago8PC9CYXNlRm9udC9UaW1lcy1Sb21hbi9FbmNvZGluZy9XaW5BbnNpRW5jb2RpbmcvU3VidHlwZS9UeXBlMS9UeXBlL0ZvbnQ+PgplbmRvYmoKMiAwIG9iago8PC9Db3VudCA0L0tpZHNbNCAwIFIgOCAwIFIgMTAgMCBSIDEyIDAgUl0vVHlwZS9QYWdlcz4+CmVuZG9iagp4cmVmCjAgMTQKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDA1NzQ0IDAwMDAwIG4gCjAwMDAwMDYxODMgMDAwMDAgbiAKMDAwMDAwNTc5OCAwMDAwMCBuIAowMDAwMDAxNDE4IDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwNjAwNCAwMDAwMCBuIAowMDAwMDA2MDkzIDAwMDAwIG4gCjAwMDAwMDI5MjYgMDAwMDAgbiAKMDAwMDAwMTU2MCAwMDAwMCBuIAowMDAwMDA0NDM0IDAwMDAwIG4gCjAwMDAwMDMwNjggMDAwMDAgbiAKMDAwMDAwNTYwMCAwMDAwMCBuIAowMDAwMDA0NTc4IDAwMDAwIG4gCnRyYWlsZXIKPDwvSUQgWzxhM2JkY2Q5OGZmM2UzMjMwN2Q2NGU4NzI0NWVkMzg2MT48YTNiZGNkOThmZjNlMzIzMDdkNjRlODcyNDVlZDM4NjE+XS9JbmZvIDMgMCBSL1Jvb3QgMSAwIFIvU2l6ZSAxND4+CiVpVGV4dC03LjEuMTIgZm9yIC5ORVQKc3RhcnR4cmVmCjYyNTQKJSVFT0YK\",\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"aa098e99-d2a2-4bba-8d90-b5f4096adc0d"}],"id":"79e0fa58-eaf6-46f6-9bc4-10fbed7ccbd5","_postman_id":"79e0fa58-eaf6-46f6-9bc4-10fbed7ccbd5","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Canada Post","item":[{"name":"Save Canada Post","id":"9b203e69-a5a2-4f8b-870d-ff20aaa8a5a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212,\n  \"ProofOfResidence\":\"R001\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SaveManualKycAppCanadaPost","description":"<h3 id=\"description\">Description</h3>\n<p>The Save Canada Post API manually saves the KYC Canada Post app.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProofOfResidence</td>\n<td><em>String</em></td>\n<td></td>\n<td>Indicates the value of Proof of Residence for Canada Post verification.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SaveKycCanadaPostOp_KycNotFound</td>\n<td>Kyc Manual Application Not Found.</td>\n</tr>\n<tr>\n<td>SendKycCanadaPostOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","SaveManualKycAppCanadaPost"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b203e69-a5a2-4f8b-870d-ff20aaa8a5a8"},{"name":"Send Canada Post Email","id":"fb8d1233-dfd5-44db-baca-92de31f4ac7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppCanadaPostEmail","description":"<h3 id=\"description\">Description</h3>\n<p>The Send Canada Post Email API sends the Canada Post verification request email to a KYC Applicant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendKycCanadaPostEmailOp_KycNotFound</td>\n<td>Manual KYC Application Not Found.</td>\n</tr>\n<tr>\n<td>SendKycCanadaPostEmailOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","SendManualKycAppCanadaPostEmail"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fd2ace74-42fa-46d6-903d-34f131fa69a3","name":"Send Canada Post Email","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppCanadaPostEmail"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 14:29:10 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"fb8d1233-dfd5-44db-baca-92de31f4ac7b"},{"name":"Print  Canada Post Base64","id":"d06690b1-b06a-405d-a8f0-22fda60c1dde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/PrintManualKycAppCanadaPostBase64","description":"<h3 id=\"description\">Description</h3>\n<p>The Print Canada Post Base64 prints the KYC App Canada Post Base64.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PrintKycCanadaPostOp_KycNotFound</td>\n<td>Manual KYC Application not found</td>\n</tr>\n<tr>\n<td>PrintKycCanadaPostOp_NullRequest</td>\n<td>Request Cannot Be Null</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","PrintManualKycAppCanadaPostBase64"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"af5a922e-42ff-432e-b411-33d908e3e4ad","name":"Print  Canada Post Base64","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/PrintManualKycAppCanadaPostBase64"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 14:27:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"3173","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": \"JVBERi0xLjMNCjEgMCBvYmoNClsvUERGIC9UZXh0IC9JbWFnZUIgL0ltYWdlQyAvSW1hZ2VJXQ0KZW5kb2JqDQo3IDAgb2JqDQo8PCAvTGVuZ3RoIDExOTMgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4gc3RyZWFtDQpYCaWX32/bNhDH3wf0fzj0Ze2Q0eIPSVTemjgdDHRFuhjbw7oHRlZqbrLkSkw876/fkaJkOj9lBwYS+8y7792HpyP95ofvQAUR3Z9URERKEDwlkYCmgD+geoMrGE8IjSmISJKEx8CyjERAU5IMi87mMPnIbZgsy2B+A5F7Nd8gSXEx5zD/BCxNiBQgKMMwDOYLeHeuKrVQcFm3Bi6X21bnqoTZoqiMNlt4D/O/Yf4TXMxHKnAREyaAZzGRceIUfi8afYNhja6rMN4XW5mtNM6AcywM1ycZJzGklKR8vzIB2QNZEWMZMnOyGAa5RZRwJp0qAFw2+k7lW/hcG50Xp3C2hXVT3+mFrr6BWeoWbupmBapawGzagqkhgHEC2/oW8rpqEYX9ziwLXF+W9QbdSbgUNroscWlZFrnx65rVCZjtumihvsHoXgSq29V10bQPuY6qj2cRoUlXn82uq6ZwwV0OvUFXNgNHHNZFY5SuXM2uipX9P9UNJnuu2iWcqeof+Pru7fTcvnv79b1N35Wxvm3WdVvYEu7sJm5tEBRuQPsGITC7gc4RkKfKjV2izLEF2kaKugJtAk3x/bZAwJiAqmq0NIh5tVYVCnvVldoOZbs9DWv32+Z98D1m5mMWC/dVX0hXoO9ScmT2cYKGvv0+IsRV3exvhrqub41P/ccWE+86dF2XOt+ewLosFPK+0602sDRm3Z5OJpvNhizya/QguZp4l587F/KcTNCigdaRteFzHftH68lsfbK508XOMUHC5MGjzxIS20efUnz0Y0cPZ5odbIc8+TYKPhKcUYzWjbSpMvi00wnlExYxBtkpS09x3H349V4OXbzffgGOohv48y/8tACGA47jCOPc5bUCLmNU21lKuAp8UTfwjQmP7DgTJJXo2n+OUpKy5J7no6o44SVO+kDVW57x5VJ0KHvZwRDq4rCVPXJbiOiR4wZH9LBxKx9Snzeqau0AwP6bTU9henVFY5kmPBOMCzkKPZeciD32qRCEPsn+CAovCA/4B+FH8e9teio4keGuD4Z9/L7hmYxdxJT6hpfBWT/uGO/os4yhZTjGF3qBjQ+z3Rx4ivmjLYu5dsi9gUk2smcZwtuH1lvGQBt0e8ue8I4aXoGY6KkxvCdF8TGDgomUZP4M/aTwbPmsVjgtPrQGp9Yh84HFuB8iCav2lpfnA0vwIE9pABtbJ6HPu3pZbltjD7a3jIC90x0sofAOdkJdJa+GnTJ07WB/1M1A+6LU/6nrwiwPAn5Mmw3NjDHSJATOCX0A/FFZJGQbbx+4tYwBPujugAfCO+B4COKt//XAGSe7Q9Dem850Y5buNEwmNJPZQcSPKX0AjP+TkDgOUk7ZGOJR5mAEst4yhvigO1hC4d21A39RydePE5wm/sZ38e9aN1voLx88speP6BDcsSSZDA89b3gZtn2sg2nC7bk3ZpjYycH3TrvOMIJzLznM8UATIcvUWWmEs9z+YHWYM1zjIXuLfTnrfYd8BZPZKoZpDe6ymLDuLMeBYpFQ3NMItQkbAnYm++rM9zy6gIkP+OQ+WA/BJME2sjz9BUK4XikdpkcNvUsJrb/dvvSj/sv/qqW/IA0KZW5kc3RyZWFtDQplbmRvYmoNCjIgMCBvYmoNCjw8IC9UeXBlIC9QYWdlIC9QYXJlbnQgOCAwIFIgL01lZGlhQm94IFswIDAgNzY5LjY4IDQ2NS44NF0gL0NvbnRlbnRzIDcgMCBSIC9SZXNvdXJjZXMgPDwgL1Byb2NTZXQgMSAwIFIgL1hPYmplY3QgPDwgL0ltNSA1IDAgUiAvSW02IDYgMCBSID4+IC9Gb250IDw8IC9GMyAzIDAgUiAvRjQgNCAwIFIgPj4gPj4gPj4NCmVuZG9iag0KNSAwIG9iag0KPDwgL1R5cGUgL1hPYmplY3QgL1N1YnR5cGUgL0ltYWdlIC9Db2xvclNwYWNlIC9EZXZpY2VSR0IgL0JpdHNQZXJDb21wb25lbnQgOCAvRmlsdGVyIC9GbGF0ZURlY29kZSAgL1dpZHRoIDI5MCAvSGVpZ2h0IDEyOSAvTGVuZ3RoIDQ0NzUgPj4NCnN0cmVhbQ0KWAntl8GOJcmRA+f/f3oE7GUl+dDK6O0dB3XmaeBkW5BEPUD666////7+v+/f/3t+U53/NhH4njgm2+8jJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk3cZktpm48y+xRtC8vgdmMN880qrpgXMPianuXvnFXmqvmNyMnmXIaltNs7sW7whJI/fgTnMN6+0alrA7GNymrt3XpGn6jsmJ5N3GZLaZuPMvsUbQvL4HZjDfPNKq6YFzD4mp7l75xV5qr5jcjJ5lyGpbTbO7Fu8ISSP34E5zDevtGpawOxjcpq7d16Rp+o7JieTdxmS2mbjzL7FG0Ly+B2Yw3zzSqumBcw+Jqe5e+cVeaq+Y3IyeZchqW02zuxbvCEkj9+BOcw3r7RqWsDsY3Kau3dekafqOyYnk5nwfd/3fd/3fd/3fd/3fd/3fX+H/+n+o8erf5f/z+7Ho/Ev7int7+Z835/wpb8faTDqj09IMnt+5b//C/6M831/yAd/JMngVX8xZO8x/pSq/XVccb7vf/hb/Mp+/Oc/eta/oP86/u5fWZs5cb5f2R/++T9m/jODPx7+O/yVP3Xg/Ls6//mP0o8V/hECnB9X+r7/4c//Uf0d/q5+VOFPUf43X+DXMe//+btcvvsrXb4f2h/4Vb+ynfrrf6XmIn9l8G/nr+/H8JLz/cr+8O/HX1n7t/2bfmWLnL9+N7+IlvP9yv7A78cfxe/4lZm/wF/5lS34st2ve75f2R/4/fVP348er/6NPxCm/QhZc+BPff4i/vGfVBzj/77v+77v+77v+77v+77v+75/ASS3+lINCmVuZHN0cmVhbQ0KZW5kb2JqDQo2IDAgb2JqDQo8PCAvVHlwZSAvWE9iamVjdCAvU3VidHlwZSAvSW1hZ2UgL0NvbG9yU3BhY2UgL0RldmljZVJHQiAvQml0c1BlckNvbXBvbmVudCA4IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlIC9NYXNrIFswIDAgMCAwIDAgMF0gL1dpZHRoIDEgL0hlaWdodCAxIC9MZW5ndGggMTEgPj4NCnN0cmVhbQ0KWAljYGAAAAADAAENCmVuZHN0cmVhbQ0KZW5kb2JqDQozIDAgb2JqDQo8PCAvVHlwZSAvRm9udCAvU3VidHlwZSAvVHlwZTEgL0Jhc2VGb250IC9IZWx2ZXRpY2EtQm9sZCAvRW5jb2RpbmcgL1dpbkFuc2lFbmNvZGluZyA+Pg0KZW5kb2JqDQo0IDAgb2JqDQo8PCAvVHlwZSAvRm9udCAvU3VidHlwZSAvVHlwZTEgL0Jhc2VGb250IC9IZWx2ZXRpY2EgL0VuY29kaW5nIC9XaW5BbnNpRW5jb2RpbmcgPj4NCmVuZG9iag0KOCAwIG9iag0KPDwgL1R5cGUgL1BhZ2VzIC9LaWRzIFsgMiAwIFIgXSAvQ291bnQgMSA+Pg0KZW5kb2JqDQo5IDAgb2JqDQo8PCAvVHlwZSAvQ2F0YWxvZyAvUGFnZXMgOCAwIFIgPj4NCmVuZG9iag0KMTAgMCBvYmoNCjw8IC9UaXRsZSA8ZmVmZjAwNDMwMDYxMDA2ZTAwNjEwMDY0MDA2MTAwNTAwMDZmMDA3MzAwNzQwMDQ5MDA2NDAwNjUwMDZlMDA3NDAwNjkwMDc0MDA3OTAwNTYwMDY1MDA3MjAwNjkwMDY2MDA2OTAwNjMwMDYxMDA3NDAwNjkwMDZmMDA2ZT4NCi9BdXRob3IgPD4NCi9TdWJqZWN0IDw+DQovQ3JlYXRvciAoTWljcm9zb2Z0IFJlcG9ydGluZyBTZXJ2aWNlcyAxNS4wLjAuMCkNCi9Qcm9kdWNlciAoTWljcm9zb2Z0IFJlcG9ydGluZyBTZXJ2aWNlcyBQREYgUmVuZGVyaW5nIEV4dGVuc2lvbiAxNS4wLjAuMCkNCi9DcmVhdGlvbkRhdGUgKEQ6MjAyMjAxMTMwOTI3MzUtMDUnMDAnKQ0KPj4NCmVuZG9iag0KeHJlZg0KMCAxMQ0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDEwIDAwMDAwIG4NCjAwMDAwMDEzMzYgMDAwMDAgbg0KMDAwMDAwNjM4NiAwMDAwMCBuDQowMDAwMDA2NDkxIDAwMDAwIG4NCjAwMDAwMDE1MzMgMDAwMDAgbg0KMDAwMDAwNjE4NSAwMDAwMCBuDQowMDAwMDAwMDY1IDAwMDAwIG4NCjAwMDAwMDY1OTEgMDAwMDAgbg0KMDAwMDAwNjY1MyAwMDAwMCBuDQowMDAwMDA2NzA1IDAwMDAwIG4NCnRyYWlsZXIgPDwgL1NpemUgMTEgL1Jvb3QgOSAwIFIgL0luZm8gMTAgMCBSID4+DQpzdGFydHhyZWYNCjcwNTYNCiUlRU9G\",\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d06690b1-b06a-405d-a8f0-22fda60c1dde"},{"name":"Print  Canada Post","id":"123b2974-1402-423c-8eef-cb46b4eaa821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/PrintManualKycAppCanadaPost","description":"<h3 id=\"description\">Description</h3>\n<p>The Print Canada Post API prints the KYC App Canada Post.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PrintKycCanadaPostOp_KycNotFound</td>\n<td>Manual KYC Application Not Found.</td>\n</tr>\n<tr>\n<td>PrintKycCanadaPostOp_NullRequest</td>\n<td>Request Cannot Be Null</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","PrintManualKycAppCanadaPost"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"123b2974-1402-423c-8eef-cb46b4eaa821"}],"id":"86f81618-f49a-42c8-b433-05023d65f680","_postman_id":"86f81618-f49a-42c8-b433-05023d65f680","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"In Person ID","item":[{"name":"Send In Person Id Verification","id":"15d9e271-9ba2-466c-b984-d2cd19995478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppInPersonIdVerification","description":"<h3 id=\"description\">Description</h3>\n<p>The Send in Person ID Verification API sends the KYC App In Person Id Verification.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperKycManualInPersonSendEmail_KycNotFound</td>\n<td>The KYC Manual Application Not Found.</td>\n</tr>\n<tr>\n<td>SendKycInPersonIdVerificationEmailOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","SendManualKycAppInPersonIdVerification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f54b7503-8bdc-4de5-9bef-626b1ad0c4cd","name":"Send In Person Id Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/SendManualKycAppInPersonIdVerification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 22:01:50 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"15d9e271-9ba2-466c-b984-d2cd19995478"},{"name":"Verify In Person Id","id":"a03e0e04-4894-4d7d-a1a9-7b6691be00f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/VerifyManualKycAppInPersonIdVerification","description":"<h3 id=\"description\">Description</h3>\n<p>The Verify In Person ID API verifies the KYC App.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Indicates the applicant's ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InPersonIdVerificationUpdateStatusOp_NotFound</td>\n<td>Manual Kyc Application Not Found.</td>\n</tr>\n<tr>\n<td>AmlKycHelperKycManualInPersonSendEmail_NotActivated</td>\n<td>In Person ID Verification Method Has Not Been Activated For This Record.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","VerifyManualKycAppInPersonIdVerification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"99a7fd77-f2f8-4fc1-9714-358aa394b967","name":"Verify In Person Id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/VerifyManualKycAppInPersonIdVerification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 22:00:58 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"a03e0e04-4894-4d7d-a1a9-7b6691be00f0"}],"id":"6168a0d5-a401-44a2-8b46-7a36fc08ffea","_postman_id":"6168a0d5-a401-44a2-8b46-7a36fc08ffea","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Check Verifications","item":[{"name":"Check Internal Blacklist","id":"374dab74-d693-44b6-8a0c-c851c6b0dd43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppInternalBlacklist","description":"<h3 id=\"description\">Description</h3>\n<p>The Check Internal Blacklist API checks the KYC App Internal Blacklist.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","CheckManualKycAppInternalBlacklist"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a1ad61ba-0a2a-4169-a6b2-5a630b1bfced","name":"Check Internal Blacklist","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppInternalBlacklist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 14:31:46 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"374dab74-d693-44b6-8a0c-c851c6b0dd43"},{"name":"Check Watchlist","id":"e47faa7a-b0d1-4890-9561-d750af372de8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppWatchlist","description":"<h3 id=\"description\">Description</h3>\n<p>The Check Watchlist API manually checks the KYC App Watchlist.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","CheckManualKycAppWatchlist"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"84e8e243-d5d5-4561-a250-5d66b1e1f381","name":"Check Watchlist","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppWatchlist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 14:32:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"130","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e47faa7a-b0d1-4890-9561-d750af372de8"},{"name":"Check TransUnion","id":"75970ca7-1a5c-4a34-8e81-3ac1ba4d9883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppTransUnion","description":"<h3 id=\"description\">Description</h3>\n<p>The Check TransUnion API checks the manual KYC App TransUnion.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","CheckManualKycAppTransUnion"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e6edaf2e-9419-4557-a007-757f1978e9e1","name":"Check TransUnion","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppTransUnion"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 14:34:44 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"129","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": false,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"75970ca7-1a5c-4a34-8e81-3ac1ba4d9883"},{"name":"Check Credit History","id":"434eaba0-569a-44f9-9506-8d7fa58e818a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppCreditHistory","description":"<h3 id=\"description\">Description</h3>\n<p>The Check Credit History API checks the KYC App Credit History.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","CheckManualKycAppCreditHistory"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cafeca8a-81d1-4fd8-88e0-4cd155f107b2","name":"Check Credit History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 55\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CheckManualKycAppCreditHistory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jan 2022 14:35:45 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"129","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": false,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"434eaba0-569a-44f9-9506-8d7fa58e818a"}],"id":"3fef4413-b9c4-46b3-ad75-12e6eab4442e","_postman_id":"3fef4413-b9c4-46b3-ad75-12e6eab4442e","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"2e8b5753-8a79-4295-b339-54439cb5b812","_postman_id":"2e8b5753-8a79-4295-b339-54439cb5b812","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Create KYC Application","item":[{"name":"Create Manual KYC Application","id":"624b1ece-c753-4580-8eb9-b53af008b181","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Email\": \"mahsun.k99@test.ca\",\n  \"FirstName\": \"Mahsun\",\n  \"MiddleName\": \"\",\n  \"LastName\": \"Kirmizigul\",\n  \"Gender\": \"M\",\n  \"BirthDate\": \"1988-09-19\",\n  \"Address\": \"367-223 Tuscany Springs Blvd NW\",\n  \"Address2\": \"\",\n  \"ZipCode\": \"T3L 2M2\",\n  \"City\": \"Calgary\",\n  \"ProvinceId\": 663,\n  \"CountryId\": 38,\n  \"IdentityType\": \"C020\",\n  \"IdentitySourceType\": \"P\",\n  \"IdentityNumber\": \"95498784512\",\n  \"IdentityCountryId\": 38,\n  \"IdentityProvinceId\": 663,\n  \"MobilePhoneCountryId\": 38,\n  \"MobilePhoneNumber\": \"5565298501111\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CreateManualKycApp","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Manual KYC Application API creates the KYC Application.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's gender.  <br />This value can be retrieved using the <strong>Get Parameter</strong> API with <strong>Gender</strong> parameter.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the applicant's birth date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's street address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates applicant's street address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's zip/postal code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's city.  <br />This value can be obtained using the <strong>Get City List By Province</strong> under Parameter controller.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Indicates the applicant's province.  <br />This value can be obtained using the <strong>Get Province List By Country</strong> API, under Parameter controller.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Indicates the applicant's country.You can get parameter details with <strong>Get Country List</strong> API <strong>under Parameter controller</strong>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityType</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates identity type.  <br />This value can be obtained using the <strong>Get Parameter</strong> API with <strong>Identity Type</strong> parameter.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentitySourceType</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates Identity source type. This value can be obtained using the <strong>Get Parameter</strong> API with <strong>Identity Source Type</strong> parameter.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's identity number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityCountryId</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the applicant's identity country. This value can be obtained using the <strong>Get Country List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityProvinceId</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Indicates the applicant's identity province. This value can be obtained using the <strong>Get Province List By Country</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MobilePhoneCountryId</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the mobile phone country ID.  <br />This value can be obtained using the <strong>Get Country List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Indicates the applicant's phone number.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The manual KYC application ID.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the aoplicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BadRequestE1</td>\n<td>Request Is Invalid.</td>\n</tr>\n<tr>\n<td>BadRequestE3</td>\n<td>Invalid Applicant Email. Another user with the same email is already created.</td>\n</tr>\n<tr>\n<td>BadRequestE5</td>\n<td>Mobile Phone Number Can Only Be 10 Characters.</td>\n</tr>\n<tr>\n<td>BadRequestE8</td>\n<td>Invalid Address.</td>\n</tr>\n<tr>\n<td>BadRequestE9</td>\n<td>Invalid Zipcode.</td>\n</tr>\n<tr>\n<td>BadRequestE12</td>\n<td>Invalid City.</td>\n</tr>\n<tr>\n<td>BadRequestE13</td>\n<td>Invalid First or Last Name.</td>\n</tr>\n<tr>\n<td>BadRequestE16</td>\n<td>Invalid Gender.</td>\n</tr>\n<tr>\n<td>BadRequestE18</td>\n<td>Identity Type or Identity Source Type cannot be set separately.</td>\n</tr>\n<tr>\n<td>BadRequestE22</td>\n<td>Invalid Kyc Manual Application Identity. Another user with the same identity is already created.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","CreateManualKycApp"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f71b1bcb-4c3b-4366-9a8b-55f1e448866c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Email\": \"someuser@dcbank.ca\",\n    \"FirstName\": \"Some\",\n    \"MiddleName\": \"\",\n    \"LastName\": \"User\",\n    \"Gender\": \"M\",\n    \"BirthDate\": \"1974-09-19\",\n    \"Address\": \"367-223 Tuscany Springs Blvd NW\",\n    \"Address2\": \"\",\n    \"ZipCode\": \"A5A 5A5\",\n    \"City\": \"Calgary\",\n    \"ProvinceId\": 12345,\n    \"CountryId\": 12345,\n    \"IdentityType\": \"NL Driver's Licence\",\n    \"IdentityNumber\": \"55555555555555\",\n    \"IdentityCountryId\": 12345,\n    \"IdentityProvinceId\": 12345,\n    \"FinancialInstitution\": 1,\n    \"FinancialInstitutionBranch\": \"00101941\",\n    \"AccountNumber\": \"555-5555555-555\",\n    \"MobilePhoneCountryId\": 12345,\n    \"MobilePhoneNumber\": \"5555555555\",\n    \"HomePhoneCountryId\": 12345,\n    \"HomePhoneNumber\": \"5555555555\",\n    \"OfficePhoneCountryId\": 12345,\n    \"OfficePhoneNumber\": \"5555555555\",\n    \"Language\": \"EN\",\n    \"IdExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"IdPlaceofIssue\": \"Alberta Canada\",\n    \"CountryofCitizenshipId\": 12345,\n    \"CountryofBirthId\": 12345,\n    \"CountryofResidenceId\": 12345,\n    \"EMailNotification\": \"true\",\n    \"TextNotification\": \"false\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CreateKycManualApplication"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\":     {\n        \"Id\": 10,\n        \"InternalBlacklist\": \"\",\n        \"IdVerification\": \"\",\n        \"TransUnionIdVerification\": \"\",\n        \"WatchListVerification\": \"\",\n        \"CanadaPostVerification\": \"\"\n\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"624b1ece-c753-4580-8eb9-b53af008b181"},{"name":"Get Manual KYC Application","id":"cbcd958c-7491-4b1d-911c-c734597b424a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"Id\": 20212\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycApp","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Manual KYC Application API retrieves the KYC Application.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td></td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The manual KYC application ID.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the aoplicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GetManualKycApplicationOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetManualKycApp"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"80f0ec90-d2a1-4f68-a11e-528eb1c7f2a2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Email\": \"someuser@example.ca\",\n    \"FirstName\": \"Some\",\n    \"MiddleName\": \"\",\n    \"LastName\": \"User\",\n    \"Gender\": \"M\",\n    \"BirthDate\": \"1974-09-19\",\n    \"Address\": \"367-223 Tuscany Springs Blvd NW\",\n    \"Address2\": \"\",\n    \"ZipCode\": \"A5A 5A5\",\n    \"City\": \"Calgary\",\n    \"ProvinceId\": 12345,\n    \"CountryId\": 12345,\n    \"IdentityType\": \"NL Driver's Licence\",\n    \"IdentityNumber\": \"55555555555555\",\n    \"IdentityCountryId\": 12345,\n    \"IdentityProvinceId\": 12345,\n    \"FinancialInstitution\": 1,\n    \"FinancialInstitutionBranch\": \"00101941\",\n    \"AccountNumber\": \"555-5555555-555\",\n    \"MobilePhoneCountryId\": 12345,\n    \"MobilePhoneNumber\": \"5555555555\",\n    \"HomePhoneCountryId\": 12345,\n    \"HomePhoneNumber\": \"5555555555\",\n    \"OfficePhoneCountryId\": 12345,\n    \"OfficePhoneNumber\": \"5555555555\",\n    \"Language\": \"EN\",\n    \"IdExpireDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"IdPlaceofIssue\": \"Alberta Canada\",\n    \"CountryofCitizenshipId\": 12345,\n    \"CountryofBirthId\": 12345,\n    \"CountryofResidenceId\": 12345,\n    \"EMailNotification\": \"true\",\n    \"TextNotification\": \"false\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/CreateKycManualApplication"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\":     {\n        \"Id\": 10,\n        \"InternalBlacklist\": \"\",\n        \"IdVerification\": \"\",\n        \"TransUnionIdVerification\": \"\",\n        \"WatchListVerification\": \"\",\n        \"CanadaPostVerification\": \"\"\n\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"cbcd958c-7491-4b1d-911c-c734597b424a"},{"name":"Get Financial Institution","id":"87fa8479-ef03-44f8-aadf-e0250f307893","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetFinancialInstitution","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Financial Institution API retrieves the financial institution code.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The application ID.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The applicants first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The applicants middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The applicants last name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>Numeric</em></td>\n<td>The identity number of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The mobile phone number of the applicant.</td>\n</tr>\n<tr>\n<td>OfficePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The office phone number of the applicant.</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The home phone number of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>InsertDate</td>\n<td><em>DateTime</em></td>\n<td>The date the applicant was inserted to the system.</td>\n</tr>\n<tr>\n<td>IdentityTypeName</td>\n<td><em>String</em></td>\n<td>The piece of identification type provided.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The birth date of the applicant.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The applicants zip/postal code.</td>\n</tr>\n<tr>\n<td>CityName</td>\n<td><em>String</em></td>\n<td>The city in which the applicant resides.</td>\n</tr>\n<tr>\n<td>ProvinceName</td>\n<td><em>String</em></td>\n<td>The province in which the applicant resides.</td>\n</tr>\n<tr>\n<td>CountryName</td>\n<td><em>String</em></td>\n<td>The country in which the applicant resides.</td>\n</tr>\n<tr>\n<td>IdentityCountryName</td>\n<td><em>String</em></td>\n<td>The country that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdentityProvinceName</td>\n<td><em>String</em></td>\n<td>The province that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CommunicationInfoId</td>\n<td><em>Numeric</em></td>\n<td>The communication information ID.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>The applicants gender.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants mobile phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>HomePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants home phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>OfficePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants office phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>EmailNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected email notifications or not.</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification.</td>\n</tr>\n<tr>\n<td>IdPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CountryOfCitizenshipCode</td>\n<td><em>String</em></td>\n<td>The code of the country that represents the applicants citizendship.</td>\n</tr>\n<tr>\n<td>CountryOfBirthCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants country of birth.</td>\n</tr>\n<tr>\n<td>CountryOfResidenceCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants current country of residence.</td>\n</tr>\n<tr>\n<td>TextNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected SMS notifications or not.</td>\n</tr>\n<tr>\n<td>LanguageName</td>\n<td><em>String</em></td>\n<td>The preferred language.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetFinancialInstitution"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"96639630-3ad2-43b8-985e-8bcf178658dc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"10","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycApplication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10,\n            \"FirstName\": \"Some\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"User\",\n            \"Email\": \"someuser@example.ca\",\n            \"IdentityNumber\": \"55555555555555\",\n            \"MobilePhoneNumber\": \"5555555555\",\n            \"OfficePhoneNumber\": \"5555555555\",\n            \"HomePhoneNumber\": null,\n            \"IdentityExpireDate\": \"2023-11-23T00:00:00\",\n            \"InsertDate\": \"2020-01-17T12:49:52.86\",\n            \"IdentityTypeName\": \"NL Driver's Licence\",\n            \"Address1\": \"367-223 Tuscany Springs Blvd NW\",\n            \"Address2\": null,\n            \"BirthDate\": \"1974-09-19T00:00:00\",\n            \"ZipCode\": \"A5A 5A5\",\n            \"CityName\": \"Calgary\",\n            \"ProvinceName\": \"Alberta\",\n            \"CountryName\": \"Canada\",\n            \"IdentityCountryName\": \"Canada\",\n            \"IdentityProvinceName\": \"Alberta\",\n            \"InternalBlacklist\": \"Valid\",\n            \"IdVerification\": \"Invalid\",\n            \"TransUnionIdVerification\": \"Invalid\",\n            \"WatchListVerification\": \"Valid\",\n            \"CanadaPostVerification\": \"Pending\",\n            \"IdentityPlaceOfIssue\": \"AB\",\n            \"CommunicationInfoId\": 14,\n            \"Gender\": \"Male\",\n            \"FinancialInstitutionBranch\": null,\n            \"AccountNumber\": null,\n            \"MobilePhoneCountryCode\": \"1\",\n            \"HomePhoneCountryCode\": null,\n            \"OfficePhoneCountryCode\": \"1\",\n            \"EMailNotification\": \"true\",\n            \"IdExpireDate\": \"2023-11-23T00:00:00\",\n            \"IdPlaceofIssue\": \"AB\",\n            \"CountryofCitizenshipCode\": \"TR\",\n            \"CountryofBirthCode\": \"TR\",\n            \"CountryofResidenceCode\": \"CA\",\n            \"TextNotification\": \"false\",\n            \"LanguageName\": \"English\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"87fa8479-ef03-44f8-aadf-e0250f307893"},{"name":"Update Manual KYC Application Status","id":"d9b12058-4243-4a8e-891a-512b6c7d75ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Id\":20212,\r\n    \"Status\":\"1\",\r\n    \"ReasonType\":\"R\",\r\n    \"ReasonComment\":\"Fake ID Card\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/UpdateManualKycAppStatus","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Manual KYC Application Status API ..</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Status</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Indicates application's status:  <br /><code>0</code> On Hold,  <br /><code>1</code> Approved,  <br /><code>2</code> Rejected.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReasonType</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the reason for the current application status:  <br /><code>CP</code> Canada Post Verification Failed,  <br /><code>MD</code> Missing Verification Documents,  <br /><code>O</code> Other,  <br /><code>R</code> Rejected.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ReasonComment</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Comments on the application status.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The application ID.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The applicants first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The applicants middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The applicants last name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>Numeric</em></td>\n<td>The identity number of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The mobile phone number of the applicant.</td>\n</tr>\n<tr>\n<td>OfficePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The office phone number of the applicant.</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The home phone number of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>InsertDate</td>\n<td><em>DateTime</em></td>\n<td>The date the applicant was inserted to the system.</td>\n</tr>\n<tr>\n<td>IdentityTypeName</td>\n<td><em>String</em></td>\n<td>The piece of identification type provided.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The birth date of the applicant.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The applicants zip/postal code.</td>\n</tr>\n<tr>\n<td>CityName</td>\n<td><em>String</em></td>\n<td>The city in which the applicant resides.</td>\n</tr>\n<tr>\n<td>ProvinceName</td>\n<td><em>String</em></td>\n<td>The province in which the applicant resides.</td>\n</tr>\n<tr>\n<td>CountryName</td>\n<td><em>String</em></td>\n<td>The country in which the applicant resides.</td>\n</tr>\n<tr>\n<td>IdentityCountryName</td>\n<td><em>String</em></td>\n<td>The country that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdentityProvinceName</td>\n<td><em>String</em></td>\n<td>The province that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CommunicationInfoId</td>\n<td><em>Numeric</em></td>\n<td>The communication information ID.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>The applicants gender.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants mobile phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>HomePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants home phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>OfficePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants office phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>EmailNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected email notifications or not.</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification.</td>\n</tr>\n<tr>\n<td>IdPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CountryOfCitizenshipCode</td>\n<td><em>String</em></td>\n<td>The code of the country that represents the applicants citizendship.</td>\n</tr>\n<tr>\n<td>CountryOfBirthCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants country of birth.</td>\n</tr>\n<tr>\n<td>CountryOfResidenceCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants current country of residence.</td>\n</tr>\n<tr>\n<td>TextNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected SMS notifications or not.</td>\n</tr>\n<tr>\n<td>LanguageName</td>\n<td><em>String</em></td>\n<td>The preferred language.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AmlKycHelperKycManualUpdateStatus_NotFound0</td>\n<td>Kyc Manual Application Invalid Status Code.</td>\n</tr>\n<tr>\n<td>AmlKycHelperKycManualUpdateStatus_NotFound3</td>\n<td>Kyc Manual Application Not Found</td>\n</tr>\n<tr>\n<td>UpdateKycStatusOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","UpdateManualKycAppStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ca886f92-4a14-442e-8740-02552a6e406a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"10","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycApplication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10,\n            \"FirstName\": \"Some\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"User\",\n            \"Email\": \"someuser@example.ca\",\n            \"IdentityNumber\": \"55555555555555\",\n            \"MobilePhoneNumber\": \"5555555555\",\n            \"OfficePhoneNumber\": \"5555555555\",\n            \"HomePhoneNumber\": null,\n            \"IdentityExpireDate\": \"2023-11-23T00:00:00\",\n            \"InsertDate\": \"2020-01-17T12:49:52.86\",\n            \"IdentityTypeName\": \"NL Driver's Licence\",\n            \"Address1\": \"367-223 Tuscany Springs Blvd NW\",\n            \"Address2\": null,\n            \"BirthDate\": \"1974-09-19T00:00:00\",\n            \"ZipCode\": \"A5A 5A5\",\n            \"CityName\": \"Calgary\",\n            \"ProvinceName\": \"Alberta\",\n            \"CountryName\": \"Canada\",\n            \"IdentityCountryName\": \"Canada\",\n            \"IdentityProvinceName\": \"Alberta\",\n            \"InternalBlacklist\": \"Valid\",\n            \"IdVerification\": \"Invalid\",\n            \"TransUnionIdVerification\": \"Invalid\",\n            \"WatchListVerification\": \"Valid\",\n            \"CanadaPostVerification\": \"Pending\",\n            \"IdentityPlaceOfIssue\": \"AB\",\n            \"CommunicationInfoId\": 14,\n            \"Gender\": \"Male\",\n            \"FinancialInstitutionBranch\": null,\n            \"AccountNumber\": null,\n            \"MobilePhoneCountryCode\": \"1\",\n            \"HomePhoneCountryCode\": null,\n            \"OfficePhoneCountryCode\": \"1\",\n            \"EMailNotification\": \"true\",\n            \"IdExpireDate\": \"2023-11-23T00:00:00\",\n            \"IdPlaceofIssue\": \"AB\",\n            \"CountryofCitizenshipCode\": \"TR\",\n            \"CountryofBirthCode\": \"TR\",\n            \"CountryofResidenceCode\": \"CA\",\n            \"TextNotification\": \"false\",\n            \"LanguageName\": \"English\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d9b12058-4243-4a8e-891a-512b6c7d75ed"},{"name":"Update Manual KYC Application Identification Method","id":"96bf7eb7-8e12-4eec-b4bc-af940597f1de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Id\": 20212,\r\n    \"IdentificationMethodList\": [\r\n        \"A\",\r\n        \"C\",\r\n        \"U\",\r\n        \"V\"\r\n    ]\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/UpdateManualKycAppIdentificationMethod","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Manual KYC Application Identification Method API updates the KYC App Identification Method.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Manual KYC Application ID</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentificationMethodList</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>List of Identification Method Available:  <br /><code>A</code> Account Verification,  <br /><code>C</code> Canada Post Verification,  <br /><code>I</code> In Person ID verification,  <br /><code>U</code> Document Verification,  <br /><code>V</code> Digital Verification.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The application ID.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The applicants first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The applicants middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The applicants last name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>Numeric</em></td>\n<td>The identity number of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The mobile phone number of the applicant.</td>\n</tr>\n<tr>\n<td>OfficePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The office phone number of the applicant.</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The home phone number of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>InsertDate</td>\n<td><em>DateTime</em></td>\n<td>The date the applicant was inserted to the system.</td>\n</tr>\n<tr>\n<td>IdentityTypeName</td>\n<td><em>String</em></td>\n<td>The piece of identification type provided.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The birth date of the applicant.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The applicants zip/postal code.</td>\n</tr>\n<tr>\n<td>CityName</td>\n<td><em>String</em></td>\n<td>The city in which the applicant resides.</td>\n</tr>\n<tr>\n<td>ProvinceName</td>\n<td><em>String</em></td>\n<td>The province in which the applicant resides.</td>\n</tr>\n<tr>\n<td>CountryName</td>\n<td><em>String</em></td>\n<td>The country in which the applicant resides.</td>\n</tr>\n<tr>\n<td>IdentityCountryName</td>\n<td><em>String</em></td>\n<td>The country that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdentityProvinceName</td>\n<td><em>String</em></td>\n<td>The province that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CommunicationInfoId</td>\n<td><em>Numeric</em></td>\n<td>The communication information ID.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>The applicants gender.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants mobile phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>HomePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants home phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>OfficePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants office phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>EmailNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected email notifications or not.</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification.</td>\n</tr>\n<tr>\n<td>IdPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CountryOfCitizenshipCode</td>\n<td><em>String</em></td>\n<td>The code of the country that represents the applicants citizendship.</td>\n</tr>\n<tr>\n<td>CountryOfBirthCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants country of birth.</td>\n</tr>\n<tr>\n<td>CountryOfResidenceCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants current country of residence.</td>\n</tr>\n<tr>\n<td>TextNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected SMS notifications or not.</td>\n</tr>\n<tr>\n<td>LanguageName</td>\n<td><em>String</em></td>\n<td>The preferred language.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InsertOrUpdateIdentityVerificationTypeMap_NullKycManual</td>\n<td>Manual Kyc Application Not found</td>\n</tr>\n<tr>\n<td>UpdateIdentificationMethodOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>GetIdentificationIdListFromParameterValue_WrongIdentificationMethod</td>\n<td>One Or More Identification Method Is Invalid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","UpdateManualKycAppIdentificationMethod"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"99bd9828-fc26-4553-be70-773a92cca972","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"10","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycApplication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10,\n            \"FirstName\": \"Some\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"User\",\n            \"Email\": \"someuser@example.ca\",\n            \"IdentityNumber\": \"55555555555555\",\n            \"MobilePhoneNumber\": \"5555555555\",\n            \"OfficePhoneNumber\": \"5555555555\",\n            \"HomePhoneNumber\": null,\n            \"IdentityExpireDate\": \"2023-11-23T00:00:00\",\n            \"InsertDate\": \"2020-01-17T12:49:52.86\",\n            \"IdentityTypeName\": \"NL Driver's Licence\",\n            \"Address1\": \"367-223 Tuscany Springs Blvd NW\",\n            \"Address2\": null,\n            \"BirthDate\": \"1974-09-19T00:00:00\",\n            \"ZipCode\": \"A5A 5A5\",\n            \"CityName\": \"Calgary\",\n            \"ProvinceName\": \"Alberta\",\n            \"CountryName\": \"Canada\",\n            \"IdentityCountryName\": \"Canada\",\n            \"IdentityProvinceName\": \"Alberta\",\n            \"InternalBlacklist\": \"Valid\",\n            \"IdVerification\": \"Invalid\",\n            \"TransUnionIdVerification\": \"Invalid\",\n            \"WatchListVerification\": \"Valid\",\n            \"CanadaPostVerification\": \"Pending\",\n            \"IdentityPlaceOfIssue\": \"AB\",\n            \"CommunicationInfoId\": 14,\n            \"Gender\": \"Male\",\n            \"FinancialInstitutionBranch\": null,\n            \"AccountNumber\": null,\n            \"MobilePhoneCountryCode\": \"1\",\n            \"HomePhoneCountryCode\": null,\n            \"OfficePhoneCountryCode\": \"1\",\n            \"EMailNotification\": \"true\",\n            \"IdExpireDate\": \"2023-11-23T00:00:00\",\n            \"IdPlaceofIssue\": \"AB\",\n            \"CountryofCitizenshipCode\": \"TR\",\n            \"CountryofBirthCode\": \"TR\",\n            \"CountryofResidenceCode\": \"CA\",\n            \"TextNotification\": \"false\",\n            \"LanguageName\": \"English\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"96bf7eb7-8e12-4eec-b4bc-af940597f1de"},{"name":"Delete Manual KYC Application","id":"77bb7138-a3fa-43ab-8def-2042078d0654","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Id\":20204\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DeleteManualKycApp","description":"<h3 id=\"description\">Description</h3>\n<p>The Delete Manual KYC Application API deletes the manual Kyc application.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The application ID.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The applicants first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The applicants middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The applicants last name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>Numeric</em></td>\n<td>The identity number of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The mobile phone number of the applicant.</td>\n</tr>\n<tr>\n<td>OfficePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The office phone number of the applicant.</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The home phone number of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>InsertDate</td>\n<td><em>DateTime</em></td>\n<td>The date the applicant was inserted to the system.</td>\n</tr>\n<tr>\n<td>IdentityTypeName</td>\n<td><em>String</em></td>\n<td>The piece of identification type provided.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The birth date of the applicant.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The applicants zip/postal code.</td>\n</tr>\n<tr>\n<td>CityName</td>\n<td><em>String</em></td>\n<td>The city in which the applicant resides.</td>\n</tr>\n<tr>\n<td>ProvinceName</td>\n<td><em>String</em></td>\n<td>The province in which the applicant resides.</td>\n</tr>\n<tr>\n<td>CountryName</td>\n<td><em>String</em></td>\n<td>The country in which the applicant resides.</td>\n</tr>\n<tr>\n<td>IdentityCountryName</td>\n<td><em>String</em></td>\n<td>The country that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdentityProvinceName</td>\n<td><em>String</em></td>\n<td>The province that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CommunicationInfoId</td>\n<td><em>Numeric</em></td>\n<td>The communication information ID.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>The applicants gender.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants mobile phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>HomePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants home phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>OfficePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants office phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>EmailNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected email notifications or not.</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification.</td>\n</tr>\n<tr>\n<td>IdPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CountryOfCitizenshipCode</td>\n<td><em>String</em></td>\n<td>The code of the country that represents the applicants citizendship.</td>\n</tr>\n<tr>\n<td>CountryOfBirthCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants country of birth.</td>\n</tr>\n<tr>\n<td>CountryOfResidenceCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants current country of residence.</td>\n</tr>\n<tr>\n<td>TextNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected SMS notifications or not.</td>\n</tr>\n<tr>\n<td>LanguageName</td>\n<td><em>String</em></td>\n<td>The preferred language.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DeleteKycManualApplicationOp_KycNotFound</td>\n<td>Manual KYC Application Not Found.</td>\n</tr>\n<tr>\n<td>DeleteKycManualApplicationOp_NullRequest</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","DeleteManualKycApp"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3861b03f-9ace-4e4f-9d17-77a677156d14","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"10","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycApplication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10,\n            \"FirstName\": \"Some\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"User\",\n            \"Email\": \"someuser@example.ca\",\n            \"IdentityNumber\": \"55555555555555\",\n            \"MobilePhoneNumber\": \"5555555555\",\n            \"OfficePhoneNumber\": \"5555555555\",\n            \"HomePhoneNumber\": null,\n            \"IdentityExpireDate\": \"2023-11-23T00:00:00\",\n            \"InsertDate\": \"2020-01-17T12:49:52.86\",\n            \"IdentityTypeName\": \"NL Driver's Licence\",\n            \"Address1\": \"367-223 Tuscany Springs Blvd NW\",\n            \"Address2\": null,\n            \"BirthDate\": \"1974-09-19T00:00:00\",\n            \"ZipCode\": \"A5A 5A5\",\n            \"CityName\": \"Calgary\",\n            \"ProvinceName\": \"Alberta\",\n            \"CountryName\": \"Canada\",\n            \"IdentityCountryName\": \"Canada\",\n            \"IdentityProvinceName\": \"Alberta\",\n            \"InternalBlacklist\": \"Valid\",\n            \"IdVerification\": \"Invalid\",\n            \"TransUnionIdVerification\": \"Invalid\",\n            \"WatchListVerification\": \"Valid\",\n            \"CanadaPostVerification\": \"Pending\",\n            \"IdentityPlaceOfIssue\": \"AB\",\n            \"CommunicationInfoId\": 14,\n            \"Gender\": \"Male\",\n            \"FinancialInstitutionBranch\": null,\n            \"AccountNumber\": null,\n            \"MobilePhoneCountryCode\": \"1\",\n            \"HomePhoneCountryCode\": null,\n            \"OfficePhoneCountryCode\": \"1\",\n            \"EMailNotification\": \"true\",\n            \"IdExpireDate\": \"2023-11-23T00:00:00\",\n            \"IdPlaceofIssue\": \"AB\",\n            \"CountryofCitizenshipCode\": \"TR\",\n            \"CountryofBirthCode\": \"TR\",\n            \"CountryofResidenceCode\": \"CA\",\n            \"TextNotification\": \"false\",\n            \"LanguageName\": \"English\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"77bb7138-a3fa-43ab-8def-2042078d0654"}],"id":"013ec022-5c58-48f8-9ef9-45323a1175ad","_postman_id":"013ec022-5c58-48f8-9ef9-45323a1175ad","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Digital Verification","id":"df5a3e6e-af65-4142-b2ff-01c53b392ae2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"IdNumber\": \"123AB\",\r\n  \"FirstName\": \"\",\r\n  \"LastName\": \"\",\r\n  \"DOB\": \"\",\r\n  \"IdPhotoFrontBase64\": \"\",\r\n  \"IdPhotoBackBase64\": \"\",\r\n  \"UserPhotoBase64\": \"\",\r\n  \"DotPhotoBase64\": \"\",\r\n  \"TwicPhotoBase64\": \"\",\r\n  \"CarInsurancePhotoBase64\": \"\",\r\n  \"CountryCode\": \"CA\",\r\n  \"ProvinceCode\": \"AB\",\r\n  \"IpAddress\": \"string\",\r\n  \"UserAgent\": \"string\",\r\n  \"Referer\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DigitalVerification","description":"<h3 id=\"description\">Description</h3>\n<p>The Digital Verification API allows the Client to perform digital verification.</p>\n<p>Maximum size is 12.5 mb for a picture converted to base64 and the original picture size cannot be larger than 10 mb. Country Code and Province Code must be as the standard of ISO 3166-1 alpha-2 and needed for the address match status.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdNumber</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates the ID number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Indicates the applicants first name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Indicates the applicants last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DOB</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the applicants date of birth.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdPhotoFrontBase64</td>\n<td><em>String</em></td>\n<td>13,125,000</td>\n<td>Indicates front of Id Photo in base64 module.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdPhotoBackBase64</td>\n<td><em>String</em></td>\n<td>13,125,000</td>\n<td>Indicates back of Id Photo in base64 module.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserPhotoBase64</td>\n<td><em>String</em></td>\n<td>13,125,000</td>\n<td>Indicates user's Photo in base64.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DotPhotoBase64</td>\n<td><em>String</em></td>\n<td>13,125,000</td>\n<td>Indicates Dot Photo in base64</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TwicPhotoBase64</td>\n<td><em>String</em></td>\n<td>13,125,000</td>\n<td>Indicates Twic Photo in base64</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CarInsurancePhotoBase64</td>\n<td><em>String</em></td>\n<td>13,125,000</td>\n<td>Indicates Car Insurance photo in base64</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CountryCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Standard Code for the Country</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Standard Code for the Province</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IpAddress</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates Client IP address Information that has been uploaded.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserAgent</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the browser for User Agent.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Referer</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Indicates the site information directed.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdentityVerification_InvalidParameter1</td>\n<td>Identity Photo Is Missing.</td>\n</tr>\n<tr>\n<td>GetDigitalIdentityVerificationMerchant_nullError</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","AmlKyc","DigitalVerification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"74296a54-663f-477f-aef4-15c6e60584b2","name":"Digital Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"IdNumber\": \"123AB\",\r\n  \"FirstName\": \"\",\r\n  \"LastName\": \"\",\r\n  \"DOB\": \"\",\r\n  \"IdPhotoFrontBase64\": \"\",\r\n  \"IdPhotoBackBase64\": \"\",\r\n  \"UserPhotoBase64\": \"\",\r\n  \"DotPhotoBase64\": \"\",\r\n  \"TwicPhotoBase64\": \"\",\r\n  \"CarInsurancePhotoBase64\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/DigitalVerification"},"status":"Succes","_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"JobId\": \"sSJFpmx7j\",\n        \"StatusId\": 127985,\n        \"Status\": null,\n        \"Version\": 0,\n        \"SubmittedDateTime\": \"2020-05-05T20:44:39Z\",\n        \"UpdatedDateTime\": \"2020-05-05T20:44:49Z\",\n        \"Completed\": true,\n        \"SuccessWithSuggestion\": false,\n        \"IdSide\": null,\n        \"IdNumber\": null,\n        \"FirstName\": null,\n        \"LastName\": null,\n        \"Dob\": null,\n        \"ExpireDate\": null,\n        \"IssueDate\": null,\n        \"BirthDate\": null,\n        \"Class\": null,\n        \"Type\": null,\n        \"CountryValue\": null,\n        \"ProvinceValue\": null,\n        \"CountryId\": null,\n        \"Country\": null,\n        \"ProvinceId\": null,\n        \"Province\": null,\n        \"ResultVersion\": null,\n        \"IdConfidence\": null,\n        \"BackIdConfidence\": null,\n        \"SelfieSunglassesConfidence\": 0,\n        \"SelfieEyeglassesConfidence\": 0,\n        \"BirthDateMatchConfidence\": null,\n        \"SelfieConfidence\": 0.9921,\n        \"IdMatchConfidence\": null,\n        \"FaceMatchConfidence\": 0.9939,\n        \"Success\": false\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"df5a3e6e-af65-4142-b2ff-01c53b392ae2"},{"name":"Get Parameter","id":"d6ede5f0-09fb-4a0e-9ca6-53ba056b52ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetParameter?Parameter=IdentificationMethod","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Parameter API deletes the manual Kyc application.</p>\n<p><i>Note:</i> Available Parameters for Kyc Manual Application =&gt; ProofOfResidence, IdentificationMethod, IdentitySourceType, IdentityType, KycManualApplicationReasonType, KYCManualApplicationStatus.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>Long</td>\n<td>-</td>\n<td>Manual KYC Application ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The application ID.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>The applicants first name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>The applicants middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>The applicants last name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>Numeric</em></td>\n<td>The identity number of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The mobile phone number of the applicant.</td>\n</tr>\n<tr>\n<td>OfficePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The office phone number of the applicant.</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>The home phone number of the applicant.</td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification provided.</td>\n</tr>\n<tr>\n<td>InsertDate</td>\n<td><em>DateTime</em></td>\n<td>The date the applicant was inserted to the system.</td>\n</tr>\n<tr>\n<td>IdentityTypeName</td>\n<td><em>String</em></td>\n<td>The piece of identification type provided.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The street address of the applicant.</td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>The birth date of the applicant.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The applicants zip/postal code.</td>\n</tr>\n<tr>\n<td>CityName</td>\n<td><em>String</em></td>\n<td>The city in which the applicant resides.</td>\n</tr>\n<tr>\n<td>ProvinceName</td>\n<td><em>String</em></td>\n<td>The province in which the applicant resides.</td>\n</tr>\n<tr>\n<td>CountryName</td>\n<td><em>String</em></td>\n<td>The country in which the applicant resides.</td>\n</tr>\n<tr>\n<td>IdentityCountryName</td>\n<td><em>String</em></td>\n<td>The country that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>IdentityProvinceName</td>\n<td><em>String</em></td>\n<td>The province that is provided on the piece of identification.</td>\n</tr>\n<tr>\n<td>InternalBlacklist</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the internal blacklist.</td>\n</tr>\n<tr>\n<td>IdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the status of the applicants ID verification.</td>\n</tr>\n<tr>\n<td>TransUnionIdVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with the credit bureau, TransUnion.</td>\n</tr>\n<tr>\n<td>WatchListVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status on the watchlist.</td>\n</tr>\n<tr>\n<td>CanadaPostVerification</td>\n<td><em>String</em></td>\n<td>Indicates the applicants status with Canada Post verification.</td>\n</tr>\n<tr>\n<td>IdentityPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place where the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CommunicationInfoId</td>\n<td><em>Numeric</em></td>\n<td>The communication information ID.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>The applicants gender.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Numeric</em></td>\n<td>The account number.</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants mobile phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>HomePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants home phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>OfficePhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>The country code for the applicants office phone number. <code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n</tr>\n<tr>\n<td>EmailNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected email notifications or not.</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the piece of identification.</td>\n</tr>\n<tr>\n<td>IdPlaceOfIssue</td>\n<td><em>String</em></td>\n<td>The place the piece of identification was issued.</td>\n</tr>\n<tr>\n<td>CountryOfCitizenshipCode</td>\n<td><em>String</em></td>\n<td>The code of the country that represents the applicants citizendship.</td>\n</tr>\n<tr>\n<td>CountryOfBirthCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants country of birth.</td>\n</tr>\n<tr>\n<td>CountryOfResidenceCode</td>\n<td><em>String</em></td>\n<td>The code that represents the applicants current country of residence.</td>\n</tr>\n<tr>\n<td>TextNotification</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the applicants has selected SMS notifications or not.</td>\n</tr>\n<tr>\n<td>LanguageName</td>\n<td><em>String</em></td>\n<td>The preferred language.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetParameter"],"host":["{{baseUrl}}"],"query":[{"key":"Parameter","value":"IdentificationMethod"}],"variable":[]}},"response":[{"id":"7115b8bb-d787-48aa-9b4c-18b740a76b66","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"10","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetManualKycApplication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10,\n            \"FirstName\": \"Some\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"User\",\n            \"Email\": \"someuser@example.ca\",\n            \"IdentityNumber\": \"55555555555555\",\n            \"MobilePhoneNumber\": \"5555555555\",\n            \"OfficePhoneNumber\": \"5555555555\",\n            \"HomePhoneNumber\": null,\n            \"IdentityExpireDate\": \"2023-11-23T00:00:00\",\n            \"InsertDate\": \"2020-01-17T12:49:52.86\",\n            \"IdentityTypeName\": \"NL Driver's Licence\",\n            \"Address1\": \"367-223 Tuscany Springs Blvd NW\",\n            \"Address2\": null,\n            \"BirthDate\": \"1974-09-19T00:00:00\",\n            \"ZipCode\": \"A5A 5A5\",\n            \"CityName\": \"Calgary\",\n            \"ProvinceName\": \"Alberta\",\n            \"CountryName\": \"Canada\",\n            \"IdentityCountryName\": \"Canada\",\n            \"IdentityProvinceName\": \"Alberta\",\n            \"InternalBlacklist\": \"Valid\",\n            \"IdVerification\": \"Invalid\",\n            \"TransUnionIdVerification\": \"Invalid\",\n            \"WatchListVerification\": \"Valid\",\n            \"CanadaPostVerification\": \"Pending\",\n            \"IdentityPlaceOfIssue\": \"AB\",\n            \"CommunicationInfoId\": 14,\n            \"Gender\": \"Male\",\n            \"FinancialInstitutionBranch\": null,\n            \"AccountNumber\": null,\n            \"MobilePhoneCountryCode\": \"1\",\n            \"HomePhoneCountryCode\": null,\n            \"OfficePhoneCountryCode\": \"1\",\n            \"EMailNotification\": \"true\",\n            \"IdExpireDate\": \"2023-11-23T00:00:00\",\n            \"IdPlaceofIssue\": \"AB\",\n            \"CountryofCitizenshipCode\": \"TR\",\n            \"CountryofBirthCode\": \"TR\",\n            \"CountryofResidenceCode\": \"CA\",\n            \"TextNotification\": \"false\",\n            \"LanguageName\": \"English\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d6ede5f0-09fb-4a0e-9ca6-53ba056b52ef"}],"id":"7bb8c11b-3df0-47d7-99c8-3d7fe89d5186","event":[{"listen":"prerequest","script":{"id":"7c84e37a-4e6b-4206-b604-575e4a514b0e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ff841ca1-4aad-4f3b-829e-2cc2e4f5e4eb","type":"text/javascript","exec":[""]}}],"_postman_id":"7bb8c11b-3df0-47d7-99c8-3d7fe89d5186","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"ATM Locator","item":[{"name":"Search Atm","id":"fc901c52-3088-4945-9c67-71d731c34b81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Address\": \"Calgary\",\n    \"CityId\": 0,\n    \"ProvinceId\": 0,\n    \"CountryId\": 0,\n    \"Latitude\": 0,\n    \"Longitude\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Atm/SearchAtmLocator","description":"<h3 id=\"description\">Description</h3>\n<p>The Search ATM API searches for DCBank ATM Locations. The API will find the nearest ATM based on the inputted search criteria.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>80</td>\n<td>Indicates the address of the ATM.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>6</td>\n<td>Indicates the ID of City where the ATM is located.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Province ID where the ATM is located.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>4</td>\n<td>Indicates Country ID where the ATM is located.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Latitude</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the latitude of where the ATM is located.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Longitude</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the longitude of where the ATM is located.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Locations</td>\n<td><em>List</em></td>\n<td>Returns a list of ATM locations, with their details. Laid out below.</td>\n</tr>\n<tr>\n<td>SiteName</td>\n<td><em>String</em></td>\n<td>The site name where the ATM is located.</td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>The address where the ATM is located.</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the city where the ATM is located.</td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the provice where the ATM is located.</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>The ID of the country where the ATM is located.</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>The postal code where the ATM is located.</td>\n</tr>\n<tr>\n<td>Latitude</td>\n<td><em>Decimal</em></td>\n<td>The latitude value where the ATM is located.</td>\n</tr>\n<tr>\n<td>Longitude</td>\n<td><em>Decimal</em></td>\n<td>The longitude value where the ATM is located.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td><em>String</em></td>\n<td>The country where the ATM is located.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city where the ATM is located.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province where the ATM is located.</td>\n</tr>\n<tr>\n<td>Distance</td>\n<td><em>Decimal</em></td>\n<td>The distance to where the ATM is located.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Atm","SearchAtmLocator"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7d10d418-3c50-4086-83fa-2b6c28de98bc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Address\": \"string\",\n    \"CityId\": 0,\n    \"ProvinceId\": 0,\n    \"CountryId\": 0,\n    \"Latitude\": 0,\n    \"Longitude\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Atm/SearchAtmLocator"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"Locations\": [\n    \t\t{\n\t\t        \"SiteName\": \"\",\n\t\t        \"Address\": \"\",\n\t\t        \"CityId\": 12345,\n\t\t        \"ProvinceId\": 12345,\n\t\t        \"CountryId\": 12345,\n\t\t        \"PostCode\": \"\",\n\t\t        \"Latitude\": 123.123,\n\t\t        \"Longitude\": 123.123,\n\t\t        \"Country\": \"\",\n\t\t        \"City\": \"\",\n\t\t        \"Province\": \"\",\n\t\t        \"Distance\": 123.123\n    \t\t},\n    \t\t{\n\t\t        \"SiteName\": \"\",\n\t\t        \"Address\": \"\",\n\t\t        \"CityId\": 12345,\n\t\t        \"ProvinceId\": 12345,\n\t\t        \"CountryId\": 12345,\n\t\t        \"PostCode\": \"\",\n\t\t        \"Latitude\": 123.123,\n\t\t        \"Longitude\": 123.123,\n\t\t        \"Country\": \"\",\n\t\t        \"City\": \"\",\n\t\t        \"Province\": \"\",\n\t\t        \"Distance\": 123.123\n    \t\t},\n    \t\t{\n\t\t        \"SiteName\": \"\",\n\t\t        \"Address\": \"\",\n\t\t        \"CityId\": 12345,\n\t\t        \"ProvinceId\": 12345,\n\t\t        \"CountryId\": 12345,\n\t\t        \"PostCode\": \"\",\n\t\t        \"Latitude\": 123.123,\n\t\t        \"Longitude\": 123.123,\n\t\t        \"Country\": \"\",\n\t\t        \"City\": \"\",\n\t\t        \"Province\": \"\",\n\t\t        \"Distance\": 123.123\n    \t\t}\n    \t],\n        \"FocusLocation\": {\n        \t\"X\": 123.123,\n        \t\"Y\": 123.123\n    \t},\n        \"ProvinceId\": 12345,\n        \"CityId\": 12345\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"fc901c52-3088-4945-9c67-71d731c34b81"}],"id":"27f7d750-e96f-42da-8506-ed44ed3a480f","_postman_id":"27f7d750-e96f-42da-8506-ed44ed3a480f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Parameter","item":[{"name":"Address ","item":[{"name":"Get Country List","id":"11fb6d3b-3516-45fe-9116-a8496281a4f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCountryList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Countyry List API retrives the Country List with the Country Code, Country ID and Country Name.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Code</td>\n<td><em>Numeric</em></td>\n<td>The code representing the country.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The ID representing the country.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the country.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetCountryList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"61ac1541-cd41-4ff6-a00b-505f28eb8e45","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCountryList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Code\": \"263\",\n            \"Id\": 246,\n            \"Name\": \"Zimbabwe\"\n        },\n        {\n            \"Code\": \"260\",\n            \"Id\": 245,\n            \"Name\": \"Zambia\"\n        },\n        {\n            \"Code\": \"38\",\n            \"Id\": 244,\n            \"Name\": \"Yugoslavia\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"11fb6d3b-3516-45fe-9116-a8496281a4f3"},{"name":"Get Country Code","id":"b676d9fd-09bf-46ec-80a0-53b5da90dd14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetCountryCode","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Country Code API retrieves a list of all of the country codes and country names.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Code</td>\n<td><em>Numeric</em></td>\n<td>The code that represents the country.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the country.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetCountryCode"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"99dcf082-606c-4103-85ec-279fa351461a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetCountryCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Code\": \"93\",\n            \"Name\": \"Afghanistan\"\n        },\n        {\n            \"Code\": \"355\",\n            \"Name\": \"Albania\"\n        },\n        {\n            \"Code\": \"213\",\n            \"Name\": \"Algeria\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b676d9fd-09bf-46ec-80a0-53b5da90dd14"},{"name":"Get Province","id":"809cdb86-13c4-4991-ab15-852203042cd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetProvince","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Province API retrieves the list of province codes and their names.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Code</td>\n<td><em>Numeric</em></td>\n<td>The numeric code representing the province.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the province.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetProvince"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4652b808-3935-42bd-b8ba-26a0236d9b64","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetProvince"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 15:22:17 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Code\": \"AB\",\n            \"Name\": \"Alberta\"\n        },\n        {\n            \"Code\": \"BC\",\n            \"Name\": \"British Columbia\"\n        },\n        {\n            \"Code\": \"MB\",\n            \"Name\": \"Manitoba\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"809cdb86-13c4-4991-ab15-852203042cd8"},{"name":"Get Canada Province List","id":"5eca2569-5b8c-49e4-8ded-ba85cef766fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCanadaProvinceList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Canada Province List API retrives the Canada Province List.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Code</td>\n<td><em>Numeric</em></td>\n<td>The code representing the province.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the province.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetCanadaProvinceList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5c649861-7705-44b8-bf01-e6ce6d298de8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetProvince"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 15:22:17 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Code\": \"AB\",\n            \"Name\": \"Alberta\"\n        },\n        {\n            \"Code\": \"BC\",\n            \"Name\": \"British Columbia\"\n        },\n        {\n            \"Code\": \"MB\",\n            \"Name\": \"Manitoba\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5eca2569-5b8c-49e4-8ded-ba85cef766fc"},{"name":"Get Province List By Country","id":"10031e33-cdf1-4848-be05-9b281ca9c601","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"38"},"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetProvinceListByCountry","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Province List by Country API retrieves the province List by Country. In the request body, the country Id must be written.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The code representing the country where the province exists.</td>\n<td><strong>Required</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The ID of the province.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the province.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetProvinceListByCountry"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1992b7e5-9e65-4ffe-bb66-a38682128157","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"38","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetProvinceListByCountry"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 663,\n            \"Name\": \"Alberta\"\n        },\n        {\n            \"Id\": 664,\n            \"Name\": \"British Columbia\"\n        },\n        {\n            \"Id\": 665,\n            \"Name\": \"Manitoba\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"10031e33-cdf1-4848-be05-9b281ca9c601"},{"name":"Get City","id":"e85cbe9a-568f-4448-a4f0-0e266ff160cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetCity","description":"<h3 id=\"description\">Description</h3>\n<p>The Get City API retrieves a list of cities.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The name of the province.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the city within the province.</td>\n</tr>\n<tr>\n<td>ProvinceCode</td>\n<td><em>Numeric</em></td>\n<td>The code representing the province.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetCity"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bfec1aab-1f59-4ce1-9741-012223d7354a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetCity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Province\": \"Andaman and Nicobar Islands\",\n            \"Name\": \"Bombuflat\",\n            \"ProvinceCode\": null\n        },\n        {\n            \"Province\": \"Andaman and Nicobar Islands\",\n            \"Name\": \"Garacharma\",\n            \"ProvinceCode\": null\n        },\n        {\n            \"Province\": \"Andaman and Nicobar Islands\",\n            \"Name\": \"Port Blair\",\n            \"ProvinceCode\": null\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"e85cbe9a-568f-4448-a4f0-0e266ff160cb"},{"name":"Get City List By Province","id":"b611031b-bf3b-4f56-b22c-4794f5e47167","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"663"},"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCityListByProvince","description":"<h3 id=\"description\">Description</h3>\n<p>The Get City List by Province API retrieves the City List by calling the ProvinceId which is retrieved via the Get Province List By Country API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID representing the province.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The ID of the city.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the ccity.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetCityListByProvince"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"41654f67-3384-4b5e-93a0-1ea146c387de","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"663"},"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCityListByProvince"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 10093,\n            \"Name\": \"Airdrie\"\n        },\n        {\n            \"Id\": 10094,\n            \"Name\": \"Athabasca\"\n        },\n        {\n            \"Id\": 10095,\n            \"Name\": \"Banff\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b611031b-bf3b-4f56-b22c-4794f5e47167"}],"id":"396eb80e-5181-40fa-9a2d-1f414a39962f","_postman_id":"396eb80e-5181-40fa-9a2d-1f414a39962f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Identification ","item":[{"name":"Get Identification Method","id":"7ea4952a-02bc-4f3b-83f8-85e185818710","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIdentificationMethod","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Identification Method API retrieves the methods for identification.</p>\n<p><strong>Note:</strong> To get response, brackets must be written in the request body brackets.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetIdentificationMethod"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ed87ecfe-1b0c-4c87-aa9c-6b4596664f2b","name":"Get Identification Method","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIdentificationMethod"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 13 Jan 2026 20:11:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubdomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 108175,\n            \"Code\": \"A\",\n            \"Description\": \"Account Verification\"\n        },\n        {\n            \"Id\": 106682,\n            \"Code\": \"C\",\n            \"Description\": \"Canada Post Verification\"\n        },\n        {\n            \"Id\": 2402,\n            \"Code\": \"D\",\n            \"Description\": \"Dual Process Method\"\n        },\n        {\n            \"Id\": 2400,\n            \"Code\": \"I\",\n            \"Description\": \"In Person ID Verification\"\n        },\n        {\n            \"Id\": 2401,\n            \"Code\": \"P\",\n            \"Description\": \"Credit File Method\"\n        },\n        {\n            \"Id\": 108176,\n            \"Code\": \"U\",\n            \"Description\": \"Documents\"\n        },\n        {\n            \"Id\": 107968,\n            \"Code\": \"V\",\n            \"Description\": \"Digital ID Verification\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"7ea4952a-02bc-4f3b-83f8-85e185818710"},{"name":"Get Identification Type","id":"b01afa50-53f7-4c0a-bf89-d87615362052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIdentificationType","description":"<p>The Get Identification Type API retrieves the Identification Type.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>String</em></td>\n<td>The type code of the piece of identification.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the type code for the piece of identification.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetIdentificationType"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0d79fb55-788b-48a8-a76f-8fb4f0294f0e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIdentificationType"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 501,\n            \"Code\": \"C020\",\n            \"Description\": \"Canadian Forces ID\"\n        },\n        {\n            \"Id\": 502,\n            \"Code\": \"C013\",\n            \"Description\": \"Driver's Licence - Foreign\"\n        },\n        {\n            \"Id\": 24331,\n            \"Code\": \"C014\",\n            \"Description\": \"Canada Passport\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"},{"id":"ec2f2371-6daa-44c4-862d-70fbd3a94a99","name":"Get Identification Type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIdentificationType"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 15 Dec 2025 22:53:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubdomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 96279,\n            \"Code\": \"C000\",\n            \"Description\": \"ON Driver's Licence\"\n        },\n        {\n            \"Id\": 96276,\n            \"Code\": \"C001\",\n            \"Description\": \"QC Driver's Licence\"\n        },\n        {\n            \"Id\": 96277,\n            \"Code\": \"C002\",\n            \"Description\": \"AB Driver's Licence\"\n        },\n        {\n            \"Id\": 96280,\n            \"Code\": \"C003\",\n            \"Description\": \"BC Driver's Licence\"\n        },\n        {\n            \"Id\": 96275,\n            \"Code\": \"C004\",\n            \"Description\": \"MB Driver's Licence\"\n        },\n        {\n            \"Id\": 96274,\n            \"Code\": \"C005\",\n            \"Description\": \"NU Driver's Licence\"\n        },\n        {\n            \"Id\": 96273,\n            \"Code\": \"C006\",\n            \"Description\": \"NB Driver's Licence\"\n        },\n        {\n            \"Id\": 96272,\n            \"Code\": \"C007\",\n            \"Description\": \"NS Driver's Licence\"\n        },\n        {\n            \"Id\": 96278,\n            \"Code\": \"C008\",\n            \"Description\": \"NL Driver's Licence\"\n        },\n        {\n            \"Id\": 96282,\n            \"Code\": \"C009\",\n            \"Description\": \"NT Driver's Licence\"\n        },\n        {\n            \"Id\": 96290,\n            \"Code\": \"C010\",\n            \"Description\": \"PE Driver's Licence\"\n        },\n        {\n            \"Id\": 96283,\n            \"Code\": \"C011\",\n            \"Description\": \"SK Driver's Licence\"\n        },\n        {\n            \"Id\": 96299,\n            \"Code\": \"C012\",\n            \"Description\": \"YT Driver's Licence\"\n        },\n        {\n            \"Id\": 502,\n            \"Code\": \"C013\",\n            \"Description\": \"Driver's Licence - Foreign\"\n        },\n        {\n            \"Id\": 24331,\n            \"Code\": \"C014\",\n            \"Description\": \"Canada Passport\"\n        },\n        {\n            \"Id\": 96296,\n            \"Code\": \"C015\",\n            \"Description\": \"Foreign Passport\"\n        },\n        {\n            \"Id\": 96295,\n            \"Code\": \"C016\",\n            \"Description\": \"USA Passport\"\n        },\n        {\n            \"Id\": 24332,\n            \"Code\": \"C018\",\n            \"Description\": \"Certificate of Indian Status Card\"\n        },\n        {\n            \"Id\": 24333,\n            \"Code\": \"C019\",\n            \"Description\": \"Canada Permanent Resident Card\"\n        },\n        {\n            \"Id\": 501,\n            \"Code\": \"C020\",\n            \"Description\": \"Canadian Forces ID\"\n        },\n        {\n            \"Id\": 96294,\n            \"Code\": \"C021\",\n            \"Description\": \"ON Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96293,\n            \"Code\": \"C024\",\n            \"Description\": \"MB Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96292,\n            \"Code\": \"C025\",\n            \"Description\": \"PE Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96298,\n            \"Code\": \"C033\",\n            \"Description\": \"QC Provincial Health Card\"\n        },\n        {\n            \"Id\": 96291,\n            \"Code\": \"C034\",\n            \"Description\": \"AB Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96289,\n            \"Code\": \"C035\",\n            \"Description\": \"BC Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96288,\n            \"Code\": \"C036\",\n            \"Description\": \"NB Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96287,\n            \"Code\": \"C037\",\n            \"Description\": \"NL Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96286,\n            \"Code\": \"C038\",\n            \"Description\": \"NS Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96285,\n            \"Code\": \"C039\",\n            \"Description\": \"SK Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96284,\n            \"Code\": \"C040\",\n            \"Description\": \"YT Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96271,\n            \"Code\": \"C041\",\n            \"Description\": \"NU Provincial Photo ID\"\n        },\n        {\n            \"Id\": 96281,\n            \"Code\": \"C042\",\n            \"Description\": \"NT Provincial Photo ID\"\n        },\n        {\n            \"Id\": 24334,\n            \"Code\": \"C043\",\n            \"Description\": \"Firearms Possession and Acquisition License\"\n        },\n        {\n            \"Id\": 96297,\n            \"Code\": \"C044\",\n            \"Description\": \"Canada Veteran's Health Card (no photo)\"\n        },\n        {\n            \"Id\": 108027,\n            \"Code\": \"C075\",\n            \"Description\": \"BC Combo Card\"\n        },\n        {\n            \"Id\": 923037,\n            \"Code\": \"C076\",\n            \"Description\": \"Driver's License\"\n        },\n        {\n            \"Id\": 923038,\n            \"Code\": \"C077\",\n            \"Description\": \"Passport\"\n        },\n        {\n            \"Id\": 923039,\n            \"Code\": \"C078\",\n            \"Description\": \"Health Card\"\n        },\n        {\n            \"Id\": 923040,\n            \"Code\": \"C079\",\n            \"Description\": \"Permanent Residence\"\n        },\n        {\n            \"Id\": 923041,\n            \"Code\": \"C080\",\n            \"Description\": \"Identification Card\"\n        },\n        {\n            \"Id\": 923131,\n            \"Code\": \"C081\",\n            \"Description\": \"Canadian SIN\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"b01afa50-53f7-4c0a-bf89-d87615362052"},{"name":"Get Verifying User","id":"bee953ce-4ee7-491f-b763-c5c7786745ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetVerifyingUser","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Verifying User API verifies the Customer.</p>\n<p><strong>Note:</strong> To get response, brackets must be written in the request body brackets.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>Numeric</td>\n<td>The verifying users unique identififer.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>String</em></td>\n<td>The code representing the verifying user.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description, telling the verified users name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetVerifyingUser"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"25ab631d-6241-4a01-84a0-39ab03e5f493","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetVerifyingUser"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 24335,\n            \"Code\": \"P1\",\n            \"Description\": \"Kelly Trudgeon\"\n        },\n        {\n            \"Id\": 24336,\n            \"Code\": \"P2\",\n            \"Description\": \"Jocelyn Scott\"\n        },\n        {\n            \"Id\": 24337,\n            \"Code\": \"P3\",\n            \"Description\": \"Jessica Taylor\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bee953ce-4ee7-491f-b763-c5c7786745ae"}],"id":"255f9cf9-b3c8-49bc-82a9-49e7540c4fa5","_postman_id":"255f9cf9-b3c8-49bc-82a9-49e7540c4fa5","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Account","item":[{"name":"Get All Account","id":"f778e79a-b4cb-4378-ab2e-7d5e7124fb8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"ProgramCode\": \"ETRANSFER\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllAccount","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Account API retrieves the Client's all account by calling the API with the name Program Code. It will retrieve all the accounts for the specified program.</p>\n<p>The ProgramCodes are: <strong>EFT</strong> , <strong>ETRANSFER</strong> , <strong>BILL</strong> , <strong>WALLET</strong> , <strong>DDT</strong> , <strong>CDIC</strong> , <strong>LENDER</strong></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProgramCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The programs available to DCBank clients/ customers.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The clients unique identifier.</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td><em>Numeric</em></td>\n<td>The name of the account.</td>\n</tr>\n<tr>\n<td>Balance</td>\n<td><em>Decimal</em></td>\n<td>The balance of the account.</td>\n</tr>\n<tr>\n<td>Type</td>\n<td><em>String</em></td>\n<td>The type of account.</td>\n</tr>\n<tr>\n<td>AccountStatus</td>\n<td><em>String</em></td>\n<td>The status of the account. Either <code>Active</code> or <code>Inactive</code>.</td>\n</tr>\n<tr>\n<td>Program</td>\n<td><em>String</em></td>\n<td>The program associated with the account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Account","GetAllAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2694bcbf-fbf7-4851-947d-4975aa9cc84e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"ProgramCode\": \"ETRANSFER\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Account/GetAllAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 20173,\n            \"AccountName\": \"Etranfer\",\n            \"Balance\": 19337165,\n            \"Type\": \"Funding Account\",\n            \"AccountStatus\": \"Active\",\n            \"Program\": \"e-Transfer\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"f778e79a-b4cb-4378-ab2e-7d5e7124fb8c"},{"name":"Get Lender Financial Institution","id":"5f5c6926-176b-41ab-bdbe-d10b65b33ab8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetFinancialInstitution","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Lender Financial Institution API retrieves the Customer's financial institution.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>Numeric</em></td>\n<td>The financial institution number.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionDesc</td>\n<td><em>String</em></td>\n<td>The name of the financial institution.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>The address of where the financial institution is located.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Lender","GetFinancialInstitution"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"07e00efb-2195-4ed0-bb8b-bceaafb017b1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Lender/GetFinancialInstitution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"FinancialInstitution\": 3,\n            \"FinancialInstitutionDesc\": \"ROYAL BANK OF CANADA\",\n            \"FinancialInstitutionBranch\": \"00300118\",\n            \"Address\": \"WAYNE & CATHEDRAL C/O 120 CENTRE ST ABBEY SK S0N 0A0\"\n        },\n        {\n            \"FinancialInstitution\": 4,\n            \"FinancialInstitutionDesc\": \"THE TORONTO-DOMINION BANK\",\n            \"FinancialInstitutionBranch\": \"00414462\",\n            \"Address\": \"1900 ELLESMERE RD.  SCARBOROUGH ON M1H 2V6\"\n        },\n        {\n            \"FinancialInstitution\": 4,\n            \"FinancialInstitutionDesc\": \"THE TORONTO-DOMINION BANK\",\n            \"FinancialInstitutionBranch\": \"00417902\",\n            \"Address\": \"1900 ELLESMERE RD & BELLANY RD N  SCARBOROUGH ON M1H 2V6\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"5f5c6926-176b-41ab-bdbe-d10b65b33ab8"},{"name":"Get EFT Financial Institution","id":"8692ba4d-0608-48c1-8bfc-e4964bced219","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetFinancialInstitution","description":"<h3 id=\"description\">Description</h3>\n<p>The Get EFT Financial Institution API retrieves the financial institution.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The financial institutions unique identifier.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The name of the financial institution.</td>\n</tr>\n<tr>\n<td>BankNumber</td>\n<td><em>Numeric</em></td>\n<td>The bank number of the financial institution.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","GetFinancialInstitution"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7d8ffd94-15da-43da-b33a-35cbc409ea24","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetFinancialInstitution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 1,\n            \"Description\": \"ROYAL BANK OF CANADA\",\n            \"BankNumber\": 3\n        },\n        {\n            \"Id\": 2,\n            \"Description\": \"WILLIAMS LAKE AND DISTRICT CREDIT UN\",\n            \"BankNumber\": 809\n        },\n        {\n            \"Id\": 3,\n            \"Description\": \"BANK OF MONTREAL\",\n            \"BankNumber\": 1\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"8692ba4d-0608-48c1-8bfc-e4964bced219"},{"name":"Get EFT Financial Institution Branch","id":"6505cbbc-f763-4cf0-bd8a-e55c3988e224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"FinancialInstitutionId\": 46\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetFinancialInstitutionBranch","description":"<h3 id=\"description\">Description</h3>\n<p>The Get EFT Financial Institution Branch API retrieves the financial institution branch number.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FinancialInstitutionId</td>\n<td>Integer</td>\n<td></td>\n<td>Indicates the Financial Institution ID.  <br />This can be retrieved using the <strong>Get Financial Institution</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Numeric</em></td>\n<td>The financial institutions unique identifier.</td>\n</tr>\n<tr>\n<td>RoutingNumber</td>\n<td><em>Numeric</em></td>\n<td>The financial institutions routing number.</td>\n</tr>\n<tr>\n<td>TransitNumber</td>\n<td><em>Numeric</em></td>\n<td>The financial institutions transit number.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The name of the financial institution.</td>\n</tr>\n<tr>\n<td>StateCode</td>\n<td><em>String</em></td>\n<td>The state(province) code where the financial institution is located.</td>\n</tr>\n<tr>\n<td>CityName</td>\n<td><em>String</em></td>\n<td>The city name where the financial institution is located.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The street address where the financial institution is located.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The street address where the financial institution is located.</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>The zip(postal) code where the financial institution is located.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Eft","GetFinancialInstitutionBranch"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5abbd3e0-553a-44c7-8e5b-f7ecaf3cd226","name":"Get EFT Financial Institution Branch","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"FinancialInstitutionId\": 72\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Eft/GetFinancialInstitutionBranch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 979,\n            \"FinancialInstitutionId\": 72,\n            \"RoutingNumber\": \"33410008\",\n            \"TransitNumber\": 10008,\n            \"Description\": \"VERSABANK BRANCH\",\n            \"StateCode\": \"SK\",\n            \"CityName\": \"SASKATOON\",\n            \"Address1\": \"410 22ND ST E-SUITE 950\",\n            \"Address2\": \"\",\n            \"ZipCode\": \"S7K 5T6\"\n        },\n        {\n            \"Id\": 980,\n            \"FinancialInstitutionId\": 72,\n            \"RoutingNumber\": \"33400001\",\n            \"TransitNumber\": 1,\n            \"Description\": \"SASKATOON 1\",\n            \"StateCode\": \"SK\",\n            \"CityName\": \"SASKATOON\",\n            \"Address1\": \"SUITE 950, 410-22ND STREET EAST\",\n            \"Address2\": \"\",\n            \"ZipCode\": \"S7K 5T6\"\n        },\n        {\n            \"Id\": 19209,\n            \"FinancialInstitutionId\": 72,\n            \"RoutingNumber\": \"33400002\",\n            \"TransitNumber\": 2,\n            \"Description\": \"LONDON 2\",\n            \"StateCode\": \"ON\",\n            \"CityName\": \"LONDON\",\n            \"Address1\": \"SUITE 2002, 140 FULLARTON STREET\",\n            \"Address2\": \"\",\n            \"ZipCode\": \"N6A 5P2\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"6505cbbc-f763-4cf0-bd8a-e55c3988e224"},{"name":"Get AML/KYC Financial Institution","id":"3fc4a78e-9361-4b58-9252-97a378f2e9f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetFinancialInstitution","description":"<h3 id=\"description\">Description</h3>\n<p>The Get AML/KYC Financial Institution retrieves the financial institution and branch with their description.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>Numeric</em></td>\n<td>The bank number of the financial institution.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionDesc</td>\n<td><em>String</em></td>\n<td>The name of the financial institution.</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranch</td>\n<td><em>Numeric</em></td>\n<td>The branch number of the financial institution.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetFinancialInstitution"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5a418467-2158-4f72-9853-725341e1f090","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetFinancialInstitution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"FinancialInstitution\": 3,\n            \"FinancialInstitutionDesc\": \"ROYAL BANK OF CANADA\",\n            \"FinancialInstitutionBranch\": \"00300118\"\n        },\n        {\n            \"FinancialInstitution\": 4,\n            \"FinancialInstitutionDesc\": \"THE TORONTO-DOMINION BANK\",\n            \"FinancialInstitutionBranch\": \"00414462\"\n        },\n        {\n            \"FinancialInstitution\": 4,\n            \"FinancialInstitutionDesc\": \"THE TORONTO-DOMINION BANK\",\n            \"FinancialInstitutionBranch\": \"00417902\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"3fc4a78e-9361-4b58-9252-97a378f2e9f0"},{"name":"Get AML/KYC Parameter","id":"048f9bd2-b187-4c7c-988a-8ee6a0bef361","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetParameter?Parameter={{parameterType}}","description":"<h3 id=\"description\">Description</h3>\n<p>The Get AML/KYC Parameter API retirieves the parameters that is to be used with the specific query parameter.</p>\n<p>Parameters: <code>Gender</code>, <code>Language</code>, <code>YesNo</code>, <code>Country</code>, <code>IdentityType</code>, <code>IdentitySourceType</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key</td>\n<td><em>String</em></td>\n<td>Represents \"Gender\".</td>\n</tr>\n<tr>\n<td>Value</td>\n<td><em>String</em></td>\n<td>The value of the gender. M, F, etc.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the value. Male, Female, etc.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","AmlKyc","GetParameter"],"host":["{{baseUrl}}"],"query":[{"key":"Parameter","value":"{{parameterType}}"}],"variable":[]}},"response":[{"id":"977b9a17-4303-4904-82af-63c7743f695c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetParameter?Parameter=Gender","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","AmlKyc","GetParameter"],"query":[{"key":"Parameter","value":"Gender"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Key\": \"Gender\",\n            \"Value\": \"M\",\n            \"Description\": \"Male\",\n            \"Id\": 3000\n        },\n        {\n            \"Key\": \"Gender\",\n            \"Value\": \"F\",\n            \"Description\": \"Female\",\n            \"Id\": 3001\n        },\n        {\n            \"Key\": \"Gender\",\n            \"Value\": \"O\",\n            \"Description\": \"Other\",\n            \"Id\": 107845\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"048f9bd2-b187-4c7c-988a-8ee6a0bef361"},{"name":"Get All Currency Parameter","id":"2bfdd5b9-4a63-4996-9e73-78074597c650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetAllCurrency","description":"<h3 id=\"description\">Description</h3>\n<p>The Get All Currency Parameter API retrieves the parameters that is to be used with the specific query parameter.</p>\n<p>Parameters: <code>isActive</code>, <code>description</code>, <code>code</code>, <code>isoCode</code>, <code>symbol</code>, <code>order</code>,<code>id</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Key</td>\n<td><em>String</em></td>\n<td>Represents \"Gender\".</td>\n</tr>\n<tr>\n<td>Value</td>\n<td><em>String</em></td>\n<td>The value of the gender. M, F, etc.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the value. Male, Female, etc.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetAllCurrency"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d1e39a01-208f-41be-b373-f0cf1b175acc","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{baseUrl}}/integrationapi/v1.0/AmlKyc/GetParameter?Parameter=Gender","host":["{{baseUrl}}"],"path":["integrationapi","v1.0","AmlKyc","GetParameter"],"query":[{"key":"Parameter","value":"Gender"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Key\": \"Gender\",\n            \"Value\": \"M\",\n            \"Description\": \"Male\",\n            \"Id\": 3000\n        },\n        {\n            \"Key\": \"Gender\",\n            \"Value\": \"F\",\n            \"Description\": \"Female\",\n            \"Id\": 3001\n        },\n        {\n            \"Key\": \"Gender\",\n            \"Value\": \"O\",\n            \"Description\": \"Other\",\n            \"Id\": 107845\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"2bfdd5b9-4a63-4996-9e73-78074597c650"}],"id":"ef4f1659-c665-425f-bb7f-bdf443a28d5f","_postman_id":"ef4f1659-c665-425f-bb7f-bdf443a28d5f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"General","item":[{"name":"Get Position List","id":"6a4e0c2e-c1f3-41fa-98f7-7fc2aaab9e6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetPositionList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Position List API retrieves the position list which is defined in the system. The response will include PositionId and Position Description.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique position identifier.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>String</em></td>\n<td>The unique code of the position.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description/the name of the position.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetPositionList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"09e74714-d936-4e31-bbbd-bdc17f93ac89","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetPositionList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 15:40:08 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 1900,\n            \"Code\": \"M\",\n            \"Description\": \"Manager\"\n        },\n        {\n            \"Id\": 1901,\n            \"Code\": \"C\",\n            \"Description\": \"Vice President\"\n        },\n        {\n            \"Id\": 1902,\n            \"Code\": \"S\",\n            \"Description\": \"Salesman\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"6a4e0c2e-c1f3-41fa-98f7-7fc2aaab9e6b"}],"id":"684a0f57-3369-4bbf-a9f5-24d7a5ca81fa","_postman_id":"684a0f57-3369-4bbf-a9f5-24d7a5ca81fa","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"User","item":[{"name":"Insert Customer User","id":"b32441dd-606e-412c-8cd4-c7e0c774f58a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerNumber\": \"\",\n\t\"UserName\": \"\",\n\t\"ExpDateOfUser\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\"UserStatusId\": 12345,\n\t\"UserStatusCode\": \"\",\n\t\"SendTempPasswordByEmail\": false,\n\t\"SendTempPasswordByText\": false\n}"},"url":"{{baseUrl}}​/integrationapi​/v1.0​/User​/InsertCustomerUser","description":"<h3 id=\"description\">Description</h3>\n<p>The Insert Customer User API creates a new customer <a href=\"#account-example\">account</a>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The email of the user.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExpDateOfUser</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The expiry date of the user.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserStatusId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The user status ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserStatusCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The user status code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SendTempPasswordByEmail</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True</code> or <code>False</code> value indicating whether the customer has enabled notifications via email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SendTempPasswordByText</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True</code> or <code>False</code> value indicating whether the customer has enabled notifications via SMS.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi​","v1.0​","User​","InsertCustomerUser"],"host":["{{baseUrl}}​"],"query":[],"variable":[]}},"response":[{"id":"004a0854-00f6-4042-bef1-5441d7dfd19e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"CustomerNumber\": \"0220000002\",\n\t\"UserName\": \"someuser@example.ca\",\n\t\"ExpDateOfUser\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\"UserStatusId\": 24006,\n\t\"UserStatusCode\": \"1\",\n\t\"SendTempPasswordByEmail\": false,\n\t\"SendTempPasswordByText\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}​/integrationapi​/v1.0​/User​/InsertCustomerUser"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 12345,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b32441dd-606e-412c-8cd4-c7e0c774f58a"},{"name":"Update Customer User","id":"01fd2c28-4793-408f-940c-b1ba2bbe51ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"UserId\": 12345,\n\t\"CustomerNumber\": \"\",\n\t\"UserName\": \"\",\n\t\"ExpDateOfUser\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\"UserStatusId\": 12345,\n\t\"UserStatusCode\": \"\",\n\t\"SendTempPasswordByEmail\": false,\n\t\"SendTempPasswordByText\": false\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/User/UpdateCustomerUser","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Customer User API updates the Customer's API information.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The users unique identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The email of the user.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExpDateOfUser</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>The expiry date of the user.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserStatusId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The user status ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserStatusCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The user status code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SendTempPasswordByEmail</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True</code> or <code>False</code> value indicating whether the customer has enabled notifications via email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SendTempPasswordByText</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td><code>True</code> or <code>False</code> value indicating whether the customer has enabled notifications via SMS.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","User","UpdateCustomerUser"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"efd88f74-4477-4211-8c11-f2f410403a38","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"UserId\": 12345,\n\t\"CustomerNumber\": \"0220000002\",\n\t\"UserName\": \"someuser@example.ca\",\n\t\"ExpDateOfUser\": \"2020-01-01T00:00:00.0000000-00:00\",\n\t\"UserStatusId\": 24006,\n\t\"UserStatusCode\": \"1\",\n\t\"SendTempPasswordByEmail\": false,\n\t\"SendTempPasswordByText\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/User/UpdateCustomerUser"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 12345,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"01fd2c28-4793-408f-940c-b1ba2bbe51ea"},{"name":"Get User Status List","id":"1310d20e-e28f-4f13-8c1b-a4289cb3bbbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetUserStatusList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get User Status List API retrieves the Get User Status List. The response will return with each status' Description and It's Id.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The user identifier.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>Numeric</em></td>\n<td>The code identifying the user status.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the status code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetUserStatusList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2caaf73a-4d9f-45cd-bbc1-4bc3a6851349","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetUserStatusList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 24006,\n            \"Code\": \"1\",\n            \"Description\": \"Active\"\n        },\n        {\n            \"Id\": 24007,\n            \"Code\": \"2\",\n            \"Description\": \"PasswordLocked\"\n        },\n        {\n            \"Id\": 24008,\n            \"Code\": \"3\",\n            \"Description\": \"Blocked\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"1310d20e-e28f-4f13-8c1b-a4289cb3bbbb"}],"id":"785a8865-a4ca-43d9-bc95-ccbbc1cd6806","_postman_id":"785a8865-a4ca-43d9-bc95-ccbbc1cd6806","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Industry Of Entity","item":[{"name":"Get Industry of Entity List","id":"5b1da50c-dd29-43f1-9e30-effbc6e85408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIndustryList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Industry List API retrieves the Industry Id.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IndustryId</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier representing the specific industry.</td>\n</tr>\n<tr>\n<td>FirstLevel</td>\n<td><em>String</em></td>\n<td>The first level description of the industry ID.</td>\n</tr>\n<tr>\n<td>SecondLevel</td>\n<td><em>String</em></td>\n<td>Second level description of the industry ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetIndustryList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"df69d02f-bbd1-47cf-97a0-b00a55900e1c","name":"Get Industry of Entity List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIndustryList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Nov 2024 21:46:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"IndustryId\": 109,\n            \"FirstLevel\": \"Agriculture, forestry, fishing and hunting\",\n            \"SecondLevel\": \"Hunting and trapping\"\n        },\n        {\n            \"IndustryId\": 110,\n            \"FirstLevel\": \"Agriculture, forestry, fishing and hunting\",\n            \"SecondLevel\": \"Agriculture, forestry, and fishing\"\n        },\n        {\n            \"IndustryId\": 111,\n            \"FirstLevel\": \"Mining, quarrying, and oil and gas extraction\",\n            \"SecondLevel\": \"Mining, quarrying, and oil and gas extraction\"\n        },\n        {\n            \"IndustryId\": 112,\n            \"FirstLevel\": \"Utilities\",\n            \"SecondLevel\": \"Utilities\"\n        },\n        {\n            \"IndustryId\": 113,\n            \"FirstLevel\": \"Construction\",\n            \"SecondLevel\": \"Construction\"\n        },\n        {\n            \"IndustryId\": 114,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Tobacco manufacturing\"\n        },\n        {\n            \"IndustryId\": 115,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Cannabis product manufacturing\"\n        },\n        {\n            \"IndustryId\": 116,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Other manufacturing industries\"\n        },\n        {\n            \"IndustryId\": 117,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Explosives manufacturing\"\n        },\n        {\n            \"IndustryId\": 118,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Aerospace product and parts manufacturing\"\n        },\n        {\n            \"IndustryId\": 119,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Linen and uniform supply\"\n        },\n        {\n            \"IndustryId\": 120,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Cigarette and tobacco product merchant wholesalers\"\n        },\n        {\n            \"IndustryId\": 121,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Cannabis merchant wholesalers\"\n        },\n        {\n            \"IndustryId\": 122,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Mineral, ore and precious metal merchant wholesalers\"\n        },\n        {\n            \"IndustryId\": 123,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Other mechant whoelsalers\"\n        },\n        {\n            \"IndustryId\": 124,\n            \"FirstLevel\": \"Retail trade\",\n            \"SecondLevel\": \"Cannabis retailers\"\n        },\n        {\n            \"IndustryId\": 125,\n            \"FirstLevel\": \"Retail trade\",\n            \"SecondLevel\": \"Other retailers\"\n        },\n        {\n            \"IndustryId\": 126,\n            \"FirstLevel\": \"Transportation and warehousing\",\n            \"SecondLevel\": \"Transportation and warehousing\"\n        },\n        {\n            \"IndustryId\": 127,\n            \"FirstLevel\": \"Information and cultural industries\",\n            \"SecondLevel\": \"Information and cultural industries\"\n        },\n        {\n            \"IndustryId\": 128,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Bank\"\n        },\n        {\n            \"IndustryId\": 129,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Money Service Business\"\n        },\n        {\n            \"IndustryId\": 130,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Payment Service Provider\"\n        },\n        {\n            \"IndustryId\": 131,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Payday Lender\"\n        },\n        {\n            \"IndustryId\": 132,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Virtual Assets Service Provider (Crypto)\"\n        },\n        {\n            \"IndustryId\": 133,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Credit Union and Cooperative\"\n        },\n        {\n            \"IndustryId\": 134,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Trust Company\"\n        },\n        {\n            \"IndustryId\": 135,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Loan Company\"\n        },\n        {\n            \"IndustryId\": 136,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Mortgage Loan Company\"\n        },\n        {\n            \"IndustryId\": 137,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Insurance Company\"\n        },\n        {\n            \"IndustryId\": 138,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Securities Firm\"\n        },\n        {\n            \"IndustryId\": 139,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Other Financial Institutions\"\n        },\n        {\n            \"IndustryId\": 140,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Commodity contracts dealing\"\n        },\n        {\n            \"IndustryId\": 141,\n            \"FirstLevel\": \"Other Real estate and rental and leasing\",\n            \"SecondLevel\": \"Other Real estate and rental and leasing\"\n        },\n        {\n            \"IndustryId\": 142,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Lessors of social housing projects\"\n        },\n        {\n            \"IndustryId\": 143,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Offices of real estate agents and brokers\"\n        },\n        {\n            \"IndustryId\": 144,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Real estate agents\"\n        },\n        {\n            \"IndustryId\": 145,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Offices of real estate brokers\"\n        },\n        {\n            \"IndustryId\": 146,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Real estate property managers\"\n        },\n        {\n            \"IndustryId\": 147,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Offices of real estate appraisers\"\n        },\n        {\n            \"IndustryId\": 148,\n            \"FirstLevel\": \"Professional, scientific and technical services\",\n            \"SecondLevel\": \"Legal services\"\n        },\n        {\n            \"IndustryId\": 149,\n            \"FirstLevel\": \"Professional, scientific and technical services\",\n            \"SecondLevel\": \"Accounting, tax preparation, bookkeeping and payroll services\"\n        },\n        {\n            \"IndustryId\": 150,\n            \"FirstLevel\": \"Professional, scientific and technical services\",\n            \"SecondLevel\": \"Other professional, scientific and technical services\"\n        },\n        {\n            \"IndustryId\": 151,\n            \"FirstLevel\": \"Management of companies and enterprises\",\n            \"SecondLevel\": \"Management of companies and enterprises\"\n        },\n        {\n            \"IndustryId\": 152,\n            \"FirstLevel\": \"Administrative and support, waste management and remediation services\",\n            \"SecondLevel\": \"Administrative and support, waste management and remediation services\"\n        },\n        {\n            \"IndustryId\": 153,\n            \"FirstLevel\": \"Educational services\",\n            \"SecondLevel\": \"Educational services\"\n        },\n        {\n            \"IndustryId\": 154,\n            \"FirstLevel\": \"Health care and social assistance\",\n            \"SecondLevel\": \"Health care and social assistance\"\n        },\n        {\n            \"IndustryId\": 155,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Performing arts, spectator sports and related industries\"\n        },\n        {\n            \"IndustryId\": 156,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Heritage institutions\"\n        },\n        {\n            \"IndustryId\": 157,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Other Amusement and recreation industries\"\n        },\n        {\n            \"IndustryId\": 158,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Gambling/Gaming industries\"\n        },\n        {\n            \"IndustryId\": 159,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Casinos\"\n        },\n        {\n            \"IndustryId\": 160,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Lotteries\"\n        },\n        {\n            \"IndustryId\": 161,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Casino hotels\"\n        },\n        {\n            \"IndustryId\": 162,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Adult Entertainment\"\n        },\n        {\n            \"IndustryId\": 163,\n            \"FirstLevel\": \"Accommodation and food services\",\n            \"SecondLevel\": \"Accommodation and food services\"\n        },\n        {\n            \"IndustryId\": 164,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Religious, grant-making, civic, and professional and similar organizations\"\n        },\n        {\n            \"IndustryId\": 165,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Other Repair and maintenance\"\n        },\n        {\n            \"IndustryId\": 166,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Automotive repair and maintenance\"\n        },\n        {\n            \"IndustryId\": 167,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Car washes\"\n        },\n        {\n            \"IndustryId\": 168,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Personal and laundry services\"\n        },\n        {\n            \"IndustryId\": 169,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Private households\"\n        },\n        {\n            \"IndustryId\": 170,\n            \"FirstLevel\": \"Public administration\",\n            \"SecondLevel\": \"Public Administration (Canada)\"\n        },\n        {\n            \"IndustryId\": 171,\n            \"FirstLevel\": \"Public administration\",\n            \"SecondLevel\": \"International and other extra-territorial public administration\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"5b1da50c-dd29-43f1-9e30-effbc6e85408"}],"id":"52ee81af-f031-4647-a161-56d9ed470f60","_postman_id":"52ee81af-f031-4647-a161-56d9ed470f60","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Occupation","item":[{"name":"Get Occupation List","id":"3a769742-9e77-477f-ad5c-3457f262a0e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetOccupationList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Occupation List API retrives the Occupation List with the Occupation Id and Occupation Name.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The occupation identifier.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the occupation.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>November 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetOccupationList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2363ddb2-0189-4f86-9ae3-b41116f540b1","name":"Get Occupation List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetOccupationList"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 07 Nov 2025 18:15:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 25026,\n            \"Name\": \"Accommodation service managers\"\n        },\n        {\n            \"Id\": 25027,\n            \"Name\": \"Accommodation, travel, tourism and related services supervisors\"\n        },\n        {\n            \"Id\": 923179,\n            \"Name\": \"Accounting\"\n        },\n        {\n            \"Id\": 25028,\n            \"Name\": \"Actors and comedians\"\n        },\n        {\n            \"Id\": 923180,\n            \"Name\": \"Administration\"\n        },\n        {\n            \"Id\": 25029,\n            \"Name\": \"Aerospace engineers\"\n        },\n        {\n            \"Id\": 25030,\n            \"Name\": \"Agricultural and fish products inspectors\"\n        },\n        {\n            \"Id\": 25031,\n            \"Name\": \"Agricultural representatives, consultants and specialists\"\n        },\n        {\n            \"Id\": 25032,\n            \"Name\": \"Air traffic controllers and related occupations\"\n        },\n        {\n            \"Id\": 25033,\n            \"Name\": \"Air transport ramp attendants\"\n        },\n        {\n            \"Id\": 25034,\n            \"Name\": \"Aircraft assemblers and aircraft assembly inspectors\"\n        },\n        {\n            \"Id\": 25035,\n            \"Name\": \"Aircraft mechanics and aircraft inspectors\"\n        },\n        {\n            \"Id\": 25036,\n            \"Name\": \"Airline ticket and service agents\"\n        },\n        {\n            \"Id\": 25037,\n            \"Name\": \"Allied primary health practitioners\"\n        },\n        {\n            \"Id\": 25038,\n            \"Name\": \"Announcers and other broadcasters\"\n        },\n        {\n            \"Id\": 25039,\n            \"Name\": \"Appliance servicers and repairers\"\n        },\n        {\n            \"Id\": 25040,\n            \"Name\": \"Aquaculture and marine harvest labourers\"\n        },\n        {\n            \"Id\": 25023,\n            \"Name\": \"Architect\"\n        },\n        {\n            \"Id\": 25041,\n            \"Name\": \"Archivists\"\n        },\n        {\n            \"Id\": 25042,\n            \"Name\": \"Artisans and craftspersons\"\n        },\n        {\n            \"Id\": 25043,\n            \"Name\": \"Assemblers and inspectors, electrical appliance, apparatus and equipment manufacturing\"\n        },\n        {\n            \"Id\": 25044,\n            \"Name\": \"Assessors, valuators and appraisers\"\n        },\n        {\n            \"Id\": 923181,\n            \"Name\": \"Assistant\"\n        },\n        {\n            \"Id\": 25045,\n            \"Name\": \"Athletes\"\n        },\n        {\n            \"Id\": 25046,\n            \"Name\": \"Audio and video recording technicians\"\n        },\n        {\n            \"Id\": 25047,\n            \"Name\": \"Audiologists and speech-language pathologists\"\n        },\n        {\n            \"Id\": 25048,\n            \"Name\": \"Authors and writers\"\n        },\n        {\n            \"Id\": 25025,\n            \"Name\": \"Baker\"\n        },\n        {\n            \"Id\": 25049,\n            \"Name\": \"Banking, credit and other investment managers\"\n        },\n        {\n            \"Id\": 25050,\n            \"Name\": \"Bartenders\"\n        },\n        {\n            \"Id\": 25051,\n            \"Name\": \"Binding and finishing machine operators\"\n        },\n        {\n            \"Id\": 25052,\n            \"Name\": \"Biologists and related scientists\"\n        },\n        {\n            \"Id\": 25053,\n            \"Name\": \"Boat and cable ferry operators and related occupations\"\n        },\n        {\n            \"Id\": 25054,\n            \"Name\": \"Bricklayers\"\n        },\n        {\n            \"Id\": 24999,\n            \"Name\": \"Butcher\"\n        },\n        {\n            \"Id\": 25055,\n            \"Name\": \"By-law enforcement and other regulatory officers, n.e.c.\"\n        },\n        {\n            \"Id\": 25056,\n            \"Name\": \"Camera, platemaking and other prepress occupations\"\n        },\n        {\n            \"Id\": 25057,\n            \"Name\": \"Cardiology technologists and electrophysiological diagnostic technologists, n.e.c.\"\n        },\n        {\n            \"Id\": 25058,\n            \"Name\": \"Carpenters\"\n        },\n        {\n            \"Id\": 25059,\n            \"Name\": \"Cashiers\"\n        },\n        {\n            \"Id\": 25060,\n            \"Name\": \"Casino occupations\"\n        },\n        {\n            \"Id\": 25061,\n            \"Name\": \"Central control and process operators, mineral and metal processing\"\n        },\n        {\n            \"Id\": 25062,\n            \"Name\": \"Chain saw and skidder operators\"\n        },\n        {\n            \"Id\": 25063,\n            \"Name\": \"Chefs\"\n        },\n        {\n            \"Id\": 25064,\n            \"Name\": \"Chemical engineers\"\n        },\n        {\n            \"Id\": 25065,\n            \"Name\": \"Chemists\"\n        },\n        {\n            \"Id\": 25066,\n            \"Name\": \"Chiropractors\"\n        },\n        {\n            \"Id\": 25067,\n            \"Name\": \"Civil engineers\"\n        },\n        {\n            \"Id\": 25068,\n            \"Name\": \"Cleaning supervisors\"\n        },\n        {\n            \"Id\": 24930,\n            \"Name\": \"Clergy\"\n        },\n        {\n            \"Id\": 25069,\n            \"Name\": \"Coaches\"\n        },\n        {\n            \"Id\": 25070,\n            \"Name\": \"College and other vocational instructors\"\n        },\n        {\n            \"Id\": 24931,\n            \"Name\": \"Community Service/Social Work\"\n        },\n        {\n            \"Id\": 25071,\n            \"Name\": \"Computer and information systems managers\"\n        },\n        {\n            \"Id\": 25072,\n            \"Name\": \"Computer engineers (except software engineers and designers)\"\n        },\n        {\n            \"Id\": 25073,\n            \"Name\": \"Computer network technicians\"\n        },\n        {\n            \"Id\": 25074,\n            \"Name\": \"Computer programmers and interactive media developers\"\n        },\n        {\n            \"Id\": 25075,\n            \"Name\": \"Concrete, clay and stone forming operators\"\n        },\n        {\n            \"Id\": 25076,\n            \"Name\": \"Conductors, composers and arrangers\"\n        },\n        {\n            \"Id\": 25077,\n            \"Name\": \"Conference and event planners\"\n        },\n        {\n            \"Id\": 25078,\n            \"Name\": \"Conservation and fishery officers\"\n        },\n        {\n            \"Id\": 25079,\n            \"Name\": \"Conservators and curators\"\n        },\n        {\n            \"Id\": 25080,\n            \"Name\": \"Construction managers\"\n        },\n        {\n            \"Id\": 25081,\n            \"Name\": \"Construction millwrights and industrial mechanics\"\n        },\n        {\n            \"Id\": 25082,\n            \"Name\": \"Construction trades helpers and labourers\"\n        },\n        {\n            \"Id\": 25083,\n            \"Name\": \"Contractors and supervisors, trades\"\n        },\n        {\n            \"Id\": 24997,\n            \"Name\": \"Cook\"\n        },\n        {\n            \"Id\": 25084,\n            \"Name\": \"Corporate sales managers\"\n        },\n        {\n            \"Id\": 25000,\n            \"Name\": \"Corrections Officer\"\n        },\n        {\n            \"Id\": 25085,\n            \"Name\": \"Correspondence, publication and regulatory clerks\"\n        },\n        {\n            \"Id\": 25002,\n            \"Name\": \"Counselor\"\n        },\n        {\n            \"Id\": 25086,\n            \"Name\": \"Couriers, messengers and door-to-door distributors\"\n        },\n        {\n            \"Id\": 25087,\n            \"Name\": \"Court clerks\"\n        },\n        {\n            \"Id\": 25088,\n            \"Name\": \"Crane operators\"\n        },\n        {\n            \"Id\": 24932,\n            \"Name\": \"Creative - Animator\"\n        },\n        {\n            \"Id\": 24933,\n            \"Name\": \"Creative - Designer\"\n        },\n        {\n            \"Id\": 24934,\n            \"Name\": \"Creative - Director\"\n        },\n        {\n            \"Id\": 24936,\n            \"Name\": \"Creative - Performer\"\n        },\n        {\n            \"Id\": 24935,\n            \"Name\": \"Creative - Writer/Artist\"\n        },\n        {\n            \"Id\": 25003,\n            \"Name\": \"CSR - Customer Service Rep\"\n        },\n        {\n            \"Id\": 25089,\n            \"Name\": \"Customs, ship and other brokers\"\n        },\n        {\n            \"Id\": 25090,\n            \"Name\": \"Dancers\"\n        },\n        {\n            \"Id\": 25091,\n            \"Name\": \"Data entry clerks\"\n        },\n        {\n            \"Id\": 25092,\n            \"Name\": \"Database analysts and data administrators\"\n        },\n        {\n            \"Id\": 24033,\n            \"Name\": \"Dentist\"\n        },\n        {\n            \"Id\": 25093,\n            \"Name\": \"Desktop publishing operators and related occupations\"\n        },\n        {\n            \"Id\": 25094,\n            \"Name\": \"Dietitians and nutritionists\"\n        },\n        {\n            \"Id\": 25005,\n            \"Name\": \"Dispatcher\"\n        },\n        {\n            \"Id\": 7000,\n            \"Name\": \"Doctor\"\n        },\n        {\n            \"Id\": 24937,\n            \"Name\": \"Driver - Bus\"\n        },\n        {\n            \"Id\": 24938,\n            \"Name\": \"Driver - Cab/Limo\"\n        },\n        {\n            \"Id\": 24939,\n            \"Name\": \"Driver - Construction\"\n        },\n        {\n            \"Id\": 24940,\n            \"Name\": \"Driver - Delivery\"\n        },\n        {\n            \"Id\": 24941,\n            \"Name\": \"Driver - Long Distance\"\n        },\n        {\n            \"Id\": 24942,\n            \"Name\": \"Driver - Train\"\n        },\n        {\n            \"Id\": 25095,\n            \"Name\": \"Dry cleaning, laundry and related occupations\"\n        },\n        {\n            \"Id\": 25096,\n            \"Name\": \"Early childhood educators and assistants\"\n        },\n        {\n            \"Id\": 25097,\n            \"Name\": \"Economists and economic policy researchers and analysts\"\n        },\n        {\n            \"Id\": 25098,\n            \"Name\": \"Editors\"\n        },\n        {\n            \"Id\": 25099,\n            \"Name\": \"Educational counsellors\"\n        },\n        {\n            \"Id\": 25100,\n            \"Name\": \"Electronic service technicians (household and business equipment)\"\n        },\n        {\n            \"Id\": 25101,\n            \"Name\": \"Electronics assemblers, fabricators, inspectors and testers\"\n        },\n        {\n            \"Id\": 25102,\n            \"Name\": \"Elevator constructors and mechanics\"\n        },\n        {\n            \"Id\": 25103,\n            \"Name\": \"Employment counsellors\"\n        },\n        {\n            \"Id\": 25104,\n            \"Name\": \"Employment insurance, immigration, border services and revenue officers\"\n        },\n        {\n            \"Id\": 923182,\n            \"Name\": \"Energy Worker\"\n        },\n        {\n            \"Id\": 923183,\n            \"Name\": \"Engineering\"\n        },\n        {\n            \"Id\": 25105,\n            \"Name\": \"Engineering inspectors and regulatory officers\"\n        },\n        {\n            \"Id\": 25106,\n            \"Name\": \"Engineering managers\"\n        },\n        {\n            \"Id\": 25007,\n            \"Name\": \"Environmental Services\"\n        },\n        {\n            \"Id\": 25107,\n            \"Name\": \"Estheticians, electrologists and related occupations\"\n        },\n        {\n            \"Id\": 24943,\n            \"Name\": \"Executive - Corporate Officer\"\n        },\n        {\n            \"Id\": 24944,\n            \"Name\": \"Executive - Middle management\"\n        },\n        {\n            \"Id\": 25108,\n            \"Name\": \"Executive assistants\"\n        },\n        {\n            \"Id\": 25109,\n            \"Name\": \"Facility operation and maintenance managers\"\n        },\n        {\n            \"Id\": 25110,\n            \"Name\": \"Family, marriage and other related counsellors\"\n        },\n        {\n            \"Id\": 24945,\n            \"Name\": \"Farmer\"\n        },\n        {\n            \"Id\": 25008,\n            \"Name\": \"Field/Rig worker\"\n        },\n        {\n            \"Id\": 25111,\n            \"Name\": \"Film and video camera operators\"\n        },\n        {\n            \"Id\": 25112,\n            \"Name\": \"Financial and investment analysts\"\n        },\n        {\n            \"Id\": 25113,\n            \"Name\": \"Financial auditors and accountants\"\n        },\n        {\n            \"Id\": 25114,\n            \"Name\": \"Financial managers\"\n        },\n        {\n            \"Id\": 25115,\n            \"Name\": \"Financial sales representatives\"\n        },\n        {\n            \"Id\": 24946,\n            \"Name\": \"Firefighter\"\n        },\n        {\n            \"Id\": 24947,\n            \"Name\": \"Fisherman\"\n        },\n        {\n            \"Id\": 25116,\n            \"Name\": \"Floor covering installers\"\n        },\n        {\n            \"Id\": 25117,\n            \"Name\": \"Food and beverage servers\"\n        },\n        {\n            \"Id\": 25118,\n            \"Name\": \"Food counter attendants, kitchen helpers and related support occupations\"\n        },\n        {\n            \"Id\": 25119,\n            \"Name\": \"Food service supervisors\"\n        },\n        {\n            \"Id\": 24948,\n            \"Name\": \"Forestry Worker\"\n        },\n        {\n            \"Id\": 25120,\n            \"Name\": \"Foundry workers\"\n        },\n        {\n            \"Id\": 25009,\n            \"Name\": \"Franchise Employee\"\n        },\n        {\n            \"Id\": 25121,\n            \"Name\": \"Funeral directors and embalmers\"\n        },\n        {\n            \"Id\": 25122,\n            \"Name\": \"Furniture finishers and refinishers\"\n        },\n        {\n            \"Id\": 25123,\n            \"Name\": \"Gas fitters\"\n        },\n        {\n            \"Id\": 25124,\n            \"Name\": \"Geoscientists and oceanographers\"\n        },\n        {\n            \"Id\": 25125,\n            \"Name\": \"Glass forming and finishing machine operators and glass cutters\"\n        },\n        {\n            \"Id\": 24949,\n            \"Name\": \"Government - Ambassador or Embassy\"\n        },\n        {\n            \"Id\": 24950,\n            \"Name\": \"Government - Elected Official/MP\"\n        },\n        {\n            \"Id\": 923184,\n            \"Name\": \"Government - Employee\"\n        },\n        {\n            \"Id\": 24951,\n            \"Name\": \"Government - Head of State/Government\"\n        },\n        {\n            \"Id\": 24952,\n            \"Name\": \"Government - Senior Foreign Member\"\n        },\n        {\n            \"Id\": 24953,\n            \"Name\": \"Government - Senior Party Member\"\n        },\n        {\n            \"Id\": 25126,\n            \"Name\": \"Government managers - economic analysis, policy development and program administration\"\n        },\n        {\n            \"Id\": 25127,\n            \"Name\": \"Government managers - education policy development and program administration\"\n        },\n        {\n            \"Id\": 25128,\n            \"Name\": \"Government managers - health and social policy development and program administration\"\n        },\n        {\n            \"Id\": 25129,\n            \"Name\": \"Graphic arts technicians\"\n        },\n        {\n            \"Id\": 25130,\n            \"Name\": \"Graphic designers and illustrators\"\n        },\n        {\n            \"Id\": 25131,\n            \"Name\": \"Ground and water transport ticket agents, cargo service representatives and related clerks\"\n        },\n        {\n            \"Id\": 25132,\n            \"Name\": \"Hairstylists and barbers\"\n        },\n        {\n            \"Id\": 25133,\n            \"Name\": \"Harvesting labourers\"\n        },\n        {\n            \"Id\": 923185,\n            \"Name\": \"Health Care\"\n        },\n        {\n            \"Id\": 25134,\n            \"Name\": \"Health information management occupations\"\n        },\n        {\n            \"Id\": 25135,\n            \"Name\": \"Health policy researchers, consultants and program officers\"\n        },\n        {\n            \"Id\": 25136,\n            \"Name\": \"Heavy-duty equipment operators / mechanics\"\n        },\n        {\n            \"Id\": 25137,\n            \"Name\": \"Home building and renovation managers\"\n        },\n        {\n            \"Id\": 25138,\n            \"Name\": \"Home child care providers\"\n        },\n        {\n            \"Id\": 25139,\n            \"Name\": \"Home support workers, housekeepers and related occupations\"\n        },\n        {\n            \"Id\": 24954,\n            \"Name\": \"Homemaker\"\n        },\n        {\n            \"Id\": 25140,\n            \"Name\": \"Hotel front desk clerks\"\n        },\n        {\n            \"Id\": 25141,\n            \"Name\": \"Image, social and other personal consultants\"\n        },\n        {\n            \"Id\": 25142,\n            \"Name\": \"Information systems analysts and consultants\"\n        },\n        {\n            \"Id\": 25143,\n            \"Name\": \"Information systems testing technicians\"\n        },\n        {\n            \"Id\": 25144,\n            \"Name\": \"Inspectors and graders, textile, fabric, fur and leather products manufacturing\"\n        },\n        {\n            \"Id\": 25145,\n            \"Name\": \"Inspectors and testers, mineral and metal processing\"\n        },\n        {\n            \"Id\": 25146,\n            \"Name\": \"Inspectors in public and environmental health and occupational health and safety\"\n        },\n        {\n            \"Id\": 25147,\n            \"Name\": \"Insulators\"\n        },\n        {\n            \"Id\": 25148,\n            \"Name\": \"Insurance Broker\"\n        },\n        {\n            \"Id\": 25149,\n            \"Name\": \"Interior designers and interior decorators\"\n        },\n        {\n            \"Id\": 25150,\n            \"Name\": \"Ironworkers\"\n        },\n        {\n            \"Id\": 25151,\n            \"Name\": \"Janitors, caretakers and building superintendents\"\n        },\n        {\n            \"Id\": 25152,\n            \"Name\": \"Jewellers, jewellery and watch repairers and related occupations\"\n        },\n        {\n            \"Id\": 25153,\n            \"Name\": \"Journalists\"\n        },\n        {\n            \"Id\": 24039,\n            \"Name\": \"Judge\"\n        },\n        {\n            \"Id\": 25154,\n            \"Name\": \"Labourers in chemical products processing and utilities\"\n        },\n        {\n            \"Id\": 25155,\n            \"Name\": \"Labourers in fish and seafood processing\"\n        },\n        {\n            \"Id\": 25156,\n            \"Name\": \"Labourers in food, beverage and associated products processing\"\n        },\n        {\n            \"Id\": 25157,\n            \"Name\": \"Labourers in metal fabrication\"\n        },\n        {\n            \"Id\": 25158,\n            \"Name\": \"Labourers in mineral and metal processing\"\n        },\n        {\n            \"Id\": 25159,\n            \"Name\": \"Labourers in rubber and plastic products manufacturing\"\n        },\n        {\n            \"Id\": 25160,\n            \"Name\": \"Labourers in textile processing\"\n        },\n        {\n            \"Id\": 25161,\n            \"Name\": \"Labourers in wood, pulp and paper processing\"\n        },\n        {\n            \"Id\": 25162,\n            \"Name\": \"Land survey technologists and technicians\"\n        },\n        {\n            \"Id\": 25163,\n            \"Name\": \"Land surveyors\"\n        },\n        {\n            \"Id\": 25164,\n            \"Name\": \"Landscaping and grounds maintenance labourers\"\n        },\n        {\n            \"Id\": 24040,\n            \"Name\": \"Lawyer\"\n        },\n        {\n            \"Id\": 25165,\n            \"Name\": \"Legal administrative assistants\"\n        },\n        {\n            \"Id\": 25166,\n            \"Name\": \"Librarians\"\n        },\n        {\n            \"Id\": 25167,\n            \"Name\": \"Library assistants and clerks\"\n        },\n        {\n            \"Id\": 25168,\n            \"Name\": \"Library, archive, museum and art gallery managers\"\n        },\n        {\n            \"Id\": 25010,\n            \"Name\": \"Lifeguard\"\n        },\n        {\n            \"Id\": 25169,\n            \"Name\": \"Longshore workers\"\n        },\n        {\n            \"Id\": 25170,\n            \"Name\": \"Machine fitters\"\n        },\n        {\n            \"Id\": 25171,\n            \"Name\": \"Machinists and machining and tooling inspectors\"\n        },\n        {\n            \"Id\": 24955,\n            \"Name\": \"Manager - Business Owner\"\n        },\n        {\n            \"Id\": 24956,\n            \"Name\": \"Manager - Manufacturing\"\n        },\n        {\n            \"Id\": 24957,\n            \"Name\": \"Manager - Office\"\n        },\n        {\n            \"Id\": 25172,\n            \"Name\": \"Managers - publishing, motion pictures, broadcasting and performing arts\"\n        },\n        {\n            \"Id\": 25173,\n            \"Name\": \"Massage therapists\"\n        },\n        {\n            \"Id\": 25174,\n            \"Name\": \"Material handlers\"\n        },\n        {\n            \"Id\": 25175,\n            \"Name\": \"Mathematicians, statisticians and actuaries\"\n        },\n        {\n            \"Id\": 25176,\n            \"Name\": \"Mechanical assemblers and inspectors\"\n        },\n        {\n            \"Id\": 25177,\n            \"Name\": \"Mechanical engineering technologists and technicians\"\n        },\n        {\n            \"Id\": 25178,\n            \"Name\": \"Mechanical engineers\"\n        },\n        {\n            \"Id\": 25179,\n            \"Name\": \"Medical administrative assistants\"\n        },\n        {\n            \"Id\": 25180,\n            \"Name\": \"Medical laboratory technologists\"\n        },\n        {\n            \"Id\": 25181,\n            \"Name\": \"Meteorologists and climatologists\"\n        },\n        {\n            \"Id\": 24958,\n            \"Name\": \"Military - Enlisted\"\n        },\n        {\n            \"Id\": 24959,\n            \"Name\": \"Military - Officer\"\n        },\n        {\n            \"Id\": 25182,\n            \"Name\": \"Mine labourers\"\n        },\n        {\n            \"Id\": 24960,\n            \"Name\": \"Mining Worker\"\n        },\n        {\n            \"Id\": 25183,\n            \"Name\": \"Motor vehicle assemblers, inspectors and testers\"\n        },\n        {\n            \"Id\": 25184,\n            \"Name\": \"Motor vehicle body repairers\"\n        },\n        {\n            \"Id\": 25185,\n            \"Name\": \"Motorcycle, all-terrain vehicle and other related mechanics\"\n        },\n        {\n            \"Id\": 24041,\n            \"Name\": \"Musician\"\n        },\n        {\n            \"Id\": 25186,\n            \"Name\": \"Natural and applied science policy researchers, consultants and program officers\"\n        },\n        {\n            \"Id\": 25187,\n            \"Name\": \"Non-commissioned ranks of the Canadian Forces\"\n        },\n        {\n            \"Id\": 24042,\n            \"Name\": \"Nurse\"\n        },\n        {\n            \"Id\": 25188,\n            \"Name\": \"Nursery and greenhouse workers\"\n        },\n        {\n            \"Id\": 25189,\n            \"Name\": \"Nursing co-ordinators and supervisors\"\n        },\n        {\n            \"Id\": 25190,\n            \"Name\": \"Occupational therapists\"\n        },\n        {\n            \"Id\": 24961,\n            \"Name\": \"Office Staff - Accounting/Bookkeeping\"\n        },\n        {\n            \"Id\": 24962,\n            \"Name\": \"Office Staff - Clerical\"\n        },\n        {\n            \"Id\": 24964,\n            \"Name\": \"Office Staff - General\"\n        },\n        {\n            \"Id\": 24965,\n            \"Name\": \"Office Staff - Human Resources\"\n        },\n        {\n            \"Id\": 24966,\n            \"Name\": \"Office Staff - Instructor\"\n        },\n        {\n            \"Id\": 24963,\n            \"Name\": \"Office Staff - Technical Support\"\n        },\n        {\n            \"Id\": 25191,\n            \"Name\": \"Oil and gas drilling, servicing and related labourers\"\n        },\n        {\n            \"Id\": 25012,\n            \"Name\": \"Operator- Machine/Forklift\"\n        },\n        {\n            \"Id\": 25192,\n            \"Name\": \"Operators and attendants in amusement, recreation and sport\"\n        },\n        {\n            \"Id\": 25193,\n            \"Name\": \"Opticians\"\n        },\n        {\n            \"Id\": 25194,\n            \"Name\": \"Optometrists\"\n        },\n        {\n            \"Id\": 25195,\n            \"Name\": \"Outdoor sport and recreational guides\"\n        },\n        {\n            \"Id\": 25196,\n            \"Name\": \"Painters and decorators (except interior decorators)\"\n        },\n        {\n            \"Id\": 25197,\n            \"Name\": \"Painters, sculptors and other visual artists\"\n        },\n        {\n            \"Id\": 25198,\n            \"Name\": \"Papermaking and finishing machine operators\"\n        },\n        {\n            \"Id\": 25199,\n            \"Name\": \"Paralegal and related occupations\"\n        },\n        {\n            \"Id\": 25013,\n            \"Name\": \"Paramedic\"\n        },\n        {\n            \"Id\": 25014,\n            \"Name\": \"Parking Enforcement Officer\"\n        },\n        {\n            \"Id\": 25200,\n            \"Name\": \"Payroll clerks\"\n        },\n        {\n            \"Id\": 25015,\n            \"Name\": \"Pension\"\n        },\n        {\n            \"Id\": 25024,\n            \"Name\": \"Personal Assistant\"\n        },\n        {\n            \"Id\": 25016,\n            \"Name\": \"Personal Trainer\"\n        },\n        {\n            \"Id\": 25201,\n            \"Name\": \"Personnel clerks\"\n        },\n        {\n            \"Id\": 25202,\n            \"Name\": \"Pest controllers and fumigators\"\n        },\n        {\n            \"Id\": 25203,\n            \"Name\": \"Pet groomers and animal care workers\"\n        },\n        {\n            \"Id\": 25204,\n            \"Name\": \"Petroleum engineers\"\n        },\n        {\n            \"Id\": 25205,\n            \"Name\": \"Petroleum, gas and chemical process operators\"\n        },\n        {\n            \"Id\": 25017,\n            \"Name\": \"Pharmacist\"\n        },\n        {\n            \"Id\": 25206,\n            \"Name\": \"Photographers\"\n        },\n        {\n            \"Id\": 25207,\n            \"Name\": \"Photographic and film processors\"\n        },\n        {\n            \"Id\": 25208,\n            \"Name\": \"Physicists and astronomers\"\n        },\n        {\n            \"Id\": 25209,\n            \"Name\": \"Physiotherapists\"\n        },\n        {\n            \"Id\": 24045,\n            \"Name\": \"Pilot\"\n        },\n        {\n            \"Id\": 25210,\n            \"Name\": \"Plasterers, drywall installers and finishers and lathers\"\n        },\n        {\n            \"Id\": 25211,\n            \"Name\": \"Plastic products assemblers, finishers and inspectors\"\n        },\n        {\n            \"Id\": 25212,\n            \"Name\": \"Plastics processing machine operators\"\n        },\n        {\n            \"Id\": 25213,\n            \"Name\": \"Plateless printing equipment operators\"\n        },\n        {\n            \"Id\": 25214,\n            \"Name\": \"Plumbers\"\n        },\n        {\n            \"Id\": 24967,\n            \"Name\": \"Police\"\n        },\n        {\n            \"Id\": 24968,\n            \"Name\": \"Postal Service\"\n        },\n        {\n            \"Id\": 25215,\n            \"Name\": \"Post-secondary teaching and research assistants\"\n        },\n        {\n            \"Id\": 25216,\n            \"Name\": \"Power engineers and power systems operators\"\n        },\n        {\n            \"Id\": 25217,\n            \"Name\": \"Printing press operators\"\n        },\n        {\n            \"Id\": 25019,\n            \"Name\": \"Prison Guard\"\n        },\n        {\n            \"Id\": 25218,\n            \"Name\": \"Probation and parole officers and related occupations\"\n        },\n        {\n            \"Id\": 25219,\n            \"Name\": \"Process control and machine operators, food, beverage and associated products processing\"\n        },\n        {\n            \"Id\": 25220,\n            \"Name\": \"Producers, directors, choreographers and related occupations\"\n        },\n        {\n            \"Id\": 25221,\n            \"Name\": \"Production logistics co-ordinators\"\n        },\n        {\n            \"Id\": 24969,\n            \"Name\": \"Production Worker - Factory\"\n        },\n        {\n            \"Id\": 24970,\n            \"Name\": \"Production Worker - Repairer/Installer\"\n        },\n        {\n            \"Id\": 24971,\n            \"Name\": \"Production Worker - Transport Crew\"\n        },\n        {\n            \"Id\": 923186,\n            \"Name\": \"Professional occupations in religion\"\n        },\n        {\n            \"Id\": 25222,\n            \"Name\": \"Program officers unique to government\"\n        },\n        {\n            \"Id\": 25223,\n            \"Name\": \"Property administrators\"\n        },\n        {\n            \"Id\": 25224,\n            \"Name\": \"Psychologists\"\n        },\n        {\n            \"Id\": 25225,\n            \"Name\": \"Public works and maintenance labourers\"\n        },\n        {\n            \"Id\": 25226,\n            \"Name\": \"Pulp mill machine operators\"\n        },\n        {\n            \"Id\": 25227,\n            \"Name\": \"Pulping, papermaking and coating control operators\"\n        },\n        {\n            \"Id\": 25228,\n            \"Name\": \"Purchasing agents and officers\"\n        },\n        {\n            \"Id\": 25229,\n            \"Name\": \"Pursers and flight attendants\"\n        },\n        {\n            \"Id\": 25230,\n            \"Name\": \"Railway carmen/women\"\n        },\n        {\n            \"Id\": 25231,\n            \"Name\": \"Real estate agents and salespersons\"\n        },\n        {\n            \"Id\": 25232,\n            \"Name\": \"Receptionists\"\n        },\n        {\n            \"Id\": 25233,\n            \"Name\": \"Records management technicians\"\n        },\n        {\n            \"Id\": 25234,\n            \"Name\": \"Refrigeration and air conditioning mechanics\"\n        },\n        {\n            \"Id\": 25235,\n            \"Name\": \"Residential and commercial installers and servicers\"\n        },\n        {\n            \"Id\": 25236,\n            \"Name\": \"Respiratory therapists, clinical perfusionists and cardiopulmonary technologists\"\n        },\n        {\n            \"Id\": 25237,\n            \"Name\": \"Restaurant and food service managers\"\n        },\n        {\n            \"Id\": 24976,\n            \"Name\": \"Retired\"\n        },\n        {\n            \"Id\": 25238,\n            \"Name\": \"Roofers and shinglers\"\n        },\n        {\n            \"Id\": 25239,\n            \"Name\": \"Rubber processing machine operators and related workers\"\n        },\n        {\n            \"Id\": 24977,\n            \"Name\": \"Sales - Computer/Software\"\n        },\n        {\n            \"Id\": 24978,\n            \"Name\": \"Sales - Retail Store Employee\"\n        },\n        {\n            \"Id\": 25240,\n            \"Name\": \"Sales and account representatives - wholesale trade (non-technical)\"\n        },\n        {\n            \"Id\": 25241,\n            \"Name\": \"Sawmill machine operators\"\n        },\n        {\n            \"Id\": 25242,\n            \"Name\": \"School principals and administrators of elementary and secondary education\"\n        },\n        {\n            \"Id\": 25243,\n            \"Name\": \"Securities agents, investment dealers and brokers\"\n        },\n        {\n            \"Id\": 24998,\n            \"Name\": \"Security Guard\"\n        },\n        {\n            \"Id\": 923187,\n            \"Name\": \"Semi-Professional - Financial Services\"\n        },\n        {\n            \"Id\": 923188,\n            \"Name\": \"Semi-Professional - Insurance Employee\"\n        },\n        {\n            \"Id\": 923189,\n            \"Name\": \"Semi-Professional - Investor\"\n        },\n        {\n            \"Id\": 923190,\n            \"Name\": \"Semi-Professional - Science\"\n        },\n        {\n            \"Id\": 923191,\n            \"Name\": \"Semi-Professional - Technician\"\n        },\n        {\n            \"Id\": 25244,\n            \"Name\": \"Senior government managers and officials\"\n        },\n        {\n            \"Id\": 24979,\n            \"Name\": \"Service - Advertising/Marketing\"\n        },\n        {\n            \"Id\": 24980,\n            \"Name\": \"Service - Automotive\"\n        },\n        {\n            \"Id\": 24981,\n            \"Name\": \"Service - Computer\"\n        },\n        {\n            \"Id\": 24982,\n            \"Name\": \"Service - Hospital Employee\"\n        },\n        {\n            \"Id\": 24983,\n            \"Name\": \"Service - Hospitality\"\n        },\n        {\n            \"Id\": 923192,\n            \"Name\": \"Service - Personal\"\n        },\n        {\n            \"Id\": 24984,\n            \"Name\": \"Service - Telecommunications\"\n        },\n        {\n            \"Id\": 25245,\n            \"Name\": \"Service station attendants\"\n        },\n        {\n            \"Id\": 25246,\n            \"Name\": \"Sheet metal workers\"\n        },\n        {\n            \"Id\": 25247,\n            \"Name\": \"Sheriffs and bailiffs\"\n        },\n        {\n            \"Id\": 25248,\n            \"Name\": \"Shippers and receivers\"\n        },\n        {\n            \"Id\": 25020,\n            \"Name\": \"Shipping/Receiving\"\n        },\n        {\n            \"Id\": 25249,\n            \"Name\": \"Shoe repairers and shoemakers\"\n        },\n        {\n            \"Id\": 25250,\n            \"Name\": \"Social and community service workers\"\n        },\n        {\n            \"Id\": 25251,\n            \"Name\": \"Software engineers and designers\"\n        },\n        {\n            \"Id\": 25252,\n            \"Name\": \"Sports officials and referees\"\n        },\n        {\n            \"Id\": 25253,\n            \"Name\": \"Statistical officers and related research support occupations\"\n        },\n        {\n            \"Id\": 25254,\n            \"Name\": \"Steamfitters, pipefitters and sprinkler system installers\"\n        },\n        {\n            \"Id\": 25255,\n            \"Name\": \"Store shelf stockers, clerks and order fillers\"\n        },\n        {\n            \"Id\": 25256,\n            \"Name\": \"Storekeepers and partspersons\"\n        },\n        {\n            \"Id\": 25257,\n            \"Name\": \"Structural metal and platework fabricators and fitters\"\n        },\n        {\n            \"Id\": 24985,\n            \"Name\": \"Student - Articling\"\n        },\n        {\n            \"Id\": 24986,\n            \"Name\": \"Student - College/University\"\n        },\n        {\n            \"Id\": 24987,\n            \"Name\": \"Student - Secondary\"\n        },\n        {\n            \"Id\": 25258,\n            \"Name\": \"Support occupations in accommodation, travel and facilities set-up services\"\n        },\n        {\n            \"Id\": 25259,\n            \"Name\": \"Support occupations in motion pictures, broadcasting, photography and the performing arts\"\n        },\n        {\n            \"Id\": 25260,\n            \"Name\": \"Survey interviewers and statistical clerks\"\n        },\n        {\n            \"Id\": 25261,\n            \"Name\": \"Tailors, dressmakers, furriers and milliners\"\n        },\n        {\n            \"Id\": 24996,\n            \"Name\": \"Taxi Driver\"\n        },\n        {\n            \"Id\": 24975,\n            \"Name\": \"Teacher/Professor\"\n        },\n        {\n            \"Id\": 25262,\n            \"Name\": \"Technical occupations in geomatics and meteorology\"\n        },\n        {\n            \"Id\": 25263,\n            \"Name\": \"Technical occupations related to museums and art galleries\"\n        },\n        {\n            \"Id\": 25264,\n            \"Name\": \"Technical sales specialists - wholesale trade\"\n        },\n        {\n            \"Id\": 25021,\n            \"Name\": \"Teller\"\n        },\n        {\n            \"Id\": 25265,\n            \"Name\": \"Testers and graders, food, beverage and associated products processing\"\n        },\n        {\n            \"Id\": 25266,\n            \"Name\": \"Textile fibre and yarn, hide and pelt processing machine operators and workers\"\n        },\n        {\n            \"Id\": 25267,\n            \"Name\": \"Theatre, fashion, exhibit and other creative designers\"\n        },\n        {\n            \"Id\": 25268,\n            \"Name\": \"Tilesetters\"\n        },\n        {\n            \"Id\": 25269,\n            \"Name\": \"Tool and die makers\"\n        },\n        {\n            \"Id\": 25270,\n            \"Name\": \"Tour and travel guides\"\n        },\n        {\n            \"Id\": 24989,\n            \"Name\": \"Trades - Automotive\"\n        },\n        {\n            \"Id\": 24990,\n            \"Name\": \"Trades - Building and Construction\"\n        },\n        {\n            \"Id\": 24988,\n            \"Name\": \"Trades - Communication\"\n        },\n        {\n            \"Id\": 24991,\n            \"Name\": \"Trades - Electrical\"\n        },\n        {\n            \"Id\": 24992,\n            \"Name\": \"Trades - Furnishing\"\n        },\n        {\n            \"Id\": 923193,\n            \"Name\": \"Trades - Personal Service\"\n        },\n        {\n            \"Id\": 25271,\n            \"Name\": \"Translators, terminologists and interpreters\"\n        },\n        {\n            \"Id\": 25272,\n            \"Name\": \"Transportation route and crew schedulers\"\n        },\n        {\n            \"Id\": 25273,\n            \"Name\": \"Trappers and hunters\"\n        },\n        {\n            \"Id\": 25274,\n            \"Name\": \"Travel counsellors\"\n        },\n        {\n            \"Id\": 25275,\n            \"Name\": \"Underground mine service and support workers\"\n        },\n        {\n            \"Id\": 25276,\n            \"Name\": \"Underground production and development miners\"\n        },\n        {\n            \"Id\": 25277,\n            \"Name\": \"Unemployed/Social Assistance\"\n        },\n        {\n            \"Id\": 24993,\n            \"Name\": \"Unemployment/Assistance\"\n        },\n        {\n            \"Id\": 25278,\n            \"Name\": \"University professors and lecturers\"\n        },\n        {\n            \"Id\": 25279,\n            \"Name\": \"Upholsterers\"\n        },\n        {\n            \"Id\": 25280,\n            \"Name\": \"Urban and land use planners\"\n        },\n        {\n            \"Id\": 25281,\n            \"Name\": \"User support technicians\"\n        },\n        {\n            \"Id\": 25282,\n            \"Name\": \"Utilities managers\"\n        },\n        {\n            \"Id\": 25022,\n            \"Name\": \"Veterinarian\"\n        },\n        {\n            \"Id\": 24994,\n            \"Name\": \"Volunteer\"\n        },\n        {\n            \"Id\": 24995,\n            \"Name\": \"Waitress\"\n        },\n        {\n            \"Id\": 25001,\n            \"Name\": \"Warehouse\"\n        },\n        {\n            \"Id\": 25283,\n            \"Name\": \"Water and waste treatment plant operators\"\n        },\n        {\n            \"Id\": 25284,\n            \"Name\": \"Waterworks and gas maintenance workers\"\n        },\n        {\n            \"Id\": 25285,\n            \"Name\": \"Weavers, knitters and other fabric making occupations\"\n        },\n        {\n            \"Id\": 25286,\n            \"Name\": \"Web designers and developers\"\n        },\n        {\n            \"Id\": 25287,\n            \"Name\": \"Welders and related machine operators\"\n        },\n        {\n            \"Id\": 25288,\n            \"Name\": \"Woodworking machine operators\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"3a769742-9e77-477f-ad5c-3457f262a0e3"}],"id":"fb459b13-2d2e-4a02-84c0-28d489755195","_postman_id":"fb459b13-2d2e-4a02-84c0-28d489755195","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Tax Questionnaire","item":[{"name":"Get Reason List","id":"047d0f20-00a4-464c-9bd7-fa9461e2f9ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetTaxJurisdictionQuestionnaireReasonList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Reason List API is designed to retrieve a standardized list of reasons related to a Tax Identification Number (TIN) exemption.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The ID of the reason.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the reason.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the reason.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetTaxJurisdictionQuestionnaireReasonList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5f632328-f2e6-4d3e-8ea8-eac0042cce6e","name":"Get Reason List","originalRequest":{"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetTaxJurisdictionQuestionnaireReasonList"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 07 Nov 2025 18:27:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 923314,\n            \"Name\": \"ReasonOne\",\n            \"Description\": \"Reason 1: The cardholder will apply or has applied for a TIN but has not yet received it.\"\n        },\n        {\n            \"Id\": 923315,\n            \"Name\": \"ReasonTwo\",\n            \"Description\": \"Reason 2: The cardholder’s jurisdiction of tax residence does not issue TINs to its residents.\"\n        },\n        {\n            \"Id\": 923316,\n            \"Name\": \"OtherReason\",\n            \"Description\": \"Reason 3: Other reason, please specify..\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"047d0f20-00a4-464c-9bd7-fa9461e2f9ab"}],"id":"24a8e5c7-5cee-4116-86ac-3a2034eeedb8","_postman_id":"24a8e5c7-5cee-4116-86ac-3a2034eeedb8","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"CreditAgency","item":[{"name":"Get Credit Agency List","id":"c4973f20-decb-4958-a210-c69c291a4cff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCreditAgencyList","description":"<h4 id=\"description\">Description</h4>\n<p>The Get Credit Agency API is a parameter retrieval service that returns a standardized list of major Credit Reporting Agencies (CRAs).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The unique identifier for the credit agency.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The name of the credit agency.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-codes\">Error Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","Parameter","GetCreditAgencyList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"465a651c-d8ae-47f0-a337-8c64a1edabd5","name":"Get Credit Agency List","originalRequest":{"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetCreditAgencyList"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 07 Nov 2025 18:27:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 108652,\n            \"Name\": \"Equifax\"\n        },\n        {\n            \"Id\": 108651,\n            \"Name\": \"Trans Union\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"c4973f20-decb-4958-a210-c69c291a4cff"}],"id":"438af4b5-0ae0-47fe-b6ea-ce7d8e61466c","_postman_id":"438af4b5-0ae0-47fe-b6ea-ce7d8e61466c","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Intended Use","item":[{"name":"Get Intended Use List","id":"c1e2cb34-5f86-4afb-987c-f74e79568dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIntendedUseList","description":"<h3 id=\"description\">Description</h3>\n<p>Returns the complete list of intended use categories that define how a customer plans to use an account.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The identifier for the intended use.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>The intended use name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>November 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetIntendedUseList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"486407e3-feb5-4461-9ebd-6f9c3e10471f","name":"Get Intended Use List","originalRequest":{"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIntendedUseList"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 07 Nov 2025 18:28:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"Id\": 922593,\n            \"Name\": \"BILL (Bill Payment)\"\n        },\n        {\n            \"Id\": 922594,\n            \"Name\": \"PAYROLL (Payroll/Living Expenses)\"\n        },\n        {\n            \"Id\": 922595,\n            \"Name\": \"SAVEINV (Savings/Investments)\"\n        },\n        {\n            \"Id\": 922596,\n            \"Name\": \"EDU (School Tuition)\"\n        },\n        {\n            \"Id\": 922597,\n            \"Name\": \"VACTRVL (Vacation/Travel)\"\n        },\n        {\n            \"Id\": 922600,\n            \"Name\": \"GIFT (Gift)\"\n        },\n        {\n            \"Id\": 923166,\n            \"Name\": \"TAX (Tax refund / chequing account)\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"c1e2cb34-5f86-4afb-987c-f74e79568dd2"}],"id":"5a2c75ec-90ac-42ad-a110-12eb314f927b","_postman_id":"5a2c75ec-90ac-42ad-a110-12eb314f927b","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"10f19355-d60a-4695-8cc0-f04280b18a03","_postman_id":"10f19355-d60a-4695-8cc0-f04280b18a03","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"File Upload","item":[{"name":"Wallet Program","item":[],"id":"719e2b74-9aef-43b2-8134-15c3cfe243d5","event":[{"listen":"prerequest","script":{"id":"d6b3b937-8487-42f6-aff6-0d564340d369","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"54748180-89c6-40b0-a595-99bf2c636837","type":"text/javascript","exec":[""]}}],"_postman_id":"719e2b74-9aef-43b2-8134-15c3cfe243d5","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Bill Program ","item":[],"id":"f2e7e3eb-6ef9-437a-9fd3-70ab07826f61","_postman_id":"f2e7e3eb-6ef9-437a-9fd3-70ab07826f61","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"EFT Program ","item":[{"name":"InsertRefundTransaction","id":"807a3659-1345-4e4c-a8f6-ef833d923748","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"807a3659-1345-4e4c-a8f6-ef833d923748"}],"id":"da014904-85de-4158-b6ca-872b88084c8c","_postman_id":"da014904-85de-4158-b6ca-872b88084c8c","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"e-Transfer Program","item":[],"id":"76f61c57-8f17-4642-8d91-02d31f2a9463","_postman_id":"76f61c57-8f17-4642-8d91-02d31f2a9463","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Migration Client APIs","item":[{"name":"Atm Locator","id":"6367b622-ed16-4174-af4d-2a2d4b5c1454","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"Latitude\": \"12.4563\",\r\n    \"Longitude\": \"-40.24258\",\r\n    \"MaxDistance\": \"\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/AtmLocator","description":"<h3 id=\"description\">Description</h3>\n<p>The ATM Locator ATM API is a service that allows clients to locate the closest DCPayments ATMs in a given location.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments for use by clients, to be used instead of UserSession to identify requesting party.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Latitude</td>\n<td><em>Decimal</em> (11,7)</td>\n<td>-</td>\n<td>Latitude of search coordinates.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Longitude</td>\n<td><em>Decimal</em> (11,7)</td>\n<td>-</td>\n<td>Longitude of search coordinates.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MaxDistance</td>\n<td><em>Decimal</em> (11,7)</td>\n<td>-</td>\n<td>Optional maximum number of kilometers distance to search (default 100).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>-</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ATMList</td>\n<td></td>\n<td>List of closest ATMs to location.</td>\n</tr>\n<tr>\n<td>MerchantName</td>\n<td><em>String</em> (50)</td>\n<td>Name of merchant location.</td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em> (50)</td>\n<td>Address where ATM is located.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em> (50)</td>\n<td>City where ATM is located.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em> (2)</td>\n<td>Province where ATM is located.</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em> (6)</td>\n<td>PostalCode of ATM location.</td>\n</tr>\n<tr>\n<td>Latitude</td>\n<td><em>Decimal</em> (11,7)</td>\n<td>Latitude of ATM location.</td>\n</tr>\n<tr>\n<td>Longitude</td>\n<td><em>Decimal</em> (11,7)</td>\n<td>Longitude of ATM location.</td>\n</tr>\n<tr>\n<td>TotalDistance</td>\n<td><em>Decimal</em> (11,7)</td>\n<td>Total distance (km) between input coordinates and ATM location.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Latitude</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Longitude</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","AtmLocator"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c7d32534-2575-4bf6-9bc9-711b05ad9625","name":"Atm Locator","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"Latitude\": \"12.4563\",\r\n    \"Longitude\": \"-40.24258\",\r\n    \"MaxDistance\": \"\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/AtmLocator"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"atmList\": [\r\n      {\r\n        \"merchantName\": \"string\",\r\n        \"address\": \"string\",\r\n        \"city\": \"string\",\r\n        \"province\": \"string\",\r\n        \"postalCode\": \"string\",\r\n        \"latitude\": 0,\r\n        \"longitude\": 0,\r\n        \"totalDistance\": 0\r\n      }\r\n    ]\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"6367b622-ed16-4174-af4d-2a2d4b5c1454"},{"name":"Cancel EFT","id":"401d03ac-c447-4da2-b6c0-01166fb7082a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"100000000125553178\",\r\n    \"Amount\": \"3.90\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CancelEFT","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel EFT API is service used to cancel an EFT previously created using the CreateEFT function.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Comments</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Unique identifier returned by CreateEFT.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Must match amount of original request.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>-</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>-3</td>\n<td>EFT Transaction Not Found.</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: ReferenceNumber.</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Amount</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CancelEFT"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e448b63a-8e47-4070-85e3-3cfeff9dbd11","name":"Cancel EFT","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"100000000125553178\",\r\n    \"Amount\": \"3.90\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CancelEFT"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {},\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"401d03ac-c447-4da2-b6c0-01166fb7082a"},{"name":"Cancel Money Request","id":"b95332b5-5f86-44a0-ae92-66a1471f3f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\",\r\n    \"CancelMemo\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CancelMoneyRequest","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Money Request API is service used to cancel an EFT previously created using the CreateEFT function.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Unique identifier returned by Create EFT.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CancelMemo</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Description for the cancellation.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>3</td>\n<td>Invalid Reference Number Provided.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Request Not Found Or Already Deleted.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CancelMoneyRequest"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bfe9899e-d740-446c-8a5a-4316f56e18bd","name":"Cancel Money Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\",\r\n    \"CancelMemo\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CancelMoneyRequest"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"cancelReferenceNumber\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"b95332b5-5f86-44a0-ae92-66a1471f3f4b"},{"name":"Cancel Transfer","id":"b756f689-b8ff-4fce-8c07-910efe3260db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\",\r\n    \"CancelMemo\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CancelTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>The Cancel Transfer API is service used to cancel an EFT previously created using the CreateEFT function.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Unique identifier returned by CreateEFT.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CancelMemo</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Description for the cancellation.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>3</td>\n<td>Invalid Reference Number Provided.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CancelTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2faceffe-7901-4a2c-a199-cba560c0a2be","name":"Cancel Transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\",\r\n    \"CancelMemo\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CancelTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"cancelReferenceNumber\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"b756f689-b8ff-4fce-8c07-910efe3260db"},{"name":"Create EFT","id":"3866aae1-9808-4b7a-b904-f40d65d60c23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ExternalBankAccount\": \"string\",\r\n    \"EftType\": \"string\",\r\n    \"Amount\": \"string\",\r\n    \"PostingDate\": \"string\",\r\n    \"CustomerName\": \"string\",\r\n    \"TransferMemo\": \"string\",\r\n    \"UserLoggingData\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateEFT","description":"<h3 id=\"description\">Description</h3>\n<p>The Create EFT API is service used to create a new EFT credit or debit (a.k.a Pre-Authorized Debit). If the transit/institution values provided in ExternalBankAccount do not match a valid institution as published by CPA the request will be refused, however no other validations will be enforced on the account number (meaning users are encouraged to use the PrecheckExternalBankAccount service to validate new bank accounts prior to their first use, to minimize rejected transfers).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccount</td>\n<td><em>String</em> (21-25)</td>\n<td>25</td>\n<td>Value in <em>TTTTT-IIII-AAAAAAAA format.</em>  <br />- Exactly 5 <em>Transit</em> digits followed by exactly 4 <em>Institution</em> digits, followed by 7-14 digit <em>account number.</em></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EFTType</td>\n<td><em>String</em> (1)</td>\n<td>1</td>\n<td>The type of EFT:  <br /><code>C</code> (credit) or  <br /><code>D</code> (debit).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PostingDate</td>\n<td><em>Numeric</em> (8)</td>\n<td>8</td>\n<td>YYYYMMDD effective date for transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em> (1-50)</td>\n<td>50</td>\n<td>Name of individual owning External Bank Account.  <br />- Alphabetic, spaces, hyphens and apostrophe characters only.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferMemo</td>\n<td><em>String</em> (1-64)</td>\n<td>64</td>\n<td>Optional message to be sent with transfer.  <br />- Alphanumeric, spaces and the following characters only: .!@/;:,'=$?*()</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserLoggingData</td>\n<td><em>Numeric</em> (1-8)</td>\n<td>8</td>\n<td>User-defined value stored in database for use in reporting (optional).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>-1</td>\n<td>Invalid Request Body</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: External Bank Account</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: EFT Type</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Amount</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Posting Date</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: User Logging Data</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CreateEFT"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e5c22b63-2bf2-4900-b279-5f49764f45f4","name":"Create EFT","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ExternalBankAccount\": \"string\",\r\n    \"EftType\": \"string\",\r\n    \"Amount\": \"string\",\r\n    \"PostingDate\": \"string\",\r\n    \"CustomerName\": \"string\",\r\n    \"TransferMemo\": \"string\",\r\n    \"UserLoggingData\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateEFT"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"referenceNumber\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"3866aae1-9808-4b7a-b904-f40d65d60c23"},{"name":"Create Money Request","id":"b8b08bd7-9a55-4492-bb68-e9e37b3a9155","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\",\r\n    \"ReceiverName\": \"string\",\r\n    \"TransferAmount\": 0,\r\n    \"TransferMemo\": \"string\",\r\n    \"EncryptedPIN\": \"string\",\r\n    \"PublicKeyGUID\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\",\r\n    \"DeliveryType\": 0\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateMoneyRequest","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Money Request is a service used to create a new EFT credit or debit (a.k.a Pre-Authorized Debit). If the transit/institution values provided in ExternalBankAccount do not match a valid institution as published by CPA the request will be refused, however no other validations will be enforced on the account number (meaning users are encouraged to use the PrecheckExternalBankAccount service to validate new bank accounts prior to their first use, to minimize rejected transfers).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td>GUID</td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccount</td>\n<td><em>String</em> (21-25)</td>\n<td>25</td>\n<td>Value in <em>TTTTT-IIII-AAAAAAAA format.</em>  <br />- Exactly 5 <em>Transit</em> digits followed by exactly 4 <em>Institution</em> digits, followed by 7-14 digit <em>account number.</em></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EFTType</td>\n<td><em>String</em> (1)</td>\n<td>1</td>\n<td>The EFT type:  <br /><code>C</code> (credit) or  <br /><code>D</code> (debit)</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PostingDate</td>\n<td><em>Numeric</em> (8)</td>\n<td>8</td>\n<td>YYYYMMDD effective date for transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em> (1-50)</td>\n<td>50</td>\n<td>Name of individual owning External Bank Account.  <br />- Alphabetical, spaces, hyphen and apostrophe characters only.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferMemo</td>\n<td><em>String</em> (1-64)</td>\n<td>64</td>\n<td>Optional message to be sent with transfer.  <br />- Alphanumeric, spaces and the following characters only: .!@/;:,'=$?*()</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserLoggingData</td>\n<td><em>Numeric</em> (1-8)</td>\n<td>8</td>\n<td>User-defined value stored in database for use in reporting.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceNumber</td>\n<td><em>String</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>expiryDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the transaction.</td>\n</tr>\n<tr>\n<td>externalReference</td>\n<td><em>String</em></td>\n<td>Any external reference number(s) linking to the same transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>-1</td>\n<td>Invalid Request Body</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Receiver Address</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Receiver Alias Name</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Receiver First Name</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Receiver Last Name</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Request Amount</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CreateMoneyRequest"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a2b5d589-2d17-4adb-8ba9-8d87b4e208b5","name":"Create Money Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\",\r\n    \"ReceiverName\": \"string\",\r\n    \"TransferAmount\": 0,\r\n    \"TransferMemo\": \"string\",\r\n    \"EncryptedPIN\": \"string\",\r\n    \"PublicKeyGUID\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\",\r\n    \"DeliveryType\": 0\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateMoneyRequest"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"responseData\": {\n        \"referenceNumber\": \"string\",\n        \"expiryDate\": \"2020-10-07T23:11:16.565Z\",\n        \"externalReference\": \"string\"\n    },\n    \"response\": {\n        \"isSucceeded\": true,\n        \"errorList\": [\n            {\n                \"errorCode\": \"string\",\n                \"errorDescription\": \"string\",\n                \"parameterList\": [\n                    \"string\"\n                ]\n            }\n        ],\n        \"parameterList\": [\n            \"string\"\n        ]\n    },\n    \"responseCode\": 0,\n    \"responseMessage\": \"string\",\n    \"serverTimeStamp\": \"string\",\n    \"apiVersion\": \"string\",\n    \"userReference\": \"string\"\n}"}],"_postman_id":"b8b08bd7-9a55-4492-bb68-e9e37b3a9155"},{"name":"Create Transfer","id":"5ac96f32-02b4-4fa5-baf6-e834ab5d2e0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\",\r\n    \"ReceiverName\": \"string\",\r\n    \"TransferAmount\": 0,\r\n    \"TransferMemo\": \"string\",\r\n    \"SecurityQuestion\": \"string\",\r\n    \"SecurityAnswer\": \"string\",\r\n    \"EncryptedPIN\": \"string\",\r\n    \"PublicKeyGUID\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\",\r\n    \"DeliveryType\": 0,\r\n    \"UserUniqueData\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateTransfer","description":"<p>This service is used to create a new EFT credit or debit (a.k.a Pre-Authorized Debit). If the transit/institution values provided in ExternalBankAccount do not match a valid institution as published by CPA the request will be refused, however no other validations will be enforced on the account number (meaning users are encouraged to use the PrecheckExternalBankAccount service to validate new bank accounts prior to their first use, to minimize rejected transfers).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccount</td>\n<td><em>String</em> (21-25)</td>\n<td>25</td>\n<td>Value in <em>TTTTT-IIII-AAAAAAAA format.</em>  <br />- Exactly 5 <em>Transit</em> digits followed by exactly 4 <em>Institution</em> digits, followed by 7-14 digit <em>account number.</em></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EFTType</td>\n<td><em>String</em> (1)</td>\n<td>1</td>\n<td>The EFT type:  <br /><code>C</code> (credit) or  <br /><code>D</code> (debit).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PostingDate</td>\n<td><em>Numeric</em> (8)</td>\n<td>8</td>\n<td>YYYYMMDD effective date for transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em> (1-50)</td>\n<td>50</td>\n<td>Name of the individual owning the External Bank Account.  <br />- Alphabetical, spaces, hyphen and apostrophe characters only.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferMemo</td>\n<td><em>String</em> (1-64)</td>\n<td>64</td>\n<td>Optional message to be sent with transfer. - Alphanumeric, spaces and the following characters only: .!@/;:,'=$?*()</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserLoggingData</td>\n<td><em>Numeric</em> (1-8)</td>\n<td>8</td>\n<td>User-defined value stored in database for use in reporting.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceNumber</td>\n<td><em>String</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>expiryDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the transaction.</td>\n</tr>\n<tr>\n<td>externalReference</td>\n<td><em>String</em></td>\n<td>Any external reference number(s) linking to the same transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>-1</td>\n<td>Invalid Request Body</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Receiver Address</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CreateTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b9cd6c3a-e261-423f-b0d8-62c7382bb70e","name":"Create Transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\",\r\n    \"ReceiverName\": \"string\",\r\n    \"TransferAmount\": 0,\r\n    \"TransferMemo\": \"string\",\r\n    \"SecurityQuestion\": \"string\",\r\n    \"SecurityAnswer\": \"string\",\r\n    \"EncryptedPIN\": \"string\",\r\n    \"PublicKeyGUID\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\",\r\n    \"DeliveryType\": 0,\r\n    \"UserUniqueData\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"referenceNumber\": \"string\",\r\n    \"expiryDate\": \"string\",\r\n    \"externalReference\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"5ac96f32-02b4-4fa5-baf6-e834ab5d2e0b"},{"name":"Create Transfer Ex","id":"c5bffc89-5b04-487c-ac51-e6e71dd915ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\",\r\n    \"ReceiverAliasName\": \"string\",\r\n    \"ReceiverType\": 0,\r\n    \"ReceiverFirstName\": \"string\",\r\n    \"ReceiverMiddleName\": \"string\",\r\n    \"ReceiverLastName\": \"string\",\r\n    \"ReceiverCompanyName\": \"string\",\r\n    \"ReceiverTradeName\": \"string\",\r\n    \"TransferAmount\": 0,\r\n    \"TransferMemo\": \"string\",\r\n    \"SecurityQuestion\": \"string\",\r\n    \"SecurityAnswer\": \"string\",\r\n    \"EncryptedPIN\": \"string\",\r\n    \"PublicKeyGUID\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\",\r\n    \"DeliveryType\": 0\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateTransferEx","description":"<p>This service is used to create a new EFT credit or debit (a.k.a Pre-Authorized Debit). If the transit/institution values provided in ExternalBankAccount do not match a valid institution as published by CPA the request will be refused, however no other validations will be enforced on the account number (meaning users are encouraged to use the PrecheckExternalBankAccount service to validate new bank accounts prior to their first use, to minimize rejected transfers).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccount</td>\n<td><em>String</em> (21-25)</td>\n<td>25</td>\n<td>Value in <em>TTTTT-IIII-AAAAAAAA format.</em>  <br />- Exactly 5 <em>Transit</em> digits followed by exactly 4 <em>Institution</em> digits, followed by 7-14 digit <em>account number.</em></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EFTType</td>\n<td><em>String</em> (1)</td>\n<td>1</td>\n<td>EFT Type:  <br /><code>C</code> (credit) or  <br /><code>D</code> (debit).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PostingDate</td>\n<td><em>Numeric</em> (8)</td>\n<td>8</td>\n<td>YYYYMMDD effective date for transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em> (1-50)</td>\n<td>50</td>\n<td>Name of the individual owning the External Bank Account.  <br />- Alphabetical, spaces, hyphen and apostrophe characters only.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferMemo</td>\n<td><em>String</em> (1-64)</td>\n<td>64</td>\n<td>Optional message to be sent with transfer. - Alphanumeric, spaces and the following characters only: .!@/;:,'=$?*()</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserLoggingData</td>\n<td><em>Numeric</em> (1-8)</td>\n<td>8</td>\n<td>User-defined value stored in database for use in reporting.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceNumber</td>\n<td><em>String</em></td>\n<td>The transactions reference number.</td>\n</tr>\n<tr>\n<td>expiryDate</td>\n<td><em>DateTime</em></td>\n<td>The expiry date of the transaction.</td>\n</tr>\n<tr>\n<td>externalReference</td>\n<td><em>String</em></td>\n<td>Any external reference number(s) linking to the same transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>-1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Receiver Address</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Transfer Amount</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","CreateTransferEx"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f210232e-5ee3-4983-8fb5-efcf734fd856","name":"Create Transfer Ex","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"TequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\",\r\n    \"ReceiverAliasName\": \"string\",\r\n    \"ReceiverType\": 0,\r\n    \"ReceiverFirstName\": \"string\",\r\n    \"ReceiverMiddleName\": \"string\",\r\n    \"ReceiverLastName\": \"string\",\r\n    \"ReceiverCompanyName\": \"string\",\r\n    \"ReceiverTradeName\": \"string\",\r\n    \"TransferAmount\": 0,\r\n    \"TransferMemo\": \"string\",\r\n    \"SecurityQuestion\": \"string\",\r\n    \"SecurityAnswer\": \"string\",\r\n    \"EncryptedPIN\": \"string\",\r\n    \"PublicKeyGUID\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\",\r\n    \"DeliveryType\": 0\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/CreateTransferEx"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"referenceNumber\": \"string\",\r\n    \"expiryDate\": \"string\",\r\n    \"externalReference\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"c5bffc89-5b04-487c-ac51-e6e71dd915ef"},{"name":"Get Auto Deposit Options","id":"1554962e-e4f7-4410-91a7-df910051848c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"CellNumber\": \"string\",\r\n    \"EmailAddress\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetAutoDepositOptions","description":"<p>This service is used to create a new EFT credit or debit (a.k.a Pre-Authorized Debit). If the transit/institution values provided in ExternalBankAccount do not match a valid institution as published by CPA the request will be refused, however no other validations will be enforced on the account number (meaning users are encouraged to use the PrecheckExternalBankAccount service to validate new bank accounts prior to their first use, to minimize rejected transfers).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccount</td>\n<td><em>String</em> (21-25)</td>\n<td>25</td>\n<td>Value in <em>TTTTT-IIII-AAAAAAAA format.</em>  <br />- Exactly 5 <em>Transit</em> digits followed by exactly 4 <em>Institution</em> digits, followed by 7-14 digit <em>account number.</em></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EFTType</td>\n<td><em>String</em> (1)</td>\n<td>1</td>\n<td>EFT Type:  <br /><code>C</code> (credit) or  <br /><code>D</code> (debit).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PostingDate</td>\n<td><em>Numeric</em> (8)</td>\n<td>8</td>\n<td>YYYYMMDD effective date for transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em> (1-50)</td>\n<td>50</td>\n<td>Name of the individual owning the External Bank Account.  <br />- Alphabetical, spaces, hyphen and apostrophe characters only.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferMemo</td>\n<td><em>String</em> (1-64)</td>\n<td>64</td>\n<td>Optional message to be sent with transfer. - Alphanumeric, spaces and the following characters only: .!@/;:,'=$?*()</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserLoggingData</td>\n<td><em>Numeric</em> (1-8)</td>\n<td>8</td>\n<td>User-defined value stored in database for use in reporting.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>isAutoDeposit</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the account it set up for auto-deposit or not.</td>\n</tr>\n<tr>\n<td>autoDepositReferenceNumber</td>\n<td><em>String</em></td>\n<td>The reference number of the auto-deposit.</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td><em>String</em></td>\n<td>The display name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>3</td>\n<td>Invalid Or Cannot Find Auto Deposit Options.</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Email Address</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Cell Number</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","GetAutoDepositOptions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e00578ad-1363-453f-b3f6-5ca519681a6c","name":"Get Auto Deposit Options","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"CellNumber\": \"string\",\r\n    \"EmailAddress\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetAutoDepositOptions"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"responseData\": {\n        \"isAutoDeposit\": true,\n        \"autoDepositReferenceNumber\": \"string\",\n        \"displayName\": \"string\"\n    },\n    \"response\": {\n        \"isSucceeded\": true,\n        \"errorList\": [\n            {\n                \"errorCode\": \"string\",\n                \"errorDescription\": \"string\",\n                \"parameterList\": [\n                    \"string\"\n                ]\n            }\n        ],\n        \"parameterList\": [\n            \"string\"\n        ]\n    },\n    \"responseCode\": 0,\n    \"responseMessage\": \"string\",\n    \"serverTimeStamp\": \"string\",\n    \"apiVersion\": \"string\",\n    \"userReference\": \"string\"\n}"}],"_postman_id":"1554962e-e4f7-4410-91a7-df910051848c"},{"name":"Get EFT Details","id":"8269cd05-f161-4d76-8d5d-6b660fbb9d4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetEFTDetails","description":"<h3 id=\"description\">Description</h3>\n<p>This service is used to retrieve the details and current status of an EFT previously created using the CreateEFT function.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Unique identifier returned by CreateEFT.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>externalBankAccount</td>\n<td><em>String</em></td>\n<td>The external bank account owner name.</td>\n</tr>\n<tr>\n<td>eftType</td>\n<td><em>String</em></td>\n<td>The type of EFT. A credit or a debit.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>postingDate</td>\n<td><em>DateTime</em></td>\n<td>The date of the transaction.</td>\n</tr>\n<tr>\n<td>transferStatus</td>\n<td><em>String</em></td>\n<td>The status of the transaction.</td>\n</tr>\n<tr>\n<td>returnCode</td>\n<td><em>String</em></td>\n<td>The return code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2</td>\n<td>EFT Transaction Not Found</td>\n</tr>\n<tr>\n<td>-29</td>\n<td>Invalid Inputs: Reference Number</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","GetEFTDetails"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5a6f1ffa-dee0-4616-8307-de61617c6494","name":"Get EFT Details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetEFTDetails"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"externalBankAccount\": \"string\",\r\n    \"eftType\": \"string\",\r\n    \"amount\": 0,\r\n    \"postingDate\": \"string\",\r\n    \"transferStatus\": \"string\",\r\n    \"returnCode\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"8269cd05-f161-4d76-8d5d-6b660fbb9d4e"},{"name":"Get Money Request Details","id":"b76a3fe0-ec73-4b96-a0e7-44e8e6f181a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetMoneyRequestDetails","description":"<h3 id=\"description\">Description</h3>\n<p>This service is used to retrieve the details and current status of an Money Request previously created using the CreateMoneyRequest function.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Unique identifier returned by <strong>Create Money Request</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transferSettleDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction was settled.</td>\n</tr>\n<tr>\n<td>transferType</td>\n<td><em>Numeric</em></td>\n<td>The type of transfer.</td>\n</tr>\n<tr>\n<td>transferAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of transfer.</td>\n</tr>\n<tr>\n<td>receiverPartyType</td>\n<td><em>Numeric</em></td>\n<td>The receiver type.</td>\n</tr>\n<tr>\n<td>receiverAddress</td>\n<td><em>String</em></td>\n<td>The receiver address.</td>\n</tr>\n<tr>\n<td>transferStatus</td>\n<td><em>String</em></td>\n<td>The status of the transfer.</td>\n</tr>\n<tr>\n<td>transferCompleted</td>\n<td><em>String</em></td>\n<td>Transfer completed.</td>\n</tr>\n<tr>\n<td>transferCancel</td>\n<td><em>Numeric</em></td>\n<td>Transfer cancel.</td>\n</tr>\n<tr>\n<td>transferReminder</td>\n<td><em>Numeric</em></td>\n<td>Transfer reminder.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>3</td>\n<td>Invalid Reference Number Provided.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Request Cannot Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","GetMoneyRequestDetails"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d8603710-c32e-4848-b40c-9ca389b454a1","name":"Get Money Request Details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetMoneyRequestDetails"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"responseData\": {\n        \"transferSettleDate\": \"string\",\n        \"transferType\": 0,\n        \"transferAmount\": 0,\n        \"receiverPartyType\": 0,\n        \"receiverAddress\": \"string\",\n        \"transferStatus\": \"string\",\n        \"transferCompleted\": \"string\",\n        \"transferCancel\": 0,\n        \"transferReminder\": 0\n    },\n    \"response\": {\n        \"isSucceeded\": true,\n        \"errorList\": [\n            {\n                \"errorCode\": \"string\",\n                \"errorDescription\": \"string\",\n                \"parameterList\": [\n                    \"string\"\n                ]\n            }\n        ],\n        \"parameterList\": [\n            \"string\"\n        ]\n    },\n    \"responseCode\": 0,\n    \"responseMessage\": \"string\",\n    \"serverTimeStamp\": \"string\",\n    \"apiVersion\": \"string\",\n    \"userReference\": \"string\"\n}"}],"_postman_id":"b76a3fe0-ec73-4b96-a0e7-44e8e6f181a8"},{"name":"Get Transfer Details","id":"62789606-af9a-4092-8b1a-e8a2818bdef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetTransferDetails","description":"<h3 id=\"description\">Description</h3>\n<p>This service is used to retrieve the details and current status of an transfer previously created using the CreateTransfer function.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>-</td>\n<td>Unique identifier returned by CreateTransfer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transferSettleDate</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction was settled.</td>\n</tr>\n<tr>\n<td>transferType</td>\n<td><em>Numeric</em></td>\n<td>The type of transfer.</td>\n</tr>\n<tr>\n<td>transferAmount</td>\n<td><em>Decimal</em></td>\n<td>The amount of transfer.</td>\n</tr>\n<tr>\n<td>receiverPartyType</td>\n<td><em>Numeric</em></td>\n<td>The receiver type.</td>\n</tr>\n<tr>\n<td>receiverAddress</td>\n<td><em>String</em></td>\n<td>The receiver address.</td>\n</tr>\n<tr>\n<td>transferStatus</td>\n<td><em>String</em></td>\n<td>The status of the transfer.</td>\n</tr>\n<tr>\n<td>transferCompleted</td>\n<td><em>String</em></td>\n<td>Transfer completed.</td>\n</tr>\n<tr>\n<td>transferCancel</td>\n<td><em>Numeric</em></td>\n<td>Transfer cancel.</td>\n</tr>\n<tr>\n<td>transferReminder</td>\n<td><em>Numeric</em></td>\n<td>Transfer reminder.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","GetTransferDetails"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d3466b59-9683-45bf-83a1-49895adf0000","name":"Get Transfer Details","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetTransferDetails"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"transferSettleDate\": \"string\",\r\n    \"transferType\": 0,\r\n    \"transferAmount\": 0,\r\n    \"receiverPartyType\": 0,\r\n    \"receiverAddress\": \"string\",\r\n    \"transferStatus\": \"string\",\r\n    \"transferCompleted\": \"string\",\r\n    \"transferCancel\": 0,\r\n    \"transferReminder\": 0\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"62789606-af9a-4092-8b1a-e8a2818bdef7"},{"name":"Get Transfer Options","id":"53f716e7-ecc4-48e7-972f-dd735829fe99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"AutoSelectTransferType\": 0\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetTransferOptions","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","GetTransferOptions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"53b64d44-a136-43cb-969e-9214c00a5843","name":"Get Transfer Options","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"AutoSelectTransferType\": 0\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetTransferOptions"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"transferTypeList\": [\r\n      {\r\n        \"transferTypeID\": 0,\r\n        \"transferTypeDesc\": \"string\",\r\n        \"transferTypeLongDesc\": \"string\"\r\n      }\r\n    ],\r\n    \"transferDeliveryTypeList\": [\r\n      {\r\n        \"transferType\": 0,\r\n        \"deliveryType\": 0,\r\n        \"deliveryTypeDesc\": \"string\"\r\n      }\r\n    ],\r\n    \"transferDeliveryPartyTypeList\": [\r\n      {\r\n        \"transferType\": 0,\r\n        \"deliveryType\": 0,\r\n        \"partyType\": 0,\r\n        \"partyTypeDesc\": \"string\",\r\n        \"partyTypeValidation\": \"string\"\r\n      }\r\n    ],\r\n    \"transferDeliveryBranchList\": [\r\n      {\r\n        \"branchID\": 0,\r\n        \"branchDesc\": \"string\",\r\n        \"transferType\": 0,\r\n        \"deliveryType\": 0,\r\n        \"sendLimit\": 0,\r\n        \"transfersSent\": 0\r\n      }\r\n    ],\r\n    \"autoSelectBranchID\": 0\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"53f716e7-ecc4-48e7-972f-dd735829fe99"},{"name":"Get Transfer Receiver","id":"c86d632f-357c-4efa-8707-cffe5acd3fec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"DeliveryType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetTransferReceiver","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Transfer Receiver is a verification and lookup service designed to retrieve the receiver name associated with a given transfer destination address.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BranchId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The ID of the branch.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferType</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The type of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DeliveryType</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The delivery type.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReceiverPartyType</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The type code of the receiver.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReceiverAddress</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The receivers address.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReceiverName</td>\n<td><em>String</em></td>\n<td>The name of the person receiving the transfer.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","GetTransferReceiver"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d8475950-535f-4f42-9927-da1a2536f118","name":"Get Transfer Receiver","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"BranchID\": 0,\r\n    \"TransferType\": 0,\r\n    \"DeliveryType\": 0,\r\n    \"ReceiverPartyType\": 0,\r\n    \"ReceiverAddress\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/GetTransferReceiver"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"receiverName\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"c86d632f-357c-4efa-8707-cffe5acd3fec"},{"name":"Ping","id":"5d9b3193-b93e-4e9d-96b6-24e79be55763","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {},\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/Ping","description":"<h3 id=\"description\">Description</h3>\n<p>The Ping SPI is a health check or diagnostic server used to verify the availability and operational status of the API service.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","Ping"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"80c2e42d-3b38-42e7-a9fb-760c53c633ff","name":"Ping","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {},\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/Ping"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {},\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"5d9b3193-b93e-4e9d-96b6-24e79be55763"},{"name":"Precheck External Bank Account","id":"a38eaa8d-a572-40c0-b361-f6d426072b6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ExternalBankAccount\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/PrecheckExternalBankAccount","description":"<h3 id=\"description\">Description</h3>\n<p>This service is used to create a new EFT credit or debit (a.k.a Pre-Authorized Debit). If the transit/institution values provided in ExternalBankAccount do not match a valid institution as published by CPA the request will be refused, however no other validations will be enforced on the account number (meaning users are encouraged to use the PrecheckExternalBankAccount service to validate new bank accounts prior to their first use, to minimize rejected transfers).</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TrackingID</td>\n<td><em>GUID</em></td>\n<td>-</td>\n<td>Static value assigned by DCPayments.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccount</td>\n<td><em>String</em> (21-25)</td>\n<td>25</td>\n<td>Value in <em>TTTTT-IIII-AAAAAAAA format.</em>  <br />Exactly <code>5</code> <em>Transit</em> digits followed by exactly <code>4</code> <em>Institution</em> digits, followed by the <code>7-14</code> digit <em>account number.</em></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EFTType</td>\n<td><em>String</em> (1)</td>\n<td>1</td>\n<td>The EFT Type:  <br /><code>C</code> (credit) or  <br /><code>D</code> (debit).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>Amount of transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PostingDate</td>\n<td><em>Numeric</em> (8)</td>\n<td>8</td>\n<td>YYYYMMDD effective date for transfer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em> (1-50)</td>\n<td>50</td>\n<td>Name of individual owning the External Bank Account.  <br />- Alphabetical, spaces, hyphen and apostrophe characters only.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransferMemo</td>\n<td><em>String</em> (1-64)</td>\n<td>64</td>\n<td>Optional message to be sent with transfer.  <br />- Alphanumeric, spaces and the following characters only: .!@/;:,'=$?*()</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserLoggingData</td>\n<td><em>Numeric</em> (1-8)</td>\n<td>8</td>\n<td>User-defined value stored in database for use in reporting.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>UserReference</td>\n<td><em>String</em> (1-10)</td>\n<td>10</td>\n<td>Optional value, echoed in response.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","PrecheckExternalBankAccount"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ae33498b-4f41-4931-a0bd-aca107de398a","name":"Precheck External Bank Account","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"ExternalBankAccount\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/PrecheckExternalBankAccount"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {\r\n    \"warningMessage\": \"string\"\r\n  },\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"a38eaa8d-a572-40c0-b361-f6d426072b6a"},{"name":"Remind Money Request","id":"918eebab-4e6c-45cb-9979-0da2ccb701e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/RemindMoneyRequest","description":"<h3 id=\"description\">Description</h3>\n<p>The Remind Money Request API is an action-oriented service designed to trigger a reminder notification to the recepient of a previously issued money request.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","RemindMoneyRequest"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"56418786-e4ce-4132-8957-bdfa54066954","name":"Remind Money Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/RemindMoneyRequest"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {},\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"918eebab-4e6c-45cb-9979-0da2ccb701e9"},{"name":"Remind Transfer","id":"b5cbaf0d-8d0f-48f3-9dca-f8fbf57a0642","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/RemindTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>The Remind Transfer API is an action-oriented service that triggers a reminder notification for a pending or unfulfilled financial transfer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Dcp","RemindTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"72dbdf24-8345-4c34-ad29-6c1d52569a84","name":"Remind Transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestData\": {\r\n    \"UserSession\": \"string\",\r\n    \"ReferenceNumber\": \"string\"\r\n  },\r\n  \"TrackingID\": \"string\",\r\n  \"UserReference\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Dcp/RemindTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"responseData\": {},\r\n  \"response\": {\r\n    \"isSucceeded\": true,\r\n    \"errorList\": [\r\n      {\r\n        \"errorCode\": \"string\",\r\n        \"errorDescription\": \"string\",\r\n        \"parameterList\": [\r\n          \"string\"\r\n        ]\r\n      }\r\n    ],\r\n    \"parameterList\": [\r\n      \"string\"\r\n    ]\r\n  },\r\n  \"responseCode\": 0,\r\n  \"responseMessage\": \"string\",\r\n  \"serverTimeStamp\": \"string\",\r\n  \"apiVersion\": \"string\",\r\n  \"userReference\": \"string\"\r\n}"}],"_postman_id":"b5cbaf0d-8d0f-48f3-9dca-f8fbf57a0642"}],"id":"e8053f9b-6986-4ed0-89ad-7e82d2488e5c","event":[{"listen":"prerequest","script":{"id":"e7e775b4-e85a-452d-8e6c-97280e244426","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dd3be77b-7bca-47ec-99e2-de3b497db786","type":"text/javascript","exec":[""]}}],"_postman_id":"e8053f9b-6986-4ed0-89ad-7e82d2488e5c","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"DDT Program","item":[{"name":"Upload Ddt Account Create File","id":"a4a3ebe2-60e3-4afe-b045-121bc79c4f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/DdtFile/UploadDdtAccountCreateFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","DdtFile","UploadDdtAccountCreateFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4a3ebe2-60e3-4afe-b045-121bc79c4f31"},{"name":"Upload Ddt Account Status Update File","id":"b8007da2-a490-4901-8297-d2a397ad2bc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/DdtFile/UploadDdtAccountStatusUpdateFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","DdtFile","UploadDdtAccountStatusUpdateFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8007da2-a490-4901-8297-d2a397ad2bc9"},{"name":"Upload Ddt Account Update File","id":"f02143b3-55f4-47b3-8e64-e0e80a7a4e9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/DdtFile/UploadDdtAccountUpdateFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","DdtFile","UploadDdtAccountUpdateFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f02143b3-55f4-47b3-8e64-e0e80a7a4e9b"},{"name":"Upload Ddt Account Delete File","id":"3548314f-c0a6-4fbb-a5be-c57f5418c18b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/DdtFile/UploadDdtAccountDeleteFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","DdtFile","UploadDdtAccountDeleteFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3548314f-c0a6-4fbb-a5be-c57f5418c18b"},{"name":"Upload Ddt Create Transaction File","id":"8b65d55e-e9a6-4755-9491-c54e880cc5ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/DdtFile/UploadDdtCreateTransactionFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","DdtFile","UploadDdtCreateTransactionFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b65d55e-e9a6-4755-9491-c54e880cc5ec"}],"id":"467a1326-e472-42dd-999b-088eca5100f3","_postman_id":"467a1326-e472-42dd-999b-088eca5100f3","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"CDIC Program","item":[{"name":"Upload Cdic Account Status Update File","id":"1e974e4d-4ec2-48f6-8a12-2fae54dbd3a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/CdicFile/UploadCdicAccountStatusUpdateFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","CdicFile","UploadCdicAccountStatusUpdateFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e974e4d-4ec2-48f6-8a12-2fae54dbd3a0"},{"name":"Upload Cdic Account Delete File","id":"9aa8f347-c0ce-4995-98ae-63c1905ed978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/CdicFile/UploadCdicAccountDeleteFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","CdicFile","UploadCdicAccountDeleteFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9aa8f347-c0ce-4995-98ae-63c1905ed978"},{"name":"Upload Cdic Money Transfer File","id":"7cf0d1e9-5cb0-4c9f-8b57-4b2e0f9ac5dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{baseUrl}}/integrationapi/v1.0/CdicFile/UploadCdicMoneyTransferFile","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","CdicFile","UploadCdicMoneyTransferFile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cf0d1e9-5cb0-4c9f-8b57-4b2e0f9ac5dd"}],"id":"3b7f6933-3acb-4386-9d25-eb09ec174dc9","_postman_id":"3b7f6933-3acb-4386-9d25-eb09ec174dc9","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"60c4f214-55ce-42ef-9ef7-12c0f2029b55","_postman_id":"60c4f214-55ce-42ef-9ef7-12c0f2029b55","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Mastercard Cross Border","item":[{"name":"Customer","item":[{"name":"CreateCustomer","id":"bfc28079-272a-44e4-b2ff-7d4ad104225b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"FirstName\": \"Berkay\",\r\n  \"MiddleName\": null,\r\n  \"LastName\": \"Test\",\r\n  \"BirthDate\": 19900303,\r\n  \"PhoneCountryCode\": 38,\r\n  \"PhoneNumber\": 2132162132,\r\n  \"EMail\": \"testnewberkay2@dcbank.ca\",\r\n  \"IdType\": null,\r\n  \"IdNumber\": null,\r\n  \"IdExpireDate\": null,\r\n  \"Region\": null,\r\n  \"CountryId\": 38,\r\n  \"ProvinceId\": 671,\r\n  \"CityId\": 10296,\r\n  \"AddressLine1\": \"Z-240 Holiday Inn Dr\",\r\n  \"AddressLine2\": \"\",\r\n  \"PostalCode\": \"N3C 3X4\",\r\n  \"CardTransferTypeId\": 922426,\r\n  \"ClientTypeId\": 8011,\r\n  \"CompanyLegalName\": null,\r\n  \"BusinessName\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CreateCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The first name of the customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The middle name of the customer.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The last name of the customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The customers birth date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The country code of the customers phone number.  <br /><code>1</code> for <strong>Canada</strong> and <strong>USA</strong>.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The customers phone number, excluding the phone country code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customers email address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdType</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The type of ID provided.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The number if the ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdExpireDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The expiry date of the ID.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Region</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The region in which the ID originates.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The customers current country code of residence.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProvinceId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The customers current provincial code of residence.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The custmers city code of residence.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customers street address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customers street address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The postalc ode of where the customer currently resides.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardTransferTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The card transfer type ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The client type ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CompanyLegalName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customers company legal name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BusinessName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customers business name.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The customers unique customer number.</td>\n</tr>\n<tr>\n<td>InternalBlackListCheckResult</td>\n<td><em>String</em></td>\n<td>The result of the check against the internal black last.</td>\n</tr>\n<tr>\n<td>IdVerificationResult</td>\n<td><em>String</em></td>\n<td>The result of the ID verification.</td>\n</tr>\n<tr>\n<td>WatchListVerificationResult</td>\n<td><em>String</em></td>\n<td>The result of the watch list.</td>\n</tr>\n<tr>\n<td>AddressVerificationResult</td>\n<td><em>String</em></td>\n<td>The result of address verification.</td>\n</tr>\n<tr>\n<td>CustomerId</td>\n<td><em>Numeric</em></td>\n<td>The customers unique identifier.</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>Numeric</em></td>\n<td>The response code.</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>A response description of the response code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n<tr>\n<td>VisaDirectClientCustomerValidatorE2</td>\n<td>Company Legal Name Is Required.</td>\n</tr>\n<tr>\n<td>VisaDirectClientCustomerValidatorE2</td>\n<td>Business Name Is Required.</td>\n</tr>\n<tr>\n<td>VisaDirectClientCustomerValidatorE2</td>\n<td>First Name Is Required.</td>\n</tr>\n<tr>\n<td>VisaDirectClientCustomerValidatorE2</td>\n<td>Last Name Is Required.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE11</td>\n<td>Please Try Again Later.</td>\n</tr>\n<tr>\n<td>ClientCustomerCheckE11</td>\n<td>There Is A Customer With The Same Email.</td>\n</tr>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address Verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For Valid Addresses.  <br /><a href=\"https://www.canadapost-postescanada.ca/ac\">https://www.canadapost-postescanada.ca/ac</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","MastercardXBorder","CreateCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5c0710b6-0788-490e-9b2a-3dacc5793a67","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CustomerNumber\": 0,\r\n  \"FirstName\": \"Berkay\",\r\n  \"MiddleName\": null,\r\n  \"LastName\": \"Test\",\r\n  \"BirthDate\": 19900303,\r\n  \"PhoneCountryCode\": 38,\r\n  \"PhoneNumber\": 2132162132,\r\n  \"EMail\": \"testnewberkay2@dcbank.ca\",\r\n  \"IdType\": null,\r\n  \"IdNumber\": null,\r\n  \"IdExpireDate\": null,\r\n  \"Region\": null,\r\n  \"CountryId\": 38,\r\n  \"ProvinceId\": 671,\r\n  \"CityId\": 10296,\r\n  \"AddressLine1\": \"Z-240 Holiday Inn Dr\",\r\n  \"AddressLine2\": \"\",\r\n  \"PostalCode\": \"N3C 3X4\",\r\n  \"CardTransferTypeId\": 922426,\r\n  \"ClientTypeId\": 8011,\r\n  \"CompanyLegalName\": null,\r\n  \"BusinessName\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CreateCustomer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jan 2022 11:21:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"239","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"CustomerNumber\": 10220000715,\n        \"InternalBlackListCheckResult\": null,\n        \"IdVerificationResult\": null,\n        \"WatchListVerificationResult\": null,\n        \"AddressVerificationResult\": null,\n        \"CustomerId\": 52991,\n        \"ResponseCode\": null,\n        \"ResponseDescription\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bfc28079-272a-44e4-b2ff-7d4ad104225b"}],"id":"6b43c5d1-ccda-4d27-9e6f-246d9e86c8db","_postman_id":"6b43c5d1-ccda-4d27-9e6f-246d9e86c8db","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Create Mastercard Cross Border Transactions","item":[{"name":"CreatePaymentForward","id":"09646ad8-4e80-4621-a405-8f173491e08b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"accountId\": 24469,\r\n  \"customerNumber\": 10220000578,\r\n  \"cardId\": 0,\r\n  \"currencyId\": 161,\r\n  \"fromCurrencyCode\": null,\r\n  \"toCurrencyCode\": null,\r\n  \"paymentId\": null,\r\n  \"amount\": 10,\r\n  \"transactionDescription\": null,\r\n  \"purposeOfTransaction\": \"Donation or Gifts\",\r\n  \"paymentTransferTypeId\": 922492,\r\n  \"bankCode\": null,\r\n  \"receivingBankName\": null,\r\n  \"sourceOfIncome\": \"Employment\",\r\n  \"recipientBankAccountType\": null,\r\n  \"payerPayeeRelationship\": null,\r\n  \"accountNumber\": null,\r\n  \"bankSwiftCode\": null,\r\n  \"bankInstitution\": \"FR0210011000201002420129N37\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CreatePaymentForward","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountId</td>\n<td>Numeric</td>\n<td>-</td>\n<td>The unique account identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>customerNumber</td>\n<td>Numeric</td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>cardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>currencyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The currency ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>fromCurrencyCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The currency code in which the funds originated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>toCurrencyCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The currency code to which the funds are deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>paymentId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique payment identifier.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The amount of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>transactionDescription</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>A description of the payment.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>purposeOfTransaction</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The purpose of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>paymentTransferTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The type of payment identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>bankCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The bank code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>receivingBankName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The name of the bank where the funds are being received.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>sourceOfIncome</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The source of income of the sender.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>recipientBankAccountType</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><code>P</code> - Personal or  <br /><code>C</code> - Corporate</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>payerPayeeRelationship</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The relationship between the payer and the payee.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The account number where funds are intended to be deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>bankSwiftCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The SWIFT code of the bank.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>bankInstitution</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The bank institution.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MastercardXBorderTransactionOpV5</td>\n<td>Currency Code Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","MastercardXBorder","CreatePaymentForward"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c7b80f8f-d81e-49bf-80f8-fea3c0f883ae","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"accountId\": 24469,\r\n  \"customerNumber\": 10220000578,\r\n  \"cardId\": 0,\r\n  \"currencyId\": 161,\r\n  \"fromCurrencyCode\": null,\r\n  \"toCurrencyCode\": null,\r\n  \"paymentId\": null,\r\n  \"amount\": 10,\r\n  \"transactionDescription\": null,\r\n  \"purposeOfTransaction\": \"Donation or Gifts\",\r\n  \"paymentTransferTypeId\": 922492,\r\n  \"bankCode\": null,\r\n  \"receivingBankName\": null,\r\n  \"sourceOfIncome\": \"Employment\",\r\n  \"recipientBankAccountType\": null,\r\n  \"payerPayeeRelationship\": null,\r\n  \"accountNumber\": null,\r\n  \"bankSwiftCode\": null,\r\n  \"bankInstitution\": \"FR0210011000201002420129N37\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CreatePaymentForward"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jan 2022 12:10:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"127","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"09646ad8-4e80-4621-a405-8f173491e08b"},{"name":"CreatePaymentReverse","id":"c8f183b3-7d33-408b-a81d-5a3639b94875","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"accountId\": 24469,\r\n  \"customerNumber\": 10220000578,\r\n  \"cardId\": 0,\r\n  \"currencyId\": 161,\r\n  \"fromCurrencyCode\": null,\r\n  \"toCurrencyCode\": null,\r\n  \"paymentId\": null,\r\n  \"amount\": 10,\r\n  \"transactionDescription\": null,\r\n  \"purposeOfTransaction\": \"Donation or Gifts\",\r\n  \"paymentTransferTypeId\": 922492,\r\n  \"bankCode\": null,\r\n  \"receivingBankName\": null,\r\n  \"sourceOfIncome\": \"Employment\",\r\n  \"recipientBankAccountType\": null,\r\n  \"payerPayeeRelationship\": null,\r\n  \"accountNumber\": null,\r\n  \"bankSwiftCode\": null,\r\n  \"bankInstitution\": \"FR0210011000201002420129N37\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CreatePaymentReverse","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>accountId</td>\n<td>Numeric</td>\n<td>-</td>\n<td>The unique account identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>customerNumber</td>\n<td>Numeric</td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>cardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>currencyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The currency ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>fromCurrencyCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The currency code in which the funds originated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>toCurrencyCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The currency code to which the funds are deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>paymentId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique payment identifier.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>-</td>\n<td>The amount of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>transactionDescription</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>A description of the payment.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>purposeOfTransaction</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The purpose of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>paymentTransferTypeId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The type of payment identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>bankCode</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The bank code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>receivingBankName</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The name of the bank where the funds are being received.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>sourceOfIncome</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The source of income of the sender.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>recipientBankAccountType</td>\n<td><em>String</em></td>\n<td>-</td>\n<td><code>P</code> - Personal or  <br /><code>C</code> - Corporate</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>payerPayeeRelationship</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The relationship between the payer and the payee.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>accountNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The account number where funds are intended to be deposited.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>bankSwiftCode</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The SWIFT code of the bank.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>bankInstitution</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The bank institution.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MastercardXBorderTransactionOpV5</td>\n<td>Currency Code Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","MastercardXBorder","CreatePaymentReverse"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"785de2b9-45d5-434e-a8c1-ffe25e8c9183","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"accountId\": 24469,\r\n  \"customerNumber\": 10220000578,\r\n  \"cardId\": 0,\r\n  \"currencyId\": 161,\r\n  \"fromCurrencyCode\": null,\r\n  \"toCurrencyCode\": null,\r\n  \"paymentId\": null,\r\n  \"amount\": 10,\r\n  \"transactionDescription\": null,\r\n  \"purposeOfTransaction\": \"Donation or Gifts\",\r\n  \"paymentTransferTypeId\": 922492,\r\n  \"bankCode\": null,\r\n  \"receivingBankName\": null,\r\n  \"sourceOfIncome\": \"Employment\",\r\n  \"recipientBankAccountType\": null,\r\n  \"payerPayeeRelationship\": null,\r\n  \"accountNumber\": null,\r\n  \"bankSwiftCode\": null,\r\n  \"bankInstitution\": \"FR0210011000201002420129N37\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CreatePaymentReverse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jan 2022 12:12:15 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"127","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"c8f183b3-7d33-408b-a81d-5a3639b94875"},{"name":"RetrievePayment","id":"1d021193-39e8-4583-bdd3-95bbb39b0cb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10220000578\",\r\n  \"paymentId\": \"rem_0T4FwARj3smYFKXwZA_3lERJkX8\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/RetrievePayment","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PaymentId</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The unique payment identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","MastercardXBorder","RetrievePayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a3ea3cef-7c93-4ed6-9715-d6ab41bf3fab","name":"SUCCESS","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10220000578\",\r\n  \"paymentId\": \"rem_0T4FwARj3smYFKXwZA_3lERJkX8\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/RetrievePayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jan 2022 13:25:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"694","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.19.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true},{"key":"Set-Cookie","value":"ARRAffinitySameSite=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;SameSite=None;Secure;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"RetrievePayment\": {\n            \"transaction_reference\": \"100000000126963884\",\n            \"id\": \"rem_0T4FwARj3smYFKXwZA_3lERJkX8\",\n            \"resource_type\": \"payment\",\n            \"created\": \"2022-01-06T07:12:00-05:00\",\n            \"status\": \"PENDING\",\n            \"status_timestamp\": \"2022-01-06T07:12:00-05:00\",\n            \"pending_stage\": \"Processing\",\n            \"pending_max_completion_date\": \"2022-02-09T07:12:01-05:00\",\n            \"fees_amount\": {\n                \"amount\": \"3.70\",\n                \"currency\": \"CAD\"\n            },\n            \"charged_amount\": {\n                \"amount\": \"13.70\",\n                \"currency\": \"CAD\"\n            },\n            \"credited_amount\": {\n                \"amount\": \"6.77\",\n                \"currency\": \"EUR\"\n            },\n            \"principal_amount\": {\n                \"amount\": \"10.00\",\n                \"currency\": \"CAD\"\n            },\n            \"sender_account_uri\": \"ban:35220009544632607\",\n            \"recipient_account_uri\": \"iban:FR0210011000201002420129N37\",\n            \"payment_amount\": {\n                \"amount\": \"6.77\",\n                \"currency\": \"EUR\"\n            },\n            \"payment_origination_country\": \"CAN\",\n            \"fx_type\": {\n                \"reverse\": {\n                    \"sender_currency\": \"CAD\"\n                }\n            },\n            \"payment_type\": \"B2P\",\n            \"settlement_details\": {\n                \"amount\": \"13.50\",\n                \"currency\": \"CAD\"\n            },\n            \"fx_rate\": \"0.677226\",\n            \"additional_data_list\": {\n                \"resource_type\": \"list\",\n                \"item_count\": \"4\",\n                \"data\": {\n                    \"data_field\": [\n                        {\n                            \"name\": \"701\",\n                            \"value\": \"FRA\"\n                        },\n                        {\n                            \"name\": \"1200\",\n                            \"value\": \"FRA-BK\"\n                        },\n                        {\n                            \"name\": \"830\",\n                            \"value\": \"31mkqi4j0pdrv21kh5dkjngns8l\"\n                        },\n                        {\n                            \"name\": \"831\",\n                            \"value\": \"RATE_HONORED\"\n                        }\n                    ]\n                }\n            },\n            \"card_rate_id\": \"31mkqi4j0pdrv21kh5dkjngns8l\"\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"1d021193-39e8-4583-bdd3-95bbb39b0cb8"},{"name":"CancelPayment","id":"6f386e5d-e4a6-4b6f-b8f5-09cde3e55a08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerNumber\": \"10220000577\",\r\n  \"cardId\": 0,\r\n  \"currencyId\": 0,\r\n  \"paymentId\": \"rem_aCsu2BqjB38INVpFBd0UQKcX024\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/MastercardXBorder/CancelPayment","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The customers unique number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique card identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CurrencyId</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>The unique ID of the currency in which the payment was made.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PaymentId</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The unique payment identifier.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","MastercardXBorder","CancelPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f386e5d-e4a6-4b6f-b8f5-09cde3e55a08"}],"id":"08f7c737-5b30-49cd-b1e7-ba4fb8110a6f","_postman_id":"08f7c737-5b30-49cd-b1e7-ba4fb8110a6f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"9e6d9dc9-2775-4685-b48d-9efd6e89586c","_postman_id":"9e6d9dc9-2775-4685-b48d-9efd6e89586c","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Etransfer Webhook 3.x","item":[],"id":"a1bd84f1-8792-4575-8704-c84c8897d6f1","description":"<h3 id=\"description\"><strong>Description</strong></h3>\n<p>The eTransfer Webhook 3.0 is designed to keep you informed about the status of<br />eTransfers in real-time. When the status of an eTransfer is updated, a payload containing<br />relevant information will be delivered to the webhook URL provided.</p>\n<p>Each record of an etransfer update will POST as a single JSON object within the message body.</p>\n<p>We highly advise that you work your system around the statuses 'Received'|'Ready to Send', 'Sent', 'Rejected',<br />'Cancelled', 'Complete', as these webhooks involve money movement. If you have any issues with a transaction please contact our support desk and ask for additional confirmation.</p>\n<p>We would also advise that you pay special attention to the following fields, as they are the<br />main links between our system and yours:<br />ReferenceNumber:DCBank -&gt; DCBank's unique transaction identifier for the eTransfer.<br />ReferenceNumber:Client -&gt; Your unique transaction identifier for the eTransfer.<br />ReferenceNumber:Interac -&gt; Interac's unique transaction identifier for the eTransfer.<br />Status:Code -&gt; 'Received', 'Ready To Send', 'Sent', 'Fullfilled', 'Rejected', 'Cancelled', 'Completed'</p>\n<h5 id=\"note-e-transfers-are-only-considered-completed-when-dcbank-sends-the-appropriate-webhook-notification\"><strong>Note:</strong> E-Transfers are only considered completed when DCBank sends the appropriate webhook notification.</h5>\n<hr />\n<h3 id=\"changelog\"><strong>Changelog</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Version</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>3.1</td>\n<td>Added PSP support. MerchantNumber appears if a transaction is initiated by a PSP client</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>Added 'OtherFI' to Recipient Party object, and Contact Party object appears for incoming manual transactions</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"payload-documentation\">Payload documentation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td>string</td>\n<td>Send Money or Request Money</td>\n</tr>\n<tr>\n<td>Priority</td>\n<td>string</td>\n<td>Real-Time, Bulk Regular or Bulk Priority</td>\n</tr>\n<tr>\n<td>Direction</td>\n<td>string</td>\n<td>Incoming or Outgoing. Outgoing - sent out from the dcbank system, Incoming - received to the dcbank system.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>string</td>\n<td>Auto deposit, RTR Auto deposit, ANR, RTR ANR, Request Money Fulfillment, Send Money, RTR Send Money, Request Money</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>decimal</td>\n<td>Amount of funds transferred or requested.</td>\n</tr>\n<tr>\n<td>Version</td>\n<td>string</td>\n<td>Webhook Version</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td>string</td>\n<td><strong>&gt;=3.1</strong>  <br />The Merchant involved in the transaction</td>\n</tr>\n<tr>\n<td>Memo:Sent</td>\n<td>string</td>\n<td>The memo sent to the recipient</td>\n</tr>\n<tr>\n<td>Memo:Received</td>\n<td>string</td>\n<td>The memo received from the recipient</td>\n</tr>\n<tr>\n<td>References</td>\n<td>object</td>\n<td></td>\n</tr>\n<tr>\n<td>References:DcBank</td>\n<td>numeric</td>\n<td>DCBank's unique reference number for this transfer.</td>\n</tr>\n<tr>\n<td>References:Client</td>\n<td>string</td>\n<td>Your unique reference number for this transfer.</td>\n</tr>\n<tr>\n<td>References:Interac</td>\n<td>string</td>\n<td>Interac's unique reference number for this transfer.</td>\n</tr>\n<tr>\n<td>References:InteracFulfill</td>\n<td>string</td>\n<td>Interac's unique reference number for the fulfillment payment to a Request Money.</td>\n</tr>\n<tr>\n<td>Parties</td>\n<td>array of Party</td>\n<td></td>\n</tr>\n<tr>\n<td>Party:Type</td>\n<td>string</td>\n<td>Sender, Contact, Recipient, Responder.  <br />  <br />Sender - The party that initiated.  <br />Contact - The party that was sent to.  <br />Recipient - The party that actually completed the Send Money.  <br />Responder - The party that actually fulfilled the Request Money.</td>\n</tr>\n<tr>\n<td>Party:Name</td>\n<td>string</td>\n<td>The name of the party.  <br />  <br />Sender - The registered name of the Sender.  <br />Contact - The name used by Sender.  <br />Recipient or Responder - The registered name at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:Email</td>\n<td>string</td>\n<td>The email address of the party.  <br />  <br />Sender - The registered email of the Sender.  <br />Contact - The destination email used by the Sender.  <br />Recipient or Responder - This SHOULD be the registered email address at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:Phone</td>\n<td>string</td>\n<td>The phone number of the party.  <br />Sender - The registered phone number of the Sender.  <br />Contact - The destination phone number used by the Sender.  <br />Recipient or Responder - This SHOULD be the registered phone number at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:Account</td>\n<td>string (Contact, Recipient)  <br />int64 (Sender)</td>\n<td>The account details of the party.  <br />  <br />Sender - The registered account of the Send, if available.  <br />  <br />Contact - The destination account used by the Sender.  <br />  <br />Recipient or Responder - This SHOULD be the registered account at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:CustomerNumber</td>\n<td>numeric</td>\n<td>The DCBank unique customer number Contact. Only applicable to Contact's of outgoing transfers.</td>\n</tr>\n<tr>\n<td>Party:LegalName</td>\n<td>string</td>\n<td>Sender's legal name. Only applicable to Senders's of incoming transactions.</td>\n</tr>\n<tr>\n<td>Party:RegistrationName</td>\n<td>string</td>\n<td>Sender's registration name. Only applicable to Senders's of incoming transactions.</td>\n</tr>\n<tr>\n<td>Party:OtherFI</td>\n<td>string</td>\n<td>Sender's FI name of incoming transactions or Responder's FI name of money request  <br />  <br /><strong>&gt;= wh3.2</strong>  <br />Recipient's FI name of outgoing money send</td>\n</tr>\n<tr>\n<td>DcBankStatus</td>\n<td>object</td>\n<td>Contains an object with status details</td>\n</tr>\n<tr>\n<td>DcBankStatus:Code</td>\n<td>string</td>\n<td>The DCBank status of the transfer (see below).</td>\n</tr>\n<tr>\n<td>DcBankStatus:Changed</td>\n<td>datetime</td>\n<td>The date and time of when this status change occurred. In UTC timezone, formatted as \"yyyy-MM-ddThh:mm:ss.tttZ\".</td>\n</tr>\n<tr>\n<td>InteracHistory</td>\n<td>array of objects</td>\n<td>Contains an object with interac status history details</td>\n</tr>\n<tr>\n<td>InteracHistory:Status</td>\n<td>string</td>\n<td>See status details below</td>\n</tr>\n<tr>\n<td>InteracHistory:Changed</td>\n<td>date</td>\n<td>yyyy-MM-ddThh:mm:ss.tttZ.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"outgoing-statuses\">Outgoing Statuses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Received</td>\n<td>Transaction has been received by DCBank</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>Transaction has been received by DCBank (only appears if a transaction is created via endpoints CreateEtransferTransaction or CreateEtransferTransactionWithCustomer)</td>\n</tr>\n<tr>\n<td>Ready To Send</td>\n<td>Transaction is ready for sending to network</td>\n</tr>\n<tr>\n<td>Sent</td>\n<td>Transaction has been processed by DCBank and sent to network.</td>\n</tr>\n<tr>\n<td>Fullfilled</td>\n<td>Interac received a fulfillment money send. This is an intermediate status. It may be skipped if a transaction is completed quite fast.</td>\n</tr>\n<tr>\n<td>Rejected</td>\n<td>Rejected by network or external financial institution, any fund movements have been reversed.</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Cancelled and any fund movements have been reversed.</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>Transaction has been processed by DCBank and sent to network.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"incoming-statuses\">Incoming Statuses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Completed</td>\n<td>Transaction has been successfully completed. The fund movements have been completed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"interac-history-statuses-money-request\">Interac History Statuses (money request)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Initiated</td>\n<td>Request for Transfer received by the INTERAC e-Transfer system</td>\n</tr>\n<tr>\n<td>Fraud blocked</td>\n<td>Fraud blocked</td>\n</tr>\n<tr>\n<td>Fraud unblocked</td>\n<td>Fraud unblocked</td>\n</tr>\n<tr>\n<td>Available</td>\n<td>Request for Transfer available to be fulfilled</td>\n</tr>\n<tr>\n<td>Fulfilled</td>\n<td>INTERAC e-Transfer Request fulfilled by Responder. Atransfer is created in the INTERAC e-Transfer system.</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>Recipient declined the e-Transfer Request</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Sender cancelled e-Transfer Request</td>\n</tr>\n<tr>\n<td>Expired</td>\n<td>e-Transfer Request has expired</td>\n</tr>\n<tr>\n<td>Deposit Failed</td>\n<td>Transfer could not be deposited. Invalid/Closed Account is one of the possibilities.</td>\n</tr>\n<tr>\n<td>Deposit Complete</td>\n<td>Transfer deposited in the Requester’s account</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"interac-history-statuses-money-send\">Interac History Statuses (money send)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>e-Transfer initiated</td>\n<td>Sender requests transfer; request received by Interac</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>Online only – Funds have been deposited into Recipient’s account</td>\n</tr>\n<tr>\n<td>Fraud delay</td>\n<td>Fraud delay</td>\n</tr>\n<tr>\n<td>Fraud blocked</td>\n<td>Fraud blocked</td>\n</tr>\n<tr>\n<td>Fraud unblocked</td>\n<td>Fraud unblocked</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>Recipient declined the transfer</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Sender cancelled transfer</td>\n</tr>\n<tr>\n<td>Expired</td>\n<td>Transfer has expired</td>\n</tr>\n<tr>\n<td>Recipient unable to answer security question</td>\n<td>Recipient validation rejected due to incorrect response to security question.</td>\n</tr>\n<tr>\n<td>Recipient answered security question</td>\n<td>Recipient answered security question correctly</td>\n</tr>\n<tr>\n<td>Direct Deposit Failed</td>\n<td>Transfer could not be deposited. Invalid/Closed Account is one of the possibilities.</td>\n</tr>\n<tr>\n<td>Processing Direct Deposit</td>\n<td>Transfer in process to be deposited.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Response</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StatusCode</td>\n<td>Return OK (HTTP status code 200).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payload-example\">Payload example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Amount\": 0.01,\n  \"Direction\": \"Outgoing\",\n  \"Priority\": \"Real-Time\",\n  \"PaymentType\": \"Auto deposit\",\n  \"TransactionType\": \"Send Money\",\n  \"Version\": \"3.0\",\n  \"References\": {\n    \"DcBank\": 10000000000807000,\n    \"Client\": \"clientreference\",\n    \"Interac\": \"C1AWXXXX\"\n  },\n  \"Parties\": [\n    {\n      \"Account\": 342289493,\n      \"Type\": \"Sender\",\n      \"Name\": \"Sender Name\",\n      \"Email\": \"SenderEmail@test.ca\"\n    },\n    {\n      \"CustomerNumber\": \"xxxx12345678\",\n      \"Type\": \"Contact\",\n      \"Name\": \"Contact Name\",\n      \"Email\": \"contact@test.ca\"\n    },\n    {\n      \"Type\": \"Recipient\",\n      \"Name\": \"Recipient Name\",\n      \"Email\": \"Recipient@test.ca\"\n    }\n  ],\n  \"InteracHistory\": [\n    {\n      \"Changed\": \"2024-10-04T20:24:00\",\n      \"Status\": \"Completed\"\n    }\n  ],\n  \"DcBankStatus\": {\n    \"Status\": \"Completed\",\n    \"Changed\": \"2024-10-04T20:24:33.08\"\n  },\n  \"Memo\": {\n    \"Sent\": \"sent memo/description\"\n  }\n}\n\n</code></pre>\n","_postman_id":"a1bd84f1-8792-4575-8704-c84c8897d6f1","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Eft Status Update Webhook","item":[],"id":"9e087eee-42e0-496b-8fe0-83c9775548e4","description":"<h3 id=\"description\">Description</h3>\n<p>When the status of an EFT has been updated, this payload will be delivered to the webhook URL that you have provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Long</em></td>\n<td>Unique code representing the particular transaction</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer number</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Long</em></td>\n<td>Unique Id of the customers account</td>\n</tr>\n<tr>\n<td>CustomerAccountName</td>\n<td>string</td>\n<td>Name of the customer account</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The transaction's description</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypecode</td>\n<td><em>String</em></td>\n<td>Code Representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>Description of the transaction type</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Amount of the transaction</td>\n</tr>\n<tr>\n<td>EftTypeId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the eft type</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>Code Representation if the eft type</td>\n</tr>\n<tr>\n<td>EftTypeDescription</td>\n<td><em>String</em></td>\n<td>Description of the eft type</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>Date of the Transaction  <br />  <br />Ex format: 2022-06-03T04:00:08.472</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>Description of transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>Code representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Long</em></td>\n<td>numerical representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>Number that uniquely references the transaction</td>\n</tr>\n<tr>\n<td>StoredTransactionType</td>\n<td>short</td>\n<td>Transaction Type On Eft System. See <em>Stored Transaction Types</em> table.</td>\n</tr>\n<tr>\n<td>ReturnDate</td>\n<td><em>DateTime</em></td>\n<td>Date of return</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>Name of originator in short form</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>Name of originator in long form</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"TransactionId\": 20413437,\n\"CustomerNumber\": \"10220000048\",\n\"CustomerAccountId\": 6024523148,\n\"CustomerAccountName\": \"Account name\",\n\"Description\": \"Test e-transfer Transaction\",\n\"TransactionTypeId\": 6020,\n\"TransactionTypecode\": \"C\",\n\"TransactionTypeDescription\": \"Credit\",\n\"Amount\": 2.09,\n\"EftTypeId\": 14004,\n\"EftTypeCode\": \"R\",\n\"EftTypeDescription\": \"Returned\",\n\"TransactionDate\": \"2022-06-03T04:00:08.472\",\n\"TransactionStatusDescription\": \"Pending\",\n\"TransactionStatusCode\": \"P\",\n\"TransactionStatusId\": 14000,\n\"TransactionReferenceNumber\": \"100000000127997234\"\n\"StoredTransactionType\": \"\",\n\"ReturnDate\": \"2022-06-03T04:00:08.472\",\n\"OriginatorShortName\": \"Short Form\",\n\"OriginatorLongName\": \"Long Form\"\n}\n\n</code></pre><h3 id=\"eft-transaction-status\">EFT Transaction Status</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Eft Transaction Status</strong></th>\n<th><strong>EftTypeCode</strong></th>\n<th><strong>EftTypeID</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>P</td>\n<td>14000</td>\n<td>Transaction received, awaiting processing</td>\n</tr>\n<tr>\n<td>Deferred</td>\n<td>DF</td>\n<td>106787</td>\n<td>Will be processed on future date or not enough funds in your Client Account</td>\n</tr>\n<tr>\n<td>Ready To Send</td>\n<td>RD</td>\n<td>96269</td>\n<td>File in preparation</td>\n</tr>\n<tr>\n<td>Sent</td>\n<td>S</td>\n<td>14001</td>\n<td>Transaction processed by DCBank and sent to Network for processing</td>\n</tr>\n<tr>\n<td>Error</td>\n<td>E</td>\n<td>14002</td>\n<td>Transaction encountered an error; Possible errors include: the format is wrong, amount is too high, error from settlement bank, etc.</td>\n</tr>\n<tr>\n<td>Settled</td>\n<td>Y</td>\n<td>14003</td>\n<td>Settlement report received from network</td>\n</tr>\n<tr>\n<td>Returned</td>\n<td>R</td>\n<td>14004</td>\n<td>Returned by end user directly</td>\n</tr>\n<tr>\n<td>Rejected</td>\n<td>RJ</td>\n<td>14006</td>\n<td>Rejected by network or external bank</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>V</td>\n<td>14008</td>\n<td>Cancelled before sending to network</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>C</td>\n<td>14007</td>\n<td>An inbound EFT transaction has been recieved successfully</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"stored-transaction-types\">Stored Transaction Types</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Id</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Payroll Deposit</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Special Payroll</td>\n</tr>\n<tr>\n<td>202</td>\n<td>Vacation Payroll</td>\n</tr>\n<tr>\n<td>203</td>\n<td>Overtime Payroll</td>\n</tr>\n<tr>\n<td>204</td>\n<td>Advance Payroll</td>\n</tr>\n<tr>\n<td>205</td>\n<td>Commission Payroll</td>\n</tr>\n<tr>\n<td>206</td>\n<td>Bonus Payroll</td>\n</tr>\n<tr>\n<td>207</td>\n<td>Adjustment Payroll</td>\n</tr>\n<tr>\n<td>230</td>\n<td>Pension</td>\n</tr>\n<tr>\n<td>231</td>\n<td>Federal Pension</td>\n</tr>\n<tr>\n<td>232</td>\n<td>Provincial Pension</td>\n</tr>\n<tr>\n<td>233</td>\n<td>Private Pension</td>\n</tr>\n<tr>\n<td>240</td>\n<td>Annuity</td>\n</tr>\n<tr>\n<td>250</td>\n<td>Dividend</td>\n</tr>\n<tr>\n<td>251</td>\n<td>Common Dividend</td>\n</tr>\n<tr>\n<td>252</td>\n<td>Preferred Dividend</td>\n</tr>\n<tr>\n<td>260</td>\n<td>Investment</td>\n</tr>\n<tr>\n<td>261</td>\n<td>Mutual Funds</td>\n</tr>\n<tr>\n<td>271</td>\n<td>RSP Contribution</td>\n</tr>\n<tr>\n<td>272</td>\n<td>Retirement Income Fund</td>\n</tr>\n<tr>\n<td>280</td>\n<td>Interest</td>\n</tr>\n<tr>\n<td>330</td>\n<td>Insurance</td>\n</tr>\n<tr>\n<td>331</td>\n<td>Life Insurance</td>\n</tr>\n<tr>\n<td>332</td>\n<td>Auto Insurance</td>\n</tr>\n<tr>\n<td>333</td>\n<td>Property Insurance</td>\n</tr>\n<tr>\n<td>334</td>\n<td>Casualty Insurance</td>\n</tr>\n<tr>\n<td>335</td>\n<td>Mortgage Insurance</td>\n</tr>\n<tr>\n<td>336</td>\n<td>Health/Dental Claim Insurance</td>\n</tr>\n<tr>\n<td>350</td>\n<td>Loans</td>\n</tr>\n<tr>\n<td>351</td>\n<td>Personal Loans</td>\n</tr>\n<tr>\n<td>352</td>\n<td>Dealer Plan Loans</td>\n</tr>\n<tr>\n<td>353</td>\n<td>Farm Improvement Loans</td>\n</tr>\n<tr>\n<td>354</td>\n<td>Home Improvement Loans</td>\n</tr>\n<tr>\n<td>355</td>\n<td>Term Loans</td>\n</tr>\n<tr>\n<td>356</td>\n<td>Insurance Loans</td>\n</tr>\n<tr>\n<td>370</td>\n<td>Mortgage</td>\n</tr>\n<tr>\n<td>371</td>\n<td>Residential Mortgage</td>\n</tr>\n<tr>\n<td>372</td>\n<td>Commercial Mortgage</td>\n</tr>\n<tr>\n<td>373</td>\n<td>Farm Mortgage</td>\n</tr>\n<tr>\n<td>380</td>\n<td>Taxes</td>\n</tr>\n<tr>\n<td>381</td>\n<td>Income Taxes</td>\n</tr>\n<tr>\n<td>382</td>\n<td>Sales Taxes</td>\n</tr>\n<tr>\n<td>383</td>\n<td>Corporate Taxes</td>\n</tr>\n<tr>\n<td>384</td>\n<td>School Taxes</td>\n</tr>\n<tr>\n<td>385</td>\n<td>Property Taxes</td>\n</tr>\n<tr>\n<td>386</td>\n<td>Water Taxes</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Rent/Leases</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Residential Rent/Leases</td>\n</tr>\n<tr>\n<td>402</td>\n<td>Commercial Rent/Leases</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Equipment Rent/Leases</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Automobile Rent/Leases</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Appliance Rent/Leases</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Cash Management</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Bill Payment</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Telephone Bill Payment</td>\n</tr>\n<tr>\n<td>432</td>\n<td>Gasoline Bill Payment</td>\n</tr>\n<tr>\n<td>433</td>\n<td>Hydro Bill Payment</td>\n</tr>\n<tr>\n<td>434</td>\n<td>Cable Bill Payment</td>\n</tr>\n<tr>\n<td>435</td>\n<td>Fuel Bill Payment</td>\n</tr>\n<tr>\n<td>436</td>\n<td>Utility Bill Payment</td>\n</tr>\n<tr>\n<td>437</td>\n<td>Internet Access Payment</td>\n</tr>\n<tr>\n<td>450</td>\n<td>Miscellaneous Payment</td>\n</tr>\n<tr>\n<td>451</td>\n<td>Customer Cheques</td>\n</tr>\n<tr>\n<td>452</td>\n<td>Expense Payment</td>\n</tr>\n<tr>\n<td>460</td>\n<td>Accounts Payable</td>\n</tr>\n<tr>\n<td>470</td>\n<td>Fees/Dues</td>\n</tr>\n<tr>\n<td>480</td>\n<td>Donations</td>\n</tr>\n<tr>\n<td>600</td>\n<td>Provincial Government</td>\n</tr>\n<tr>\n<td>601</td>\n<td>Family Support Plan</td>\n</tr>\n<tr>\n<td>602</td>\n<td>Housing Allowance</td>\n</tr>\n<tr>\n<td>603</td>\n<td>Income Security Benefits</td>\n</tr>\n<tr>\n<td>604</td>\n<td>Provincial Family Benefits</td>\n</tr>\n<tr>\n<td>605</td>\n<td>Combined Fed-Prov Payment</td>\n</tr>\n<tr>\n<td>606</td>\n<td>Worker’s Compensation Board</td>\n</tr>\n<tr>\n<td>607</td>\n<td>Employment Assistance</td>\n</tr>\n<tr>\n<td>650</td>\n<td>Inter-FI Funds Debit</td>\n</tr>\n<tr>\n<td>700</td>\n<td>Business PAD</td>\n</tr>\n<tr>\n<td>999</td>\n<td>Clearing Items</td>\n</tr>\n<tr>\n<td>701</td>\n<td>Commercial Investments</td>\n</tr>\n<tr>\n<td>702</td>\n<td>Commercial Insurance</td>\n</tr>\n<tr>\n<td>703</td>\n<td>Commercial Auto Insurance</td>\n</tr>\n<tr>\n<td>704</td>\n<td>Commercial Property Insurance</td>\n</tr>\n<tr>\n<td>705</td>\n<td>Commercial Casualty Insurance</td>\n</tr>\n<tr>\n<td>706</td>\n<td>Commercial Mortgage Insurance</td>\n</tr>\n<tr>\n<td>707</td>\n<td>Commercial Loans</td>\n</tr>\n<tr>\n<td>708</td>\n<td>Commercial Mortgage</td>\n</tr>\n<tr>\n<td>709</td>\n<td>Commercial Taxes</td>\n</tr>\n<tr>\n<td>710</td>\n<td>Commercial Income Taxes</td>\n</tr>\n<tr>\n<td>711</td>\n<td>Commercial Sales Taxes</td>\n</tr>\n<tr>\n<td>712</td>\n<td>Commercial GST</td>\n</tr>\n<tr>\n<td>713</td>\n<td>Commercial Property Taxes</td>\n</tr>\n<tr>\n<td>714</td>\n<td>Commercial Rent/Lease</td>\n</tr>\n<tr>\n<td>715</td>\n<td>Commercial Equipment Rent/Lease</td>\n</tr>\n<tr>\n<td>716</td>\n<td>Commercial Automobile Rent/Lease</td>\n</tr>\n<tr>\n<td>717</td>\n<td>Commercial Cash Management</td>\n</tr>\n<tr>\n<td>718</td>\n<td>Commercial Bill Payment</td>\n</tr>\n<tr>\n<td>719</td>\n<td>Commercial Telephone Bill Payment</td>\n</tr>\n<tr>\n<td>720</td>\n<td>Commercial Gasoline Bill Payment</td>\n</tr>\n<tr>\n<td>721</td>\n<td>Commercial Hydro Bill Payment</td>\n</tr>\n<tr>\n<td>722</td>\n<td>Commercial Cable Bill Payment</td>\n</tr>\n<tr>\n<td>723</td>\n<td>Commercial Fuel Bill Payment</td>\n</tr>\n<tr>\n<td>724</td>\n<td>Commercial Utility Bill Payment</td>\n</tr>\n<tr>\n<td>725</td>\n<td>Commercial Internet Bill Payment</td>\n</tr>\n<tr>\n<td>726</td>\n<td>Commercial Water Bill Payment</td>\n</tr>\n<tr>\n<td>727</td>\n<td>Commercial Auto Payment</td>\n</tr>\n<tr>\n<td>728</td>\n<td>Commercial Expense Payment</td>\n</tr>\n<tr>\n<td>729</td>\n<td>Commercial Accounts Payable</td>\n</tr>\n<tr>\n<td>730</td>\n<td>Commercial Fees/Dues</td>\n</tr>\n<tr>\n<td>900</td>\n<td>Edit Reject</td>\n</tr>\n<tr>\n<td>901</td>\n<td>NSF (Debit Only)</td>\n</tr>\n<tr>\n<td>902</td>\n<td>Account not found</td>\n</tr>\n<tr>\n<td>903</td>\n<td>Payment Stopped/Recalled</td>\n</tr>\n<tr>\n<td>905</td>\n<td>Account Closed</td>\n</tr>\n<tr>\n<td>907</td>\n<td>No Debit Allowed</td>\n</tr>\n<tr>\n<td>908</td>\n<td>Funds Not Cleared (Debit Only)</td>\n</tr>\n<tr>\n<td>909</td>\n<td>Currency/Account Mismatch</td>\n</tr>\n<tr>\n<td>910</td>\n<td>Payor/Payee Deceased</td>\n</tr>\n<tr>\n<td>911</td>\n<td>Account Frozen</td>\n</tr>\n<tr>\n<td>912</td>\n<td>Invalid/Incorrect Account No.</td>\n</tr>\n<tr>\n<td>914</td>\n<td>Incorrect Payor/Payee Name</td>\n</tr>\n<tr>\n<td>915</td>\n<td>No Agreement Existed</td>\n</tr>\n<tr>\n<td>916</td>\n<td>Not According to Agreement –Personal</td>\n</tr>\n<tr>\n<td>917</td>\n<td>Agreement Revoked – Personal</td>\n</tr>\n<tr>\n<td>918</td>\n<td>No Confirmation/Pre-Notification – Personal</td>\n</tr>\n<tr>\n<td>919</td>\n<td>Not According to Agreement - Business</td>\n</tr>\n<tr>\n<td>920</td>\n<td>Agreement Revoked – Business</td>\n</tr>\n<tr>\n<td>921</td>\n<td>No Confirmation/Pre-Notification – Business</td>\n</tr>\n<tr>\n<td>922</td>\n<td>Customer Initiated Return</td>\n</tr>\n<tr>\n<td>990</td>\n<td>Institution in Default</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9e087eee-42e0-496b-8fe0-83c9775548e4","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"EFT Status Update Webhook 3.x","item":[],"id":"52d12442-c198-4b37-aff4-59b071cff255","description":"<h3 id=\"description\">Description</h3>\n<p>The EFT Webhook 3.x is designed to keep you informed about the status of<br />EFTs in real-time. When the status of an EFT is updated, a payload containing<br />relevant information will be delivered to the webhook URL provided.</p>\n<p>Each record of an EFT update will POST as a single JSON object within the message body.</p>\n<p>We highly advise that you work your system around the statuses 'Pending', 'Ready to Send', 'Rejected', 'Cancelled', 'Complete', 'Returned', and 'Settled' as these webhooks involve money movement. If you have any issues with a transaction please contact our support desk and ask for additional confirmation.</p>\n<p>We would also advise that you pay special attention to the following fields, as they are the<br />main links between our system and yours:<br />TransactionReferenceNumber -&gt; DCBank's unique transaction identifier for the eTransfer.<br />ClientReferenceNumber-&gt; Your unique transaction identifier for the eTransfer.</p>\n<h5 id=\"note-efts-are-only-considered-completed-when-dcbank-sends-the-appropriate-webhook-notification\"><strong>Note:</strong> EFTs are only considered completed when DCBank sends the appropriate webhook notification.</h5>\n<h3 id=\"changelog\"><strong>Changelog</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Version</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.0</td>\n<td>Created EFT Webhook</td>\n</tr>\n<tr>\n<td>3.0</td>\n<td>Added PSP support. MerchantNumber appears if a transaction is initiated by a PSP client. Webhook has been moved to a new webhook system.  <br />  <br />Added ClientReferenceNumber</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>Added CustomerAccountNumber.  <br />  <br />Removed fields TransactionTypeId, TransactionTypeCode, EftTypeId, EftTypeCode, TransactionStatusId, TransactionStatusCode, CustomerAccountId</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td>long</td>\n<td>Unique code representing the particular transaction</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td>string</td>\n<td>Unique customer number</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td>long</td>\n<td>**&lt;=3.0**  <br />  <br />Unique Id of the customers account</td>\n</tr>\n<tr>\n<td>CustomerAccountNumber</td>\n<td>long</td>\n<td><strong>&gt;=3.1</strong>  <br />  <br />Unique Id of the customers account</td>\n</tr>\n<tr>\n<td>CustomerAccountName</td>\n<td>string</td>\n<td>Name of the customer account</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>The transaction's description</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td>long</td>\n<td>**&lt;=3.0**  <br />  <br />Numerical representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypecode</td>\n<td>string</td>\n<td>**&lt;=3.0**  <br />  <br />Code Representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td>string</td>\n<td>Description of the transaction type</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>decimal</td>\n<td>Amount of the transaction</td>\n</tr>\n<tr>\n<td>EftTypeId</td>\n<td>long</td>\n<td>**&lt;=3.0**  <br />  <br />Numerical representation of the eft type</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td>string</td>\n<td>**&lt;=3.0**  <br />  <br />Code Representation if the eft type</td>\n</tr>\n<tr>\n<td>EftTypeDescription</td>\n<td>string</td>\n<td>Description of the eft type</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td>DateTime</td>\n<td>Date of the Transaction  <br />  <br />Ex format: 2022-06-03T04:00:08.472</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td>string</td>\n<td>Description of transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td>string</td>\n<td>**&lt;=3.0**  <br />  <br />Code representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td>long</td>\n<td>**&lt;=3.0**  <br />  <br />Numerical representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td>string</td>\n<td>Number that uniquely references the transaction</td>\n</tr>\n<tr>\n<td>StoredTransactionType</td>\n<td>short</td>\n<td>Transaction Type On Eft System. See <em>Stored Transaction Types</em> table.</td>\n</tr>\n<tr>\n<td>ReturnDate</td>\n<td>DateTime</td>\n<td>Date of return</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td>string</td>\n<td>Name of originator in short form</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td>string</td>\n<td>Name of originator in long form</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td>string</td>\n<td><strong>&gt;=3.0</strong>  <br />  <br />The Merchant involved in the transaction</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td>string</td>\n<td><strong>&gt;=3.0</strong>  <br />  <br />Reference that uniquely references the transaction, given by the client or by the other FI</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"TransactionId\": 20413437,\n\"CustomerNumber\": \"10220000048\",\n\"CustomerAccountNumber\": 6024523148,\n\"CustomerAccountName\": \"Account name\",\n\"Description\": \"Test e-transfer Transaction\",\n\"TransactionTypeDescription\": \"Credit\",\n\"Amount\": 2.09,\n\"EftTypeDescription\": \"Priority\",\n\"TransactionDate\": \"2022-06-03T04:00:08.472\",\n\"TransactionStatusDescription\": \"Pending\",\n\"TransactionReferenceNumber\": \"100000000127997234\"\n\"StoredTransactionType\": \"\",\n\"ReturnDate\": \"2022-06-03T04:00:08.472\",\n\"OriginatorShortName\": \"Short Form\",\n\"OriginatorLongName\": \"Long Form\",\n\"MerchantNumber\": \"M00000035\"\n\"ClientReferenceNumber\": \n}\n\n</code></pre><h3 id=\"eft-transaction-status\">EFT Transaction Status</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Eft Transaction Status</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>Transaction received, awaiting processing</td>\n</tr>\n<tr>\n<td>Deferred</td>\n<td>Will be processed on future date or not enough funds in your Client Account</td>\n</tr>\n<tr>\n<td>Ready To Send</td>\n<td>File in preparation</td>\n</tr>\n<tr>\n<td>Sent</td>\n<td>Transaction processed by DCBank and sent to Network for processing</td>\n</tr>\n<tr>\n<td>Error</td>\n<td>Transaction encountered an error; Possible errors include: the format is wrong, amount is too high, error from settlement bank, etc.</td>\n</tr>\n<tr>\n<td>Settled</td>\n<td>Settlement report received from network</td>\n</tr>\n<tr>\n<td>Returned</td>\n<td>Returned by end user directly</td>\n</tr>\n<tr>\n<td>Rejected</td>\n<td>Rejected by network or external bank</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Cancelled before sending to network</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>An inbound EFT transaction has been recieved successfully</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"stored-transaction-types\">Stored Transaction Types</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Id</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Payroll Deposit</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Special Payroll</td>\n</tr>\n<tr>\n<td>202</td>\n<td>Vacation Payroll</td>\n</tr>\n<tr>\n<td>203</td>\n<td>Overtime Payroll</td>\n</tr>\n<tr>\n<td>204</td>\n<td>Advance Payroll</td>\n</tr>\n<tr>\n<td>205</td>\n<td>Commission Payroll</td>\n</tr>\n<tr>\n<td>206</td>\n<td>Bonus Payroll</td>\n</tr>\n<tr>\n<td>207</td>\n<td>Adjustment Payroll</td>\n</tr>\n<tr>\n<td>230</td>\n<td>Pension</td>\n</tr>\n<tr>\n<td>231</td>\n<td>Federal Pension</td>\n</tr>\n<tr>\n<td>232</td>\n<td>Provincial Pension</td>\n</tr>\n<tr>\n<td>233</td>\n<td>Private Pension</td>\n</tr>\n<tr>\n<td>240</td>\n<td>Annuity</td>\n</tr>\n<tr>\n<td>250</td>\n<td>Dividend</td>\n</tr>\n<tr>\n<td>251</td>\n<td>Common Dividend</td>\n</tr>\n<tr>\n<td>252</td>\n<td>Preferred Dividend</td>\n</tr>\n<tr>\n<td>260</td>\n<td>Investment</td>\n</tr>\n<tr>\n<td>261</td>\n<td>Mutual Funds</td>\n</tr>\n<tr>\n<td>271</td>\n<td>RSP Contribution</td>\n</tr>\n<tr>\n<td>272</td>\n<td>Retirement Income Fund</td>\n</tr>\n<tr>\n<td>280</td>\n<td>Interest</td>\n</tr>\n<tr>\n<td>330</td>\n<td>Insurance</td>\n</tr>\n<tr>\n<td>331</td>\n<td>Life Insurance</td>\n</tr>\n<tr>\n<td>332</td>\n<td>Auto Insurance</td>\n</tr>\n<tr>\n<td>333</td>\n<td>Property Insurance</td>\n</tr>\n<tr>\n<td>334</td>\n<td>Casualty Insurance</td>\n</tr>\n<tr>\n<td>335</td>\n<td>Mortgage Insurance</td>\n</tr>\n<tr>\n<td>336</td>\n<td>Health/Dental Claim Insurance</td>\n</tr>\n<tr>\n<td>350</td>\n<td>Loans</td>\n</tr>\n<tr>\n<td>351</td>\n<td>Personal Loans</td>\n</tr>\n<tr>\n<td>352</td>\n<td>Dealer Plan Loans</td>\n</tr>\n<tr>\n<td>353</td>\n<td>Farm Improvement Loans</td>\n</tr>\n<tr>\n<td>354</td>\n<td>Home Improvement Loans</td>\n</tr>\n<tr>\n<td>355</td>\n<td>Term Loans</td>\n</tr>\n<tr>\n<td>356</td>\n<td>Insurance Loans</td>\n</tr>\n<tr>\n<td>370</td>\n<td>Mortgage</td>\n</tr>\n<tr>\n<td>371</td>\n<td>Residential Mortgage</td>\n</tr>\n<tr>\n<td>372</td>\n<td>Commercial Mortgage</td>\n</tr>\n<tr>\n<td>373</td>\n<td>Farm Mortgage</td>\n</tr>\n<tr>\n<td>380</td>\n<td>Taxes</td>\n</tr>\n<tr>\n<td>381</td>\n<td>Income Taxes</td>\n</tr>\n<tr>\n<td>382</td>\n<td>Sales Taxes</td>\n</tr>\n<tr>\n<td>383</td>\n<td>Corporate Taxes</td>\n</tr>\n<tr>\n<td>384</td>\n<td>School Taxes</td>\n</tr>\n<tr>\n<td>385</td>\n<td>Property Taxes</td>\n</tr>\n<tr>\n<td>386</td>\n<td>Water Taxes</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Rent/Leases</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Residential Rent/Leases</td>\n</tr>\n<tr>\n<td>402</td>\n<td>Commercial Rent/Leases</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Equipment Rent/Leases</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Automobile Rent/Leases</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Appliance Rent/Leases</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Cash Management</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Bill Payment</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Telephone Bill Payment</td>\n</tr>\n<tr>\n<td>432</td>\n<td>Gasoline Bill Payment</td>\n</tr>\n<tr>\n<td>433</td>\n<td>Hydro Bill Payment</td>\n</tr>\n<tr>\n<td>434</td>\n<td>Cable Bill Payment</td>\n</tr>\n<tr>\n<td>435</td>\n<td>Fuel Bill Payment</td>\n</tr>\n<tr>\n<td>436</td>\n<td>Utility Bill Payment</td>\n</tr>\n<tr>\n<td>437</td>\n<td>Internet Access Payment</td>\n</tr>\n<tr>\n<td>450</td>\n<td>Miscellaneous Payment</td>\n</tr>\n<tr>\n<td>451</td>\n<td>Customer Cheques</td>\n</tr>\n<tr>\n<td>452</td>\n<td>Expense Payment</td>\n</tr>\n<tr>\n<td>460</td>\n<td>Accounts Payable</td>\n</tr>\n<tr>\n<td>470</td>\n<td>Fees/Dues</td>\n</tr>\n<tr>\n<td>480</td>\n<td>Donations</td>\n</tr>\n<tr>\n<td>600</td>\n<td>Provincial Government</td>\n</tr>\n<tr>\n<td>601</td>\n<td>Family Support Plan</td>\n</tr>\n<tr>\n<td>602</td>\n<td>Housing Allowance</td>\n</tr>\n<tr>\n<td>603</td>\n<td>Income Security Benefits</td>\n</tr>\n<tr>\n<td>604</td>\n<td>Provincial Family Benefits</td>\n</tr>\n<tr>\n<td>605</td>\n<td>Combined Fed-Prov Payment</td>\n</tr>\n<tr>\n<td>606</td>\n<td>Worker’s Compensation Board</td>\n</tr>\n<tr>\n<td>607</td>\n<td>Employment Assistance</td>\n</tr>\n<tr>\n<td>650</td>\n<td>Inter-FI Funds Debit</td>\n</tr>\n<tr>\n<td>700</td>\n<td>Business PAD</td>\n</tr>\n<tr>\n<td>999</td>\n<td>Clearing Items</td>\n</tr>\n<tr>\n<td>701</td>\n<td>Commercial Investments</td>\n</tr>\n<tr>\n<td>702</td>\n<td>Commercial Insurance</td>\n</tr>\n<tr>\n<td>703</td>\n<td>Commercial Auto Insurance</td>\n</tr>\n<tr>\n<td>704</td>\n<td>Commercial Property Insurance</td>\n</tr>\n<tr>\n<td>705</td>\n<td>Commercial Casualty Insurance</td>\n</tr>\n<tr>\n<td>706</td>\n<td>Commercial Mortgage Insurance</td>\n</tr>\n<tr>\n<td>707</td>\n<td>Commercial Loans</td>\n</tr>\n<tr>\n<td>708</td>\n<td>Commercial Mortgage</td>\n</tr>\n<tr>\n<td>709</td>\n<td>Commercial Taxes</td>\n</tr>\n<tr>\n<td>710</td>\n<td>Commercial Income Taxes</td>\n</tr>\n<tr>\n<td>711</td>\n<td>Commercial Sales Taxes</td>\n</tr>\n<tr>\n<td>712</td>\n<td>Commercial GST</td>\n</tr>\n<tr>\n<td>713</td>\n<td>Commercial Property Taxes</td>\n</tr>\n<tr>\n<td>714</td>\n<td>Commercial Rent/Lease</td>\n</tr>\n<tr>\n<td>715</td>\n<td>Commercial Equipment Rent/Lease</td>\n</tr>\n<tr>\n<td>716</td>\n<td>Commercial Automobile Rent/Lease</td>\n</tr>\n<tr>\n<td>717</td>\n<td>Commercial Cash Management</td>\n</tr>\n<tr>\n<td>718</td>\n<td>Commercial Bill Payment</td>\n</tr>\n<tr>\n<td>719</td>\n<td>Commercial Telephone Bill Payment</td>\n</tr>\n<tr>\n<td>720</td>\n<td>Commercial Gasoline Bill Payment</td>\n</tr>\n<tr>\n<td>721</td>\n<td>Commercial Hydro Bill Payment</td>\n</tr>\n<tr>\n<td>722</td>\n<td>Commercial Cable Bill Payment</td>\n</tr>\n<tr>\n<td>723</td>\n<td>Commercial Fuel Bill Payment</td>\n</tr>\n<tr>\n<td>724</td>\n<td>Commercial Utility Bill Payment</td>\n</tr>\n<tr>\n<td>725</td>\n<td>Commercial Internet Bill Payment</td>\n</tr>\n<tr>\n<td>726</td>\n<td>Commercial Water Bill Payment</td>\n</tr>\n<tr>\n<td>727</td>\n<td>Commercial Auto Payment</td>\n</tr>\n<tr>\n<td>728</td>\n<td>Commercial Expense Payment</td>\n</tr>\n<tr>\n<td>729</td>\n<td>Commercial Accounts Payable</td>\n</tr>\n<tr>\n<td>730</td>\n<td>Commercial Fees/Dues</td>\n</tr>\n<tr>\n<td>900</td>\n<td>Edit Reject</td>\n</tr>\n<tr>\n<td>901</td>\n<td>NSF (Debit Only)</td>\n</tr>\n<tr>\n<td>902</td>\n<td>Account not found</td>\n</tr>\n<tr>\n<td>903</td>\n<td>Payment Stopped/Recalled</td>\n</tr>\n<tr>\n<td>905</td>\n<td>Account Closed</td>\n</tr>\n<tr>\n<td>907</td>\n<td>No Debit Allowed</td>\n</tr>\n<tr>\n<td>908</td>\n<td>Funds Not Cleared (Debit Only)</td>\n</tr>\n<tr>\n<td>909</td>\n<td>Currency/Account Mismatch</td>\n</tr>\n<tr>\n<td>910</td>\n<td>Payor/Payee Deceased</td>\n</tr>\n<tr>\n<td>911</td>\n<td>Account Frozen</td>\n</tr>\n<tr>\n<td>912</td>\n<td>Invalid/Incorrect Account No.</td>\n</tr>\n<tr>\n<td>914</td>\n<td>Incorrect Payor/Payee Name</td>\n</tr>\n<tr>\n<td>915</td>\n<td>No Agreement Existed</td>\n</tr>\n<tr>\n<td>916</td>\n<td>Not According to Agreement –Personal</td>\n</tr>\n<tr>\n<td>917</td>\n<td>Agreement Revoked – Personal</td>\n</tr>\n<tr>\n<td>918</td>\n<td>No Confirmation/Pre-Notification – Personal</td>\n</tr>\n<tr>\n<td>919</td>\n<td>Not According to Agreement - Business</td>\n</tr>\n<tr>\n<td>920</td>\n<td>Agreement Revoked – Business</td>\n</tr>\n<tr>\n<td>921</td>\n<td>No Confirmation/Pre-Notification – Business</td>\n</tr>\n<tr>\n<td>922</td>\n<td>Customer Initiated Return</td>\n</tr>\n<tr>\n<td>990</td>\n<td>Institution in Default</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"52d12442-c198-4b37-aff4-59b071cff255","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Card Transaction Notification","item":[],"id":"081b68b7-a384-40a6-a58f-a422c6afecc8","description":"<h3 id=\"description\">Description</h3>\n<p>When the status of a card is updated, this payload will be delivered to the webhook URL that you have provided.</p>\n<h3 id=\"payload-values\">Payload Values</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>Indicates Masked Card Number and can be retrieved from <strong>Wallet/CardList</strong> APIs.</td>\n</tr>\n<tr>\n<td>CardStatus</td>\n<td><em>String</em></td>\n<td>Code representation of card status</td>\n</tr>\n<tr>\n<td>CardStatusID</td>\n<td><em>Long</em></td>\n<td>An Id for card status and can be retrieved from <strong>Wallet/CardStatusList</strong> API  <br />  <br /><code>1</code> or <code>A</code> - Active  <br /><code>2</code> or <code>T</code> - Temporarily Closed  <br /><code>3</code> or <code>W</code> - Waiting for Activation  <br /><code>4</code> or <code>L</code> - Lost  <br /><code>5</code> or <code>S</code> - Stolen  <br /><code>6</code> or <code>O</code> - Other  <br /><code>7</code> or <code>F</code> - Fraud  <br /><code>8</code> or <code>C</code> - Customer Request  <br /><code>9</code> or <code>K</code> - Closed</td>\n</tr>\n<tr>\n<td>CardStatusDescription</td>\n<td><em>String</em></td>\n<td>Description of card status</td>\n</tr>\n<tr>\n<td>CardStatusChangeDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date that the card status was changed. This date value is in UTC.  <br />  <br />ex format: 2022-06-03T04:00:08.472</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"CardNumber\":\"511695**8636\",\n\"CardStatus\": \"A\",\n\"CardStatusID\": 1,\n\"CardStatusDescription\": \"Active\",\n\"CardStatusChangeDateTime\": \"2022-06-03T04:00:08.472\"\n}\n\n</code></pre>","_postman_id":"081b68b7-a384-40a6-a58f-a422c6afecc8","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Declined Card Transaction Notification Webhook","item":[],"id":"50b6ee17-0492-4660-be3f-3a6bf19089e4","description":"<h3 id=\"description\">Description</h3>\n<p>When a card transaction has been declined, this payload will be delivered to the webhook URL that you have provided.</p>\n<h3 id=\"payload-values\">Payload Values</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Long</em></td>\n<td>Unique code representing the particular transaction</td>\n</tr>\n<tr>\n<td>CardId</td>\n<td><em>Long</em></td>\n<td>Unique Card ID</td>\n</tr>\n<tr>\n<td>MerchantName</td>\n<td><em>String</em></td>\n<td>Name of the merchant</td>\n</tr>\n<tr>\n<td>MerchantCity</td>\n<td><em>String</em></td>\n<td>City of the Merchant</td>\n</tr>\n<tr>\n<td>MerchantCountry</td>\n<td><em>String</em></td>\n<td>Country of the Merchant</td>\n</tr>\n<tr>\n<td>Mcc</td>\n<td><em>String</em></td>\n<td>Each card can have a maximum of 5 MCC permissions in the MCC list. Cardholders can only use their card in defined MCC merchants and cannot use the card in other MCCs.  <br />  <br />Use <strong>GetMCCList</strong> API to see all defined MCCs in the system.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Amount of transaction</td>\n</tr>\n<tr>\n<td>LocalAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount in local currency</td>\n</tr>\n<tr>\n<td>LocalCurrencyCode</td>\n<td><em>String</em></td>\n<td>Code representing local currency  <br />  <br />Ex. CAD, USD</td>\n</tr>\n<tr>\n<td>ResponseCode</td>\n<td><em>String</em></td>\n<td>Code representation of the transaction response</td>\n</tr>\n<tr>\n<td>ErrorCode</td>\n<td><em>String</em></td>\n<td>Code representation of error that occurred</td>\n</tr>\n<tr>\n<td>Errordescription</td>\n<td><em>String</em></td>\n<td>Description of error that occurred</td>\n</tr>\n<tr>\n<td>ResponseDescription</td>\n<td><em>String</em></td>\n<td>Description of response that occurred</td>\n</tr>\n<tr>\n<td>TransactionDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date the transaction occurred</td>\n</tr>\n<tr>\n<td>ClientCustomerId</td>\n<td><em>Long</em></td>\n<td>Unique Id of the client's customer</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer number</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"TransactionId\": 20413437,\n\"CardId\": 10001,\n\"MerchantName\": \"Merchant Name\",\n\"MerchantCity\": \"Merchant City\",\n\"MerchantCountry\": \"Merchant country\",\n\"Mcc\": \"3245\",\n\"Amount\": 2.09,\n\"LocalAmount\": 1, \n\"LocalCurrencyCode\": \"CAD\",\n\"ResponseCode\": \"00\",\n\"ErrorCode\": \"0\",\n\"Errordescription\": \"Successful\",\n\"ResponseDescription\": \"Description of Response\",\n\"TransactionDateTime\": \"2022-06-03T04:00:08.472\",\n\"ClientCustomerId\": 10220000048,\n\"CustomerNumber\": \"10220000048\"\n}\n\n</code></pre>","_postman_id":"50b6ee17-0492-4660-be3f-3a6bf19089e4","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Etransfer Status Update Like Search API Webhook","item":[],"id":"bc44bf2c-6b80-4a8f-b8f1-14f4951451c5","description":"<h3 id=\"description\"><strong>Description</strong></h3>\n<p>The eTransfer Status Update Like Search API is a powerful tool designed to keep you informed about the status of eTransfers in real-time. When the status of an eTransfer is updated, a payload containing relevant information will be delivered to the webhook URL you have provided.</p>\n<p><strong>Note:</strong> E-Transfers are only considered completed when DCBank sends the appropriate webhook notification. To determine the status of a transaction within the payload, you should match the <code>StatusCode</code> to the ETransfer Transaction Status table provided below. If the <code>StatusCode</code> does not match any of the listed statuses, it indicates that the transaction is not yet completed.</p>\n<p>Should you encounter any concerns or inquiries related to individual transactions, please do not hesitate to contact our support desk.</p>\n<h3 id=\"etransfer-transaction-status\"><strong>ETransfer Transaction Status</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>TransactionStatusID</strong></th>\n<th><strong>Status</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14007</td>\n<td>C</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payload-values\">Payload Values</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer identity number</td>\n</tr>\n<tr>\n<td>DcbCustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer identity number</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Long</em></td>\n<td>Unique code representing the particular transaction</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Long</em></td>\n<td>The unique id for contact. The value can retrieved from <strong>ETransfer/GetEtransferContact</strong></td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>Name of the contact  <br />Format: First Last</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>420 characters in the memo field</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>Code representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>Description of transaction type</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Transaction amount</td>\n</tr>\n<tr>\n<td>PriorityTypeId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the priority type</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>Code representation of the priority type</td>\n</tr>\n<tr>\n<td>PriorityTypeDescription</td>\n<td><em>String</em></td>\n<td>Description of priority type</td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>The transaction's expiry date. This date value is in UTC.  <br />  <br />Ex format: 2022-06-03T04:00:08.472</td>\n</tr>\n<tr>\n<td>DateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>The creation date of a transaction. This date value is in UTC.</td>\n</tr>\n<tr>\n<td>SecurityQuestionId</td>\n<td><em>Long</em></td>\n<td>Numerical ID corresponding to security question</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>The security question</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>Answer to the security question</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>Description of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>Code representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the transaction status</td>\n</tr>\n<tr>\n<td>InteracStatusId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the Interac transaction status</td>\n</tr>\n<tr>\n<td>InteracStatusCode</td>\n<td><em>String</em></td>\n<td>Code representation of the Interac transaction status</td>\n</tr>\n<tr>\n<td>InteracStatusDescription</td>\n<td><em>String</em></td>\n<td>Description of the Interac transaction status</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>Unique string that represents an interac transaction (used by interac system)</td>\n</tr>\n<tr>\n<td>ParticipantReferenceNumber</td>\n<td><em>String</em></td>\n<td>The can value retrieved from <strong>ETransfer/SearchEtransferTransaction</strong></td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>Reference number uniquely identifying transaction</td>\n</tr>\n<tr>\n<td>ErrorDescription</td>\n<td><em>String</em></td>\n<td>Description of error that has occured</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>Name of the sender</td>\n</tr>\n<tr>\n<td>InteracSenderReferenceNumber</td>\n<td><em>String</em></td>\n<td>Interac reference number of the sender</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>Unique reference number of the client. Supplied by users of API to aid in searching for transaction</td>\n</tr>\n<tr>\n<td>StatusChangeDateTime</td>\n<td><em>DateTime</em></td>\n<td>The date and time that the change in status occurred</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>Representation of the Transaction Type.  <br />  <br />C - Credit Transaction (Money Send)  <br />D -Debit Transaction (Money Request)</td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>The unique identification number provided to each transaction by DCBank</td>\n</tr>\n<tr>\n<td>StatusCode</td>\n<td><em>String</em></td>\n<td>Representation of the current transaction status</td>\n</tr>\n<tr>\n<td>ETransferStatusCode</td>\n<td><em>String</em></td>\n<td>Value that represents the status of the transaction as provided by Interac</td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>Name of the payee</td>\n</tr>\n<tr>\n<td>PayeeEmail</td>\n<td><em>String</em></td>\n<td>Email address of the payee</td>\n</tr>\n<tr>\n<td>TransactionAmount</td>\n<td><em>Decimal</em></td>\n<td>Amount of funds transferred</td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Long</em></td>\n<td>Unique identifier of sender's account</td>\n</tr>\n<tr>\n<td>FinancialInstitution</td>\n<td><em>String</em></td>\n<td>Corresponding Financial Institution provided by Interac</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>Payment type of Etransfer</td>\n</tr>\n<tr>\n<td>RemittanceUnstructured</td>\n<td><em>String</em></td>\n<td>420 characters in the memo field</td>\n</tr>\n<tr>\n<td>ResponderName</td>\n<td><em>String</em></td>\n<td>Name of the registered account holder who fulfilled the request money</td>\n</tr>\n<tr>\n<td>ResponderEmail</td>\n<td><em>String</em></td>\n<td>Email of the registered account holder who fulfilled the request money (only provided by Interac when request money sent with SMS notification otherwise Payee data provided)</td>\n</tr>\n<tr>\n<td>ResponderPhoneNumber</td>\n<td><em>Long</em></td>\n<td>Phone number of the registered account holder who fulfilled the request money (only Payee data provided)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payment-type\">Payment Type</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ACCOUNT_ALIAS_PAYMENT</td>\n<td>Auto-Deposit e-Transfer</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_ALIAS_PAYMENT</td>\n<td>Real-Time Auto-Deposit e-Transfer</td>\n</tr>\n<tr>\n<td>ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Account-Deposit e-Transfer</td>\n</tr>\n<tr>\n<td>REALTIME_ACCOUNT_DEPOSIT_PAYMENT</td>\n<td>Real-Time Account-Deposit e-Transfer</td>\n</tr>\n<tr>\n<td>FULFILL_REQUEST_FOR_PAYMENT</td>\n<td>Updates the request for payment to completed</td>\n</tr>\n<tr>\n<td>REGULAR_PAYMENT</td>\n<td>Regular \"Send Money\" e-Transfer (a.k.a. security question and answer e-Transfer)</td>\n</tr>\n<tr>\n<td>RTR_PAYMENT</td>\n<td>Future Feature</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"CustomerNumber\": null,\n  \"DcbCustomerNumber\": null,\n  \"TransactionId\": 2957349,\n  \"ContactId\": 0,\n  \"ContactName\": \"DCBank's Funny Money Inc.\",\n  \"Description\": \"Autodeposit Transfer\",\n  \"TransactionTypeId\": 6020,\n  \"TransactionTypeCode\": \"C\",\n  \"TransactionTypeDescription\": \"Money Send\",\n  \"Amount\": 15.01,\n  \"PriorityTypeId\": 20004,\n  \"PriorityTypeCode\": \"0\",\n  \"PriorityTypeDescription\": \"Real Time\",\n  \"MoneyReqExpDate\": \"2023-04-15T15:30:47.2577453\",\n  \"DateOfFunds\": \"2023-04-13T15:30:47.2684976\",\n  \"SecurityQuestionId\": 0,\n  \"SecurityQuestion\": \"\",\n  \"SecurityQuestionAnswer\": null,\n  \"TransactionStatusDescription\": \"Completed\",\n  \"TransactionStatusCode\": \"C\",\n  \"TransactionStatusId\": 14007,\n  \"InteracStatusId\": 96311,\n  \"InteracStatusCode\": \"10\",\n  \"InteracStatusDescription\": \"Completed\",\n  \"InteracReferenceNumber\": \"CAUBP8nh\",\n  \"ParticipantReferenceNumber\": \"100000000004481870\",\n  \"TransactionReferenceNumber\": \"100000000004481870\",\n  \"ErrorDescription\": null,\n  \"SenderName\": \"DCBank's Funny Money Inc.\",\n  \"InteracSenderReferenceNumber\": null,\n  \"ClientReferenceNumber\": \"100000000004481870\",\n  \"StatusChangeDateTime\": \"2023-04-13T15:30:47.64\",\n  \"TransactionType\": \"C\",\n  \"ReferenceNumber\": 100000000004481870,\n  \"StatusCode\": \"C\",\n  \"ETransferStatusCode\": \"10\",\n  \"ETrasnsferStatusCode\": \"10\",\n  \"PayeeName\": \"DCBank's Funny Money Inc.\",\n  \"PayeeEmail\": \"\",\n  \"TransactionAmount\": 15.01,\n  \"Memo\": \"Autodeposit Transfer\",\n  \"AccountId\": 37,\n  \"FinancialInstitution\": \"DIRECTCASH BANK\",\n  \"PaymentType\": \"ACCOUNT_DEPOSIT_PAYMENT\",\n  \"RemittanceUnstructured\": \"Autodeposit Transfer\",\n  \"ResponderName\": \"DCBank's Funny Money Inc.\",\n  \"ResponderEmail\": \"shawn.kaldenbach@dcbank.ca\",\n  \"ResponderPhoneNumber\": \"\"\n}\n\n</code></pre><h3 id=\"transaction-status\">Transaction Status</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Transaction Status</strong></th>\n<th><strong>TypeCode</strong></th>\n<th><strong>TypeID</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>P</td>\n<td>14000</td>\n<td>Transaction received, awaiting processing</td>\n</tr>\n<tr>\n<td>Sent</td>\n<td>S</td>\n<td>14001</td>\n<td>Transaction processed by DCBank and sent to Network for processing</td>\n</tr>\n<tr>\n<td>Error</td>\n<td>E</td>\n<td>14002</td>\n<td>Transaction encountered an error; Possible errors include: the format is wrong, amount is too high, error from settlement bank, etc.</td>\n</tr>\n<tr>\n<td>Settled</td>\n<td>Y</td>\n<td>14003</td>\n<td>Settlement report received from network</td>\n</tr>\n<tr>\n<td>Returned</td>\n<td>R</td>\n<td>14004</td>\n<td>Returned by end user directly</td>\n</tr>\n<tr>\n<td>Rejected</td>\n<td>RJ</td>\n<td>14006</td>\n<td>Rejected by network or external bank</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>C</td>\n<td>14007</td>\n<td>The eTransfer transaction has been successfully completed. The funds have been securely transferred from the sender's account to the recipient's account.</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>V</td>\n<td>14008</td>\n<td>Cancelled by DCBank or Client</td>\n</tr>\n<tr>\n<td>Received</td>\n<td>DP</td>\n<td>14011</td>\n<td>Transaction has been received by DCBank</td>\n</tr>\n<tr>\n<td>Ready To Send</td>\n<td>RD</td>\n<td>96269</td>\n<td>File in preparation</td>\n</tr>\n<tr>\n<td>Deferred Transaction</td>\n<td>DF</td>\n<td>106787</td>\n<td>Will be processed on future date or not enough funds in your Client Account</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"api-response\">API Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Response</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Error</td>\n<td>Transaction posting to Bridge unsuccessful</td>\n</tr>\n<tr>\n<td>Successful</td>\n<td>Transaction posting to Bridge successful</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"interac-status-codes\">Interac Status Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>StatusCode</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Transaction initiated</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Transaction available</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Transaction fulfilled</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Transaction declined</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Transaction canceled</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Transaction Expired</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Deposit Failed</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Deposit Complete</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"bc44bf2c-6b80-4a8f-b8f1-14f4951451c5","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Etransfer Delay Webhook","item":[],"id":"b4ed3fe0-a06c-4613-8614-7793ff5fb903","description":"<h3 id=\"description\">Description</h3>\n<p>When an incoming Etransfer transaction hits our system and the Etransfer delay feature is enabled, a webhook will be sent out as part of the delay flow. The data of the webhook can change depending on whether it's a fulfillment of a money request or an autodeposit/account number deposit transaction.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The name of the person/business sending money (Deposit only)</td>\n</tr>\n<tr>\n<td>SenderEmailAddress</td>\n<td><em>String</em></td>\n<td>The email of the person/business sending money (Deposit only)</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The name of the person/business originally contacted (Fulfill only)</td>\n</tr>\n<tr>\n<td>ContactEmailAddress</td>\n<td><em>String</em></td>\n<td>The email of the person/business originally contacted (Fulfill only) (May be <a href=\"https://mailto:noreply@dcbank.ca\">noreply@dcbank.ca</a> if suppress notifications are on)</td>\n</tr>\n<tr>\n<td>ContactPhoneNumber</td>\n<td><em>String</em></td>\n<td>The phone number of the person/business originally contacted (Fulfill only)</td>\n</tr>\n<tr>\n<td>ResponderName</td>\n<td><em>String</em></td>\n<td>The name of the person/business who fulfilled the money request (Fulfill only)</td>\n</tr>\n<tr>\n<td>ResponderEmailAddress</td>\n<td><em>String</em></td>\n<td>The email of the person/business who fulfilled the money request (Fulfill only)</td>\n</tr>\n<tr>\n<td>RecipientName</td>\n<td><em>String</em></td>\n<td>The name of the person receiving the funds</td>\n</tr>\n<tr>\n<td>RecipientEmailAddress</td>\n<td><em>String</em></td>\n<td>The email address of the person receiving the funds</td>\n</tr>\n<tr>\n<td>UnstructuredRemittance</td>\n<td><em>String</em></td>\n<td>Commonly referred to as description, given by the other FI or when the money request was being created</td>\n</tr>\n<tr>\n<td>InteracReference</td>\n<td><em>String</em></td>\n<td>The incoming Interac reference</td>\n</tr>\n<tr>\n<td>RequestReference</td>\n<td><em>String</em></td>\n<td>The Interac reference originally created with the money request (Fulfill only)</td>\n</tr>\n<tr>\n<td>DCBankReferenceNumber</td>\n<td><em>Long</em></td>\n<td>DCBanks internal reference number. (Fulfill only)</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The ClientReferenceNumber provided when creating the money request. If none was provided, this will be DCBank's internal reference number. (Fulfill only)</td>\n</tr>\n<tr>\n<td>InteracContactTime</td>\n<td><em>DateTime</em></td>\n<td>The time when Interac contacted DCBank, and signifies the start of the countdown for responding to DCBank for acceptance/rejection. Time is in UTC.  <br />  <br />Format: YYYY-MM-DDTHH:mm:ss.FFFFFFF  <br />  <br />Example: 2024-08-27T21:54:20.5902821</td>\n</tr>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>Signifies whether the transaction is either 'Request Money' or 'Send Money'</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>The type of transaction. Request Money will always be \"Fulfill\". Money Sends can be 'AutoDeposit', 'AccountDeposit', or 'UnknownType'</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount being sent to the recipient</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-fulfill-payload\">Example Fulfill Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"ContactName\": \"Contact Person\",\n  \"ContactEmailAddress\": \"moneycontactor@dcbank.ca\",\n  \"ResponderName\": \"Responder Person\",\n  \"ResponderEmailAddress\": \"moneyresponder@dcbank.ca\",\n  \"RecipientName\": \"Fulfill Test\",\n  \"RecipientEmailAddress\": \"interactesting@dcbank.ca\",\n  \"UnstructuredRemittance\": \"TEST WEBHOOK #1\",\n  \"InteracReference\": \"C1F8JpU3DzzB\",\n  \"RequestReference\": \"CA1MRpEzyngw\",\n  \"DCBankReferenceNumber\": 100000000007538166,\n  \"ClientReferenceNumber\": \"TEST WEBHOOK #1\",\n  \"InteracContactTime\": \"2024-08-23T17:44:59.2037549\",\n  \"TransactionType\": \"Request Money\",\n  \"PaymentType\": \"Fulfill\",\n  \"Amount\": 0.01\n}\n\n</code></pre>\n<h3 id=\"example-autodeposit-payload\">Example Autodeposit Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"SenderName\": \"Interac Tester\",\n  \"SenderEmailAddress\": \"moneysender@dcbank.ca\",\n  \"RecipientName\": \"Autodeposit Test\",\n  \"RecipientEmailAddress\": \"interactesting@dcbank.ca\",\n  \"UnstructuredRemittance\": \"TEST WEBHOOK #1\",\n  \"InteracReference\": \"C1AqxJEddzxe\",\n  \"InteracContactTime\": \"2024-08-23T16:33:27.4131442\",\n  \"TransactionType\": \"Send Money\",\n  \"PaymentType\": \"AutoDeposit\",\n  \"Amount\": 0.01\n}\n\n</code></pre>\n","_postman_id":"b4ed3fe0-a06c-4613-8614-7793ff5fb903","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"KYC Screening Result Webhook","item":[],"id":"299777c3-d096-452f-b8f1-68c9941b9044","description":"<p>The KYC Screening Result Webhook serves as a notification mechanism for changes in screening status. It applies to individuals and entities such as customers, merchants, and franchisees. Whenever a screening status is updated, a detailed notification is promptly delivered.</p>\n<p>Payload</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Use this value to match with a customer number recieved with the response of the initial CreateCustomer API.  <br />  <br />This is null if Merchant Number or Franchisee Number is provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>Use this value to match with a merchant number recieved with the response of the initial CreateMerchant API.  <br />  <br />This is null if Customer Number or Franchisee Number is provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FranchiseeNumber</td>\n<td><em>String</em></td>\n<td>Use this value to match with a franchisee number. The number can be recieved with the response of the initial CreateMerchant API.  <br />  <br />This is null if Customer Number or Franchisee Number is provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>KycStatus</td>\n<td><em>String</em></td>\n<td>In review / Approved / Declined</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"statuses\">Statuses</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In review</td>\n<td>A KYC related case has been assigned to the compliance officer.</td>\n</tr>\n<tr>\n<td>Approved</td>\n<td>KYC related checks have been performed successfully.</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>KYC related checks have resulted in declined status.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"299777c3-d096-452f-b8f1-68c9941b9044","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Replay","id":"63c14e06-01e1-4337-9d1a-0073b8b8c4ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ReferenceNumber\": 100000000007682946\r\n    // \"InteracReference\": \"CADmV4RT\"\r\n    //  \"ClientReference\": \"kimtestt10842\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Webhook/Replay","description":"<h3 id=\"description\">Description</h3>\n<p>Replay the last webhook received for a specified transaction. Please note that we only hold records of up to 30 days from the time a webhook was created. For replaying webhooks older than 30 days, please contact API Support. Webhooks are permanently deleted after 90 days.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>18</td>\n<td>Bank reference.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>InteracReference</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Interac reference.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Client .  <br />Reference</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferStatusHistory</td>\n<td><em>Array</em></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"etransferstatushistory\">EtransferStatusHistory</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td>Long</td>\n<td>Bank reference</td>\n</tr>\n<tr>\n<td>InteracReference</td>\n<td>String</td>\n<td>Interac reference</td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td>String</td>\n<td>Client  <br />Reference</td>\n</tr>\n<tr>\n<td>StatusCode</td>\n<td>short</td>\n<td>Status number</td>\n</tr>\n<tr>\n<td>StatusDescription</td>\n<td>string</td>\n<td>Status description</td>\n</tr>\n<tr>\n<td>StatusChangeDate</td>\n<td>datetime</td>\n<td>Status change date</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferStatusHistoryOpErr01</td>\n<td>Empty request.</td>\n</tr>\n<tr>\n<td>EtransferStatusHistoryOpErr02</td>\n<td>You do not have permissions to use this API.</td>\n</tr>\n<tr>\n<td>EtransferStatusHistoryOpErr03</td>\n<td>No history found.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Webhook","Replay"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63c14e06-01e1-4337-9d1a-0073b8b8c4ca"}],"id":"2d124abd-4e0e-4b32-b1f5-456a65db2433","description":"<h3 id=\"webhook-integrations\">Webhook Integrations</h3>\n<p>DCBank offers a variety of webhook solutions that allow for the automatic delivery of JSON data payloads to your application. Data payloads are sent as a result of various triggers that include declined card transactions, changes in card status, changes in EFT status, and changes in Etransfer status.</p>\n<p>By using DCBank web hook solutions, you can easily make your applications responsive to events<br />as they happen in real-time. For each triggering event a unique corresponding data payload will be directed to the web hook url that you have provided. Once obtained, you can use the payload to keep track of data and increase the quality of your user's experience.</p>\n<p><strong>Note</strong> that each client may only have 1 webhook endpoint integration.</p>\n<p><em>DCBank does not guarantee single delivery. Please ensure that your endpoint handles duplicates accordingly.</em></p>\n<h3 id=\"steps-to-integrating-with-company-webhook-notifications\">Steps to integrating with DCBank webhook notifications</h3>\n<ol>\n<li><p>Create a webhook endpoint and associated URL on your servers</p>\n</li>\n<li><p>Ensure that your new endpoint handles the expected payload from DCBank and returns a <code>200</code> or <code>202</code> response code.</p>\n</li>\n<li><p>Deploy your webhook endpoint and test that it is publicly available on an HTTPS URL</p>\n</li>\n<li><p>Email <a href=\"https://%7B%7BSupport%7D%7D\">apisupport@dcbank.ca</a> with your request to register the webhook endpoint for e-transfer notifications</p>\n</li>\n</ol>\n<h3 id=\"handling-webhook-requests\">Handling Webhook requests</h3>\n<p>The webhook request that your endpoint will be receiving is a POST request with a single JSON object within the message body.</p>\n<p>Example of a POST request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"TransactionType\": \"C\",\n  \"ReferenceNumber\": 1,\n  \"InteracReferenceNumber\": \"CAmhEZYS\",\n  \"StatusCode\": \"C\",\n  \"ETrasnsferStatusCode\": \"10\",\n  \"StatusChangeDateTime\": \"2021-11-24T09:42:10.0868458Z\",\n  \"PayeeName\": \"Test Customer\",\n  \"PayeeEmail\": \"test@test.com\",\n  \"TransactionAmount\": 10\n}\n\n</code></pre><h3 id=\"retries\">Retries</h3>\n<p>DCBank's webhook API call expects to receive a <code>2xx</code> response from your webhook endpoint. If a <code>3xx</code>, <code>4xx</code>, or <code>5xx</code> result is returned the event will be stored and replayed at set intervals until received or 5 retries are exceeded. DCBank implements an incremental backoff pattern.</p>\n<p>Retries will be performed as follows:</p>\n<ol><li><div>Immediate</div></li><li><div>120 seconds</div></li><li><div>300 seconds</div></li><li><div>900 seconds</div></li><li><div>1800 seconds</div></li><li><div>3600 seconds</div></li></ol>\n\n<h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>November 21</td>\n<td>TBD</td>\n</tr>\n<tr>\n<td>v1.1</td>\n<td>October 22</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2d124abd-4e0e-4b32-b1f5-456a65db2433","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Wire","item":[{"name":"Create Wire Transfer Transaction","id":"bd7d7e4c-e1c0-4747-8a08-4db7c0dd58a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountId\": \"20174\",\r\n    \"CountryName\": \"Canada\",\r\n    \"BankCountryName\": \"Canada\",\r\n    \"BeneficiaryTemplate\": {\r\n        \"CompanyName\": \"Efe\",\r\n        \"Name\": \"faik\",\r\n        \"MiddleName\": \"iso\",\r\n        \"LastName\": \"degirmenci\",\r\n        \"AddressLine1\": \"sdfdsffs\",\r\n        \"AddressLine2\": \"dfsdfsfsdfs\",\r\n        \"ZipCode\": \"N8P 1H5\",\r\n        \"ProvinceName\": \"Ontario\",\r\n        \"CityName\": \"Acton\",\r\n        \"AccountNumber\": \"97770136436\",\r\n        \"BankInstitution\": \"TR48000000000012313131231231111131\",\r\n        \"BankName\": \"GARANTI\",\r\n        \"BankTransitNumber\": \"12345\",\r\n        \"BankSwiftCode\": \"TAGRISXXX\",\r\n        \"BankAddressLine1\": \"fsgsdfdsg\",\r\n        \"BankAddressLine2\": \"fddsgdsgdsgdfgd\",\r\n        \"BankZipCode\": \"34283\",\r\n        \"BankProvinceName\": \"Ontario\",\r\n        \"BankCityName\": \"Acton\",\r\n        \"Alias\": \"sdfsgsdfs\"\r\n    },\r\n    \"Amount\": \"120\",\r\n    \"PurposeOfWire\": \"fhgfgdgr\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/WireTransfer/CreateWireTransferTransaction","description":"<p>This API creates a wire transfer transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Transactions unique reference number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SwiftReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Swift reference number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Transaction begin date.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Transaction end date.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClientName</td>\n<td><em>String</em></td>\n<td>The name of the client initiating the wire transfer.</td>\n</tr>\n<tr>\n<td>SenderName</td>\n<td><em>String</em></td>\n<td>The sending name of the agent initiating the wire transfer.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique transaction reference number.</td>\n</tr>\n<tr>\n<td>SwiftReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique SWIFT reference number.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td><em>String</em></td>\n<td>Insert User.</td>\n</tr>\n<tr>\n<td>FromAccountNumber</td>\n<td><em>Long</em></td>\n<td>The account number in which funds are flowing from.</td>\n</tr>\n<tr>\n<td>ToAccountNumber</td>\n<td><em>String</em></td>\n<td>The account number in which funds are flowing into.</td>\n</tr>\n<tr>\n<td>ToIBAN</td>\n<td><em>String</em></td>\n<td>The IBAN of the beneficiary account.</td>\n</tr>\n<tr>\n<td>Direction</td>\n<td><em>String</em></td>\n<td>The direction of funds. Whether domestic or international.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td><em>String</em></td>\n<td>The status of the wire transfer.</td>\n</tr>\n<tr>\n<td>MessageType</td>\n<td><em>String</em></td>\n<td>The message type.</td>\n</tr>\n<tr>\n<td>DateRequest</td>\n<td><em>DateTime</em></td>\n<td>The date the wire transfer was requested.</td>\n</tr>\n<tr>\n<td>ValueEffective</td>\n<td><em>DateTime</em></td>\n<td>The date the wire transfer is effective.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the wire transfer.</td>\n</tr>\n<tr>\n<td>FeeAmount</td>\n<td><em>Decimal</em></td>\n<td>Any fees associated with a wire transfer.</td>\n</tr>\n<tr>\n<td>CurrencyName</td>\n<td><em>String</em></td>\n<td>The name of the currency in which funds are being sent.</td>\n</tr>\n<tr>\n<td>Remittance</td>\n<td><em>String</em></td>\n<td>Any remittance information if necessary.</td>\n</tr>\n<tr>\n<td>PurposeOfWire</td>\n<td><em>String</em></td>\n<td>The purpose of the wire transfer.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateOutgoingWireTransferOpE1</td>\n<td>Request Is Empty.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE2</td>\n<td>Request Beneficiary Information Is Empty.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE3</td>\n<td>Request Beneficiary Information Is Empty.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE4</td>\n<td>Currency Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE5</td>\n<td>Bank Account Program Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE6</td>\n<td>Default Account That Is Related With The Program Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE8</td>\n<td>Country Code Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE9</td>\n<td>Client Information Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE10</td>\n<td>Fee Type parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE11</td>\n<td>Settlement Account Information Could Not Be Retrieved.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE12</td>\n<td>Requested Currency Is Not Available.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE14</td>\n<td>FX Conversion Failed.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE15</td>\n<td>FX Conversion Failed.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE17</td>\n<td>Credit Transaction Type Parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE18</td>\n<td>API Transaction Source Parameter Not Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE19</td>\n<td>Customer Accounts Have Insufficient Balance.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE20</td>\n<td>Customer Accounts Have Insufficient Balance.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE21</td>\n<td>Client Not Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE50</td>\n<td>Beneficiary Currency Not Found.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE51</td>\n<td>Swift Code Is Empty.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE52</td>\n<td>Remittance Infomation Contains An Invalid Character.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE60</td>\n<td>Country Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE61</td>\n<td>Please Write Country Name Correctly.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE62</td>\n<td>Bank Country Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE63</td>\n<td>Please Write The Bank Country Name Correctly.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE64</td>\n<td>City Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE65</td>\n<td>Please Write The City Name Correctly.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE66</td>\n<td>Bank City Name Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE67</td>\n<td>Please Write The Bank City Name Correctly.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE69</td>\n<td>Please Write The Province Name Correctly.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE71</td>\n<td>Please Write The Bank Province Name Correctly.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE72</td>\n<td>ZipCode And Bank ZipCode Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE73</td>\n<td>Bank Swift Code Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE74</td>\n<td>Address Line 1 And Bank Address Line 1 Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE75</td>\n<td>Address Line 1 And Bank Address Line 1 Must Not Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE76</td>\n<td>Bank Institution Must Not Exceed 34 Characters.</td>\n</tr>\n<tr>\n<td>CreateOutgoingWireTransferOpE77</td>\n<td>Address Line 1 And Bank Address Line 1 Cannot Be Null.</td>\n</tr>\n<tr>\n<td>SecurityAccount02</td>\n<td>Security Account Can Not Be Used To Create A Wire Transfer.</td>\n</tr>\n<tr>\n<td>SecurityAccount01</td>\n<td>Security Account Type Not Found.</td>\n</tr>\n<tr>\n<td>RejectedSubmitOutgoingWire</td>\n<td>Requested Beneficiary Country Is Blacklisted.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","WireTransfer","CreateWireTransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6ff681b5-93eb-4fb1-9e81-70491847a64b","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountId\": \"20174\",\r\n    \"CountryName\": \"Canada\",\r\n    \"BankCountryName\": \"Canada\",\r\n    \"BeneficiaryTemplate\": {\r\n        \"CompanyName\": \"Efe\",\r\n        \"Name\": \"faik\",\r\n        \"MiddleName\": \"iso\",\r\n        \"LastName\": \"degirmenci\",\r\n        \"AddressLine1\": \"sdfdsffs\",\r\n        \"AddressLine2\": \"dfsdfsfsdfs\",\r\n        \"ZipCode\": \"N8P 1H5\",\r\n        \"ProvinceName\": \"Ontario\",\r\n        \"CityName\": \"Acton\",\r\n        \"AccountNumber\": \"97770136436\",\r\n        \"BankInstitution\": \"TR48000000000012313131231231111131\",\r\n        \"BankName\": \"GARANTI\",\r\n        \"BankTransitNumber\": \"12345\",\r\n        \"BankSwiftCode\": \"TAGRISXXX\",\r\n        \"BankAddressLine1\": \"fsgsdfdsg\",\r\n        \"BankAddressLine2\": \"fddsgdsgdsgdfgd\",\r\n        \"BankZipCode\": \"34283\",\r\n        \"BankProvinceName\": \"Ontario\",\r\n        \"BankCityName\": \"Acton\",\r\n        \"Alias\": \"sdfsgsdfs\"\r\n    },\r\n    \"Amount\": \"120\",\r\n    \"PurposeOfWire\": \"fhgfgdgr\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/WireTransfer/CreateWireTransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jun 2022 17:23:14 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"UniqueClientId\": 22,\n        \"UniqueClient\": {\n            \"ClientTypeId\": 8012,\n            \"ClientType\": {\n                \"ParameterCode\": \"ClientType\",\n                \"ParameterValue\": \"C\",\n                \"ParameterValue2\": \"C\",\n                \"ParameterValue3\": \"D\",\n                \"ParameterValue4\": \"2\",\n                \"ParameterValue5\": null,\n                \"ParameterValue6\": null,\n                \"ParameterDesc\": \"Corporate\",\n                \"Id\": 8012,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 1,\n                \"InsertDateTime\": \"2018-10-22T00:00:00\",\n                \"InsertUserId\": null,\n                \"InsertUser\": \"selami\",\n                \"UpdateDateTime\": null,\n                \"UpdateUser\": null,\n                \"UpdateUserId\": null,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": null\n            },\n            \"UniqueClientId\": 500013,\n            \"ClientName\": \"Demo Financial\",\n            \"OrganizationUniqueId\": 5000,\n            \"Id\": 22,\n            \"IsRecordValid\": true,\n            \"RecordVersion\": 637818112679820770,\n            \"InsertDateTime\": \"2019-08-28T15:23:14.723\",\n            \"InsertUserId\": 66,\n            \"InsertUser\": \"sean2@dcbank.ca\",\n            \"UpdateDateTime\": \"2022-03-02T09:47:47.983\",\n            \"UpdateUser\": \"gulcin@dcbank.ca\",\n            \"UpdateUserId\": 59,\n            \"ShadowInsertUserId\": null,\n            \"ShadowUpdateUserId\": 0\n        },\n        \"TransactionId\": 20413470,\n        \"Transaction\": {\n            \"ReferenceNumber\": 100000000127997269,\n            \"ProgramId\": 41,\n            \"Program\": {\n                \"IsActive\": true,\n                \"ParentId\": 39,\n                \"Parent\": {\n                    \"IsActive\": false,\n                    \"ParentId\": 2,\n                    \"Parent\": {\n                        \"IsActive\": false,\n                        \"ParentId\": 0,\n                        \"Parent\": null,\n                        \"IsService\": false,\n                        \"IsVisible\": true,\n                        \"IsSupportWeighted\": false,\n                        \"Description\": \"BANK PROGRAMS\",\n                        \"IsLeaf\": false,\n                        \"ProgramCode\": \"BNK_PRG\",\n                        \"Id\": 2,\n                        \"IsRecordValid\": true,\n                        \"RecordVersion\": 1,\n                        \"InsertDateTime\": \"2018-10-24T00:00:00\",\n                        \"InsertUserId\": null,\n                        \"InsertUser\": \"selami\",\n                        \"UpdateDateTime\": null,\n                        \"UpdateUser\": null,\n                        \"UpdateUserId\": null,\n                        \"ShadowInsertUserId\": null,\n                        \"ShadowUpdateUserId\": null\n                    },\n                    \"IsService\": false,\n                    \"IsVisible\": true,\n                    \"IsSupportWeighted\": false,\n                    \"Description\": \"Bank Programs\",\n                    \"IsLeaf\": true,\n                    \"ProgramCode\": \"BNK_PROGRAM\",\n                    \"Id\": 39,\n                    \"IsRecordValid\": true,\n                    \"RecordVersion\": 1,\n                    \"InsertDateTime\": \"2018-10-24T00:00:00\",\n                    \"InsertUserId\": null,\n                    \"InsertUser\": \"selami\",\n                    \"UpdateDateTime\": null,\n                    \"UpdateUser\": null,\n                    \"UpdateUserId\": null,\n                    \"ShadowInsertUserId\": null,\n                    \"ShadowUpdateUserId\": null\n                },\n                \"IsService\": false,\n                \"IsVisible\": true,\n                \"IsSupportWeighted\": false,\n                \"Description\": \"Bank Account\",\n                \"IsLeaf\": true,\n                \"ProgramCode\": \"BNKACCOUNT\",\n                \"Id\": 41,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 1,\n                \"InsertDateTime\": \"2019-01-14T00:00:00\",\n                \"InsertUserId\": null,\n                \"InsertUser\": \"\",\n                \"UpdateDateTime\": null,\n                \"UpdateUser\": null,\n                \"UpdateUserId\": null,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": null\n            },\n            \"Description\": \"$120 has been withdrawn from your account 196687743 for the Wire Transfer outgoing operation\",\n            \"IsAdjustmentRecord\": null,\n            \"TransactionReferenceNumber\": \"100000000127997269\",\n            \"UniqueClientId\": 22,\n            \"UniqueClient\": {\n                \"ClientTypeId\": 8012,\n                \"ClientType\": {\n                    \"ParameterCode\": \"ClientType\",\n                    \"ParameterValue\": \"C\",\n                    \"ParameterValue2\": \"C\",\n                    \"ParameterValue3\": \"D\",\n                    \"ParameterValue4\": \"2\",\n                    \"ParameterValue5\": null,\n                    \"ParameterValue6\": null,\n                    \"ParameterDesc\": \"Corporate\",\n                    \"Id\": 8012,\n                    \"IsRecordValid\": true,\n                    \"RecordVersion\": 1,\n                    \"InsertDateTime\": \"2018-10-22T00:00:00\",\n                    \"InsertUserId\": null,\n                    \"InsertUser\": \"selami\",\n                    \"UpdateDateTime\": null,\n                    \"UpdateUser\": null,\n                    \"UpdateUserId\": null,\n                    \"ShadowInsertUserId\": null,\n                    \"ShadowUpdateUserId\": null\n                },\n                \"UniqueClientId\": 500013,\n                \"ClientName\": \"Demo Financial\",\n                \"OrganizationUniqueId\": 5000,\n                \"Id\": 22,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637818112679820770,\n                \"InsertDateTime\": \"2019-08-28T15:23:14.723\",\n                \"InsertUserId\": 66,\n                \"InsertUser\": \"sean2@dcbank.ca\",\n                \"UpdateDateTime\": \"2022-03-02T09:47:47.983\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"UpdateUserId\": 59,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0\n            },\n            \"StoreId\": null,\n            \"Store\": null,\n            \"TransactionTypeId\": 6020,\n            \"TransactionType\": {\n                \"ParameterCode\": \"TransactionType\",\n                \"ParameterValue\": \"C\",\n                \"ParameterValue2\": \"1\",\n                \"ParameterValue3\": \"Credit\",\n                \"ParameterValue4\": \"1\",\n                \"ParameterValue5\": \"Sent\",\n                \"ParameterValue6\": \"Money Send\",\n                \"ParameterDesc\": \"Credit\",\n                \"Id\": 6020,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637203084191576012,\n                \"InsertDateTime\": \"2018-10-16T14:24:29.99\",\n                \"InsertUserId\": null,\n                \"InsertUser\": \"selami\",\n                \"UpdateDateTime\": \"2020-03-20T13:40:19.157\",\n                \"UpdateUser\": null,\n                \"UpdateUserId\": null,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": null\n            },\n            \"TransactionSourceId\": 12001,\n            \"TransactionSource\": null,\n            \"TransactionAmount\": 120,\n            \"TransactionDate\": \"2022-06-21T16:15:21.0289799Z\",\n            \"TransactionBalance\": null,\n            \"EodDate\": \"2022-06-21T16:15:21.0289768Z\",\n            \"FileId\": null,\n            \"File\": null,\n            \"FileName\": null,\n            \"IsEditable\": null,\n            \"IsRecurring\": null,\n            \"IsDeferred\": null,\n            \"IsSettled\": null,\n            \"SettlementDate\": \"0001-01-01T00:00:00\",\n            \"EntryTypeId\": null,\n            \"EditCount\": null,\n            \"ClientReferenceNumber\": \"100000000127997269\",\n            \"FeeAmount\": 19.99,\n            \"ClientCustomerId\": null,\n            \"ClientCustomer\": null,\n            \"AdjusmentTypeId\": null,\n            \"AdjusmentType\": null,\n            \"Id\": 20413470,\n            \"IsRecordValid\": true,\n            \"RecordVersion\": 637914249210319800,\n            \"InsertDateTime\": \"2022-06-21T16:15:21.0319185Z\",\n            \"InsertUserId\": 65,\n            \"InsertUser\": \"Test APi userfor train\",\n            \"UpdateDateTime\": null,\n            \"UpdateUser\": null,\n            \"UpdateUserId\": null,\n            \"ShadowInsertUserId\": 0,\n            \"ShadowUpdateUserId\": null\n        },\n        \"WireTransferMessageId\": null,\n        \"WireTransferMessage\": null,\n        \"WireBeneficiaryTemplateId\": 20288,\n        \"WireBeneficiaryTemplate\": {\n            \"IsTemplate\": false,\n            \"Alias\": \"sdfsgsdfs\",\n            \"TemplateName\": null,\n            \"UniqueClientId\": 22,\n            \"UniqueClient\": {\n                \"ClientTypeId\": 8012,\n                \"ClientType\": {\n                    \"ParameterCode\": \"ClientType\",\n                    \"ParameterValue\": \"C\",\n                    \"ParameterValue2\": \"C\",\n                    \"ParameterValue3\": \"D\",\n                    \"ParameterValue4\": \"2\",\n                    \"ParameterValue5\": null,\n                    \"ParameterValue6\": null,\n                    \"ParameterDesc\": \"Corporate\",\n                    \"Id\": 8012,\n                    \"IsRecordValid\": true,\n                    \"RecordVersion\": 1,\n                    \"InsertDateTime\": \"2018-10-22T00:00:00\",\n                    \"InsertUserId\": null,\n                    \"InsertUser\": \"selami\",\n                    \"UpdateDateTime\": null,\n                    \"UpdateUser\": null,\n                    \"UpdateUserId\": null,\n                    \"ShadowInsertUserId\": null,\n                    \"ShadowUpdateUserId\": null\n                },\n                \"UniqueClientId\": 500013,\n                \"ClientName\": \"Demo Financial\",\n                \"OrganizationUniqueId\": 5000,\n                \"Id\": 22,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637818112679820770,\n                \"InsertDateTime\": \"2019-08-28T15:23:14.723\",\n                \"InsertUserId\": 66,\n                \"InsertUser\": \"sean2@dcbank.ca\",\n                \"UpdateDateTime\": \"2022-03-02T09:47:47.983\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"UpdateUserId\": 59,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0\n            },\n            \"CompanyName\": \"Efe\",\n            \"Name\": \"faik\",\n            \"MiddleName\": \"iso\",\n            \"LastName\": \"degirmenci\",\n            \"AddressLine1\": \"sdfdsffs\",\n            \"AddressLine2\": \"dfsdfsfsdfs\",\n            \"ZipCode\": \"N8P 1H5\",\n            \"CityId\": 10252,\n            \"CityName\": \"Acton\",\n            \"City\": null,\n            \"ProvinceId\": 433,\n            \"ProvinceName\": \"Ontario\",\n            \"Province\": null,\n            \"CountryId\": 38,\n            \"Country\": {\n                \"Code\": \"1\",\n                \"IsoCode\": \"CAN\",\n                \"Name\": \"Canada\",\n                \"OrderIndex\": 0,\n                \"ISO2\": \"CA\",\n                \"IsoCodeNumeric\": \"124\",\n                \"IsCountryOfOperation\": false,\n                \"Id\": 38,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 1,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": null,\n                \"UpdateUser\": null,\n                \"UpdateUserId\": null,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": null\n            },\n            \"CurrencyId\": 26,\n            \"Currency\": {\n                \"IsActive\": true,\n                \"Description\": \"CAN - Canada\",\n                \"Code\": \"CAD\",\n                \"IsoCode\": \"124\",\n                \"Symbol\": \"$\",\n                \"Order\": 1000,\n                \"Id\": 26,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 637686026280550811,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n                \"UpdateUser\": \"gulcin@dcbank.ca\",\n                \"UpdateUserId\": 59,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": 0\n            },\n            \"BankName\": \"GARANTI\",\n            \"BankInstitution\": \"TR48000000000012313131231231111131\",\n            \"BankTransitNumber\": 12345,\n            \"BankBranchName\": null,\n            \"BankFinInsId\": null,\n            \"BankFinIns\": null,\n            \"BankBranchId\": null,\n            \"BankBranch\": null,\n            \"AccountNumber\": \"97770136436\",\n            \"BankSwiftCode\": \"TAGRISXXX\",\n            \"BankAddressLine1\": \"fsgsdfdsg\",\n            \"BankAddressLine2\": \"fddsgdsgdsgdfgd\",\n            \"BankZipCode\": \"34283\",\n            \"BankCityId\": 10252,\n            \"BankCity\": null,\n            \"BankProvinceId\": 433,\n            \"BankProvince\": null,\n            \"BankCountryId\": 38,\n            \"BankCountry\": {\n                \"Code\": \"1\",\n                \"IsoCode\": \"CAN\",\n                \"Name\": \"Canada\",\n                \"OrderIndex\": 0,\n                \"ISO2\": \"CA\",\n                \"IsoCodeNumeric\": \"124\",\n                \"IsCountryOfOperation\": false,\n                \"Id\": 38,\n                \"IsRecordValid\": true,\n                \"RecordVersion\": 1,\n                \"InsertDateTime\": null,\n                \"InsertUserId\": null,\n                \"InsertUser\": null,\n                \"UpdateDateTime\": null,\n                \"UpdateUser\": null,\n                \"UpdateUserId\": null,\n                \"ShadowInsertUserId\": null,\n                \"ShadowUpdateUserId\": null\n            },\n            \"BankCityName\": \"Acton\",\n            \"BankProvinceName\": \"Ontario\",\n            \"Id\": 20288,\n            \"IsRecordValid\": true,\n            \"RecordVersion\": 637914248957828245,\n            \"InsertDateTime\": \"2022-06-21T16:14:55.782774Z\",\n            \"InsertUserId\": 65,\n            \"InsertUser\": \"Test APi userfor train\",\n            \"UpdateDateTime\": null,\n            \"UpdateUser\": null,\n            \"UpdateUserId\": null,\n            \"ShadowInsertUserId\": 0,\n            \"ShadowUpdateUserId\": null\n        },\n        \"StatusId\": 26034,\n        \"Status\": null,\n        \"SubStatusId\": 26041,\n        \"SubStatus\": null,\n        \"MessageTypeId\": 26045,\n        \"MessageType\": null,\n        \"TransactionDirectionId\": 16308,\n        \"TransactionDirection\": null,\n        \"FileId\": null,\n        \"File\": null,\n        \"DateRequest\": \"2022-06-21T00:00:00Z\",\n        \"ValueEffective\": \"2022-06-21T00:00:00Z\",\n        \"ProcessedDate\": null,\n        \"BaseAmount\": 120,\n        \"OriginalAmount\": 120,\n        \"PurposeOfWire\": \"fhgfgdgr\",\n        \"CurrencyId\": 26,\n        \"Currency\": {\n            \"IsActive\": true,\n            \"Description\": \"CAN - Canada\",\n            \"Code\": \"CAD\",\n            \"IsoCode\": \"124\",\n            \"Symbol\": \"$\",\n            \"Order\": 1000,\n            \"Id\": 26,\n            \"IsRecordValid\": true,\n            \"RecordVersion\": 637686026280550811,\n            \"InsertDateTime\": null,\n            \"InsertUserId\": null,\n            \"InsertUser\": null,\n            \"UpdateDateTime\": \"2021-09-30T12:43:48.057\",\n            \"UpdateUser\": \"gulcin@dcbank.ca\",\n            \"UpdateUserId\": 59,\n            \"ShadowInsertUserId\": null,\n            \"ShadowUpdateUserId\": 0\n        },\n        \"AccountId\": 20174,\n        \"ReferenceNumber\": 100000000127997269,\n        \"DestinationAccountId\": 121,\n        \"SourceAccountId\": 20174,\n        \"TransactionCodeId\": 10002,\n        \"Id\": 333,\n        \"IsRecordValid\": true,\n        \"RecordVersion\": 637914289869584623,\n        \"InsertDateTime\": \"2022-06-21T17:23:06.9582839Z\",\n        \"InsertUserId\": 65,\n        \"InsertUser\": \"Test APi userfor train\",\n        \"UpdateDateTime\": null,\n        \"UpdateUser\": null,\n        \"UpdateUserId\": null,\n        \"ShadowInsertUserId\": 0,\n        \"ShadowUpdateUserId\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bd7d7e4c-e1c0-4747-8a08-4db7c0dd58a5"}],"id":"18f4e803-2436-422f-990f-468091997f07","_postman_id":"18f4e803-2436-422f-990f-468091997f07","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Tax","item":[{"name":"Create Or Update Franchisee","id":"de44587c-2b89-4a56-a4b4-f47dc565cc07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": 0,\r\n    \"FranchiseeName\": \"Anton's Franchisee & Company\",\r\n    \"OfficeId\": \"AN1T5\",\r\n    \"Address1\": \"735 Meridian Rd NE\",\r\n    \"Address2\": null,\r\n    \"ZipCode\": \"T2A2N7\",\r\n    \"CityId\": 10108, //Calmar\r\n    \"Email\": \"anton@dcbank.ca\",\r\n    \"PhoneCountryCodeId\": 38, // Canada\r\n    \"PhoneNumber\": \"987-123-4567\",\r\n    \"SharingPercentage\": 0.0575,\r\n    \"ExternalBankAccountName\": \"Test Account\",\r\n    \"FinancialInstitutionId\": 100,\r\n    \"FinancialInstitutionBranchId\": 8212,\r\n    \"AccountNumber\": \"345566543456\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/CreateOrUpdateFranchisee","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint makes an HTTP POST request to create or Update a new Franchise.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>If ID Is Equal Or Less 0 (Zero), A new franchisee will be created.  <br />If the ID is greater than 0 (Zero), The current franchisee Will be update by ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FranchiseeName</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Franchisee Name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OfficeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Inner Office ID Of Branch.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Business Address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Business Address (if applicable).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Zip Code (PostalCode).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>City ID. This value can be obtained using the <strong>Parameter -&gt; Address -&gt; Get City List By Province.</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Current email address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneCountryCodeId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Phone Country Code ID.  <br />This value can be obtained using the <strong>Parameter -&gt; Address -&gt; Get Country List</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Current Phone Number. May Contain Only numbers or the following symbols: '-', '/', '.'</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SharingPercentage</td>\n<td><em>Decimal</em></td>\n<td>#.####</td>\n<td>Sharing Percentage. Normal from 1.0000 to 0.0001 (from 100% to 0.01%).  <br />  <br />This valuye may not be greater than 100%.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExternalBankAccountName</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>External bank account name.  <br />  <br /><strong>If one of the External Bank fields contains null, 0 (zero) or empty, the External Bank Account Name will be set to “N/A”.</strong></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Indicates the Financial Institution's Bank Number.  <br />  <br />This value can be obtained using the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> API. The bank number can be retrieved using the body.  <br />  <br /><strong>If one of the External Bank fields contains null or 0 (zero) or empty, the Financial Institution ID will be set to 0.</strong></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialInstitutionBranchId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Indicates the transit number.  <br /><strong>This value can be obtained using the Parameter &gt; Account &gt; Get EFT Financial Institution Branch</strong> API. The Transit Number can be retrieved from the body.  <br />  <br /><strong>If one of the External Bank fields contains null or 0 (zero) or empty, the FinancialInstitutionBranchId will be set to 0.</strong></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Bank Account Number.  <br />  <br /><strong>If one of the External Bank fields contains null or 0 (zero) or empty, the AccountNumber will be set to “N/A”.</strong></td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<p>V1.0</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Item</td>\n<td><em>Int64</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-1\">Response</h4>\n<p>V1.1</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Item</td>\n<td><em>Object</em></td>\n<td></td>\n</tr>\n<tr>\n<td>Id</td>\n<td><em>Int64</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>KycStatus</td>\n<td><em>String</em></td>\n<td>'In review' or 'Approved'</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE1</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE2</td>\n<td>The Franchisee Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE3</td>\n<td>The Franchisee Name Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE4</td>\n<td>The Address 1 Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE5</td>\n<td>The Zip Code Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE6</td>\n<td>The City ID Does Not Match.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE7</td>\n<td>The Email Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE8</td>\n<td>The Phone Country Code ID Cannot Be Zero.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE9</td>\n<td>The Phone Number Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE12</td>\n<td>The Franchisee Name May Not Contain More Than 128 Characters, Including Spaces.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE13</td>\n<td>The External Bank Account Name May Not Contain More Than 150 Characters, Including Spaces.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE14</td>\n<td>The Account Number May Not Contain More Than 30 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE15</td>\n<td>The Phone Number Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE16</td>\n<td>The Phone Number Must Contain A Maximum Of 10 Digits.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE17</td>\n<td>The Address 1 May Not Contain More Than 256 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE18</td>\n<td>The Address 2 May Not Contain More Than 256 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE19</td>\n<td>The Zip Code May Not Contain More Than 40 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE20</td>\n<td>The Email May Not Contain More Than 128 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE21</td>\n<td>The Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE22</td>\n<td>The Financial Institution Branch ID And Financial Institution ID Do Not Match.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE23</td>\n<td>The Phone Country Code ID Does Not Match.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE24</td>\n<td>The Sharing Percentage Cannot Be Negative Or Greater than 100%.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE25</td>\n<td>The Account Number Must Contain Only Digits.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE28</td>\n<td>The Office ID Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE29</td>\n<td>The Office ID May Not Contain More Than 5 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeRequestInsertOrUpdateOpE30</td>\n<td>The Office ID Already Exists.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n<tr>\n<td>v1.1</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","CreateOrUpdateFranchisee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de44587c-2b89-4a56-a4b4-f47dc565cc07"},{"name":"Get All Franchisees","id":"bb789d64-24a9-4b26-81bf-ca229dc655d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetAllFranchisees","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint returns list of all Franchisees and their respective details.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The franchisee's unique identifier.</td>\n</tr>\n<tr>\n<td>FranchiseeName</td>\n<td><em>String</em></td>\n<td>The name of the franchisee.</td>\n</tr>\n<tr>\n<td>OfficeId</td>\n<td><em>String</em></td>\n<td>The office ID of the franchisee.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The franchisee's email address.</td>\n</tr>\n<tr>\n<td>Address</td>\n<td><em>String</em></td>\n<td>The address where the franchisee is located.</td>\n</tr>\n<tr>\n<td>Province</td>\n<td><em>String</em></td>\n<td>The province where the franchisee is located.</td>\n</tr>\n<tr>\n<td>City</td>\n<td><em>String</em></td>\n<td>The city where the franchisee is located.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The franchisee's phone number.</td>\n</tr>\n<tr>\n<td>SharingPercentage</td>\n<td><em>Decimal</em></td>\n<td>The franchisee's sharing percentage.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetAllFranchisees"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb789d64-24a9-4b26-81bf-ca229dc655d5"},{"name":"Get Franchisee By Id","id":"bbdcfdf9-3726-4044-8e0e-fb879e89c063","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetFranchiseeById","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint allows to retrieve Franchisee by a unique identifier</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Current Franchisee ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeGetByIdOpE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FranchiseeGetByIdOpE2</td>\n<td>The Franchisee Could Not Be Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetFranchiseeById"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbdcfdf9-3726-4044-8e0e-fb879e89c063"},{"name":"Delete Franchisee","id":"c5435de2-3611-4a8c-a324-3154b9df0327","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/DeleteFranchisee","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint deletes a specific Franchisee entry identified by its unique ID.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Current Franchisee ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeDelE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FranchiseeDelE2</td>\n<td>Franchisee Could Not Be Found.</td>\n</tr>\n<tr>\n<td>FranchiseeDelE3</td>\n<td>Franchisee Already Deleted.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","DeleteFranchisee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5435de2-3611-4a8c-a324-3154b9df0327"},{"name":"Create Or Update Franchisee Tax Prep Fee","id":"66abda53-9f0d-4efc-94df-340f03035a19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": 1,\r\n    \"AccountNumber\": 552696460,\r\n    \"TaxPrepFee\" : 180.00,\r\n    \"TaxYear\": 2025,\r\n    \"OfficeId\": \"AN1T5\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/CreateOrUpdateFranchiseeTaxPrepFee","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint makes an HTTP POST request to create or update a Franchisee Tax Prep Fee Record.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>If ID Is equal to or less than 0 (zero), a new franchisee tax prep free record will be created.  <br />If greater than 0 (zero), the current franchisee tax prep fee record will be updated by ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Business Address. Use the <strong>Find Account By Identity API.</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TaxPrepFee</td>\n<td><em>Decimal</em></td>\n<td>#######.##</td>\n<td>Tax Prep Fee</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OfficeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Inner Office ID Of Branch.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TaxYear</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>A Tax Year.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE1</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE2</td>\n<td>The Record Franchisee Tax Prep Fee Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE3</td>\n<td>The Office ID Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE4</td>\n<td>The Office ID May Not Contain Exceed 5 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE5</td>\n<td>The Account Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE6</td>\n<td>The Franchisee/Office Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE7</td>\n<td>The City ID Does Not Match.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE8</td>\n<td>This Franchisee/Office Already Has A Customer With This Account.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE9</td>\n<td>This Customer Is Already A Client Of Another Franchisee.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE10</td>\n<td>The Franchisee Tax Prep Fee Record Cannot Be Modified Because Its Status Is 'Partially Collected' Or 'Fully Collected'.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeRequestInsertOrUpdateOpE11</td>\n<td>The Tax Year Cannot Be More Than One Year In The Past Or Future.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","CreateOrUpdateFranchiseeTaxPrepFee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66abda53-9f0d-4efc-94df-340f03035a19"},{"name":"Get All Franchisee Tax Prep Fee","id":"934ab650-968f-45ba-8ce6-7b3d7ffec73a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetAllFranchiseeTaxPrepFee","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint returns list of all Franchisee Tax Prep Fee records</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetAllFranchiseeTaxPrepFee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"934ab650-968f-45ba-8ce6-7b3d7ffec73a"},{"name":"Get Franchisee Tax Prep Fee","id":"a78f65df-26a7-459e-b34c-6d1c3cb8b35b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountNumber\": 573568433,\r\n    \"TaxYear\": 2024,\r\n    \"OfficeId\": \"AK234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetFranchiseeTaxPrepFee","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint makes an HTTP POST request to return the Franchisee Tax Prep Fee record.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountNumber</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Account Number.  <br />This value can be obtained bu using the <strong>Find Account By Identity</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OfficeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Inner office ID of The bank branch.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TaxYear</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>The Tax year.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeTaxPrepFeeGetByOpE1</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeGetByOpE2</td>\n<td>The Account Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeGetByOpE3</td>\n<td>The Franchisee Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeGetByOpE4</td>\n<td>The Franchisee Tax Prep Fee Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>January 2025</td>\n<td>TBD.</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetFranchiseeTaxPrepFee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a78f65df-26a7-459e-b34c-6d1c3cb8b35b"},{"name":"Delete Franchisee Tax Prep Fee","id":"da20c49d-7a9e-436e-8e18-0234d0e7ebcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Id\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/DeleteFranchiseeTaxPrepFee","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint deletes a specific Franchisee Tax Prep Fee entry identified by its unique ID.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Current franchisee tax prep fee ID.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeTaxPrepFeeDelE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeDelE2</td>\n<td>The Record Of Franchisee Tax Prep Fee Could Not Be Found.</td>\n</tr>\n<tr>\n<td>FranchiseeTaxPrepFeeDelE3</td>\n<td>The Record Of Franchisee Tax Prep Fee Already Deleted!</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","DeleteFranchiseeTaxPrepFee"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"da20c49d-7a9e-436e-8e18-0234d0e7ebcf"},{"name":"Find By Identity","id":"f288a419-a298-41a0-a37d-a389962119b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"IdentityHexString\": \"852D6202C117C038DB8D104FF34E1368\",\r\n    \"SendCredential\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/FindByIdentity","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves the current customer information associated with a given secure identity by matching the hash of the secure identity provided in the request.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdentityHexString</td>\n<td><em>String</em></td>\n<td>32</td>\n<td>An MD5 hash in hexadecimal format is generated by combining data with secureSalt. To obtain your secureSalt, use the <strong>Franchisee -&gt; Get Secure Keys</strong> endpoint.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SendCredential</td>\n<td><em>Boolean</em></td>\n<td></td>\n<td>A <code>True</code> or <code>False</code> value.  <br />  <br />Emails the Customer their credentials <strong>only if</strong> they already exist in the database and are <strong>not inactive</strong>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdentityHashRequestE1</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>IdentityHashRequestE2</td>\n<td>Invalid Hash Format.</td>\n</tr>\n<tr>\n<td>FindAccountByIdentityOpE1</td>\n<td>Secure Identity Not Found.</td>\n</tr>\n<tr>\n<td>FindAccountByIdentityOpE2</td>\n<td>Account Number Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>November 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","FindByIdentity"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f288a419-a298-41a0-a37d-a389962119b5"},{"name":"Create Or Update Customer With Sin","id":"1be7d8e0-a6d6-4c2f-8523-1b8a48062404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountNumber\": 1230,\r\n    \"Name\": \"Anthony\",\r\n    \"MiddleName\": \"Ihorevych\",\r\n    \"SurName\": \"Palchyk\",\r\n    \"Email\": \"anthony.palchyk@gmail.com\",\r\n    \"Gender\": \"M\",\r\n    \"OccupationId\": 25126,\r\n    \"BirthDate\": \"1991-10-23\",\r\n    \"AddressLine1\": \"123 Central St\",\r\n    \"AddressLine2\": \"Unit 245\",\r\n    \"ZipCode\": \"A1A9Z9\",\r\n    \"CountryId\": 38,\r\n    \"ProvinceId\": 663,\r\n    \"CityId\": 10107,\r\n    \"PhoneCountryCodeId\": 38,\r\n    \"PhoneNumber\": \"3573881242\",\r\n    \"IdentityVerifiedBy\": \"Jonas Odoh\",\r\n    \"IdentityVerificationDate\": \"2024-12-10\",\r\n    \"IdentityTypeId\": 923137,\r\n    \"IdentityNumber\": \"936342971\",\r\n    \"IdentityExpireDate\": \"2027-10-23\",\r\n    \"productId\": 30,\r\n    \"RsaEncryptedIdentity\": \"NUWaUnLi8mVdaCjjuWWiT/QWxkWj0iAPwMupm8ZDPcbTCzzIqi1d3pBrg8W/IOwAfWjYw5ppPnc4IP2+1EM1jo1UHTOJwOj8VOahFVztwoilXgwOWGCgTb1D2vooC6ktWQDN/qLSWOc/z6H/LDcd98SxHfURF1p98pPAR2fZQ8EclzmdfifLOh2cjwyjDhPuxzW9n/VTf23ZJUBpgZmaatr4piLFfvv95b6/7d2GW//IHKCGpSzrsbafATIHSsi3Q8kTfhjyLLeyipSN/8abRY0tjcx8gej+9Dk3fQH25fryPDFPtoqqIXfA/lTDdy6i1ELVdOHP/oOFIWqlxRNmYg==\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/AddCustomerWithSin","description":"<h3 id=\"description\">Description</h3>\n<p>This API allows the user to Create or Update a customer using the customers SIN number.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountNumber</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>If the account number is <em>null, is equal to or less than 0 (zero)</em>, a new customer will be created.  <br />  <br />If the account number is <em>greater than 0 (zero),</em> the current customer will be updated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>First name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Surname</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Surname/last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Client's Email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Client's Gender: <code>M</code> - Male  <br /><code>F</code> - Female  <br /><code>O</code> - Other</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OccupationId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Occupation ID. Use the <strong>Parameter -&gt; Occupation -&gt; Get Occupation List</strong> API to obtain this information.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The date of birth.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Registered address</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Registered address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>Registered postal code (Canadian).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>City ID. Use <strong>Parameter -&gt; Address -&gt; Get City List By Province</strong> API to obtain this information.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneCountryCodeId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Phone Country Code ID. Use <strong>Parameter -&gt; Address -&gt; Get Country List</strong> API to obtain this information.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Phone Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityVerifiedBy</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Name of the person doing the identity verification.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The date the identity verification was completed.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityTypeId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Identity Type ID. Use the <strong>Get Identity Types</strong> API to obtained this information.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The number on the piece of identification provided.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Expiration date df the piece of identity.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Card produst ID. Use <strong>Wallet -&gt; Card -&gt; Card Product List</strong> API to obtained this information.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaEncryptedIdentity</td>\n<td><em>String</em></td>\n<td>512</td>\n<td>Encrypted SIP data using RSA 2024 technology with the public key provided to the user. To obtain the Public Key, use the  <br /><strong>Franchisee -&gt; Get Secure Keys</strong> API.  <br />  <br /><strong>Required</strong> if <strong>New Customer.</strong></td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeNewClientRequestNameValidation</td>\n<td>Name Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestNameValidation</td>\n<td>The First Name May Not Exceed 128 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestMiddleNameValidation</td>\n<td>The Middle Name May Not Exceed 128 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestSurNameValidation</td>\n<td>Surname Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestSurNameValidation</td>\n<td>The Last Name May Not Exceed 128 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestEmailValidation</td>\n<td>Email Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestEmailValidation</td>\n<td>The Email May Not Exceed 128 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestEmailValidation</td>\n<td>The Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestGenderValidation</td>\n<td>The Gender Field Must Contain Only Either 'M', 'F', Or 'O' (Case-Insensitive).</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestOccupationIdValidation</td>\n<td>Occupation ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>Date Of Birth Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>You Must Be At Least {minAge} Years Old.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>You May Not Be Older Than {maxAge} Years.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>Invalid Birthdate Format.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestAddressLine1Validation</td>\n<td>Address Line1 Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestAddressLine1Validation</td>\n<td>The Address Line 1 May Not Exceed 256 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestAddressLine2Validation</td>\n<td>The Address Line 2 May Not Exceed 256 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestZipCodeValidation</td>\n<td>Postal Code Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestZipCodeValidation</td>\n<td>Invalid Canadian Postal Code.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestCountryIdValidation</td>\n<td>Country ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestProvinceIdValidation</td>\n<td>Province ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestCityIdValidation</td>\n<td>City ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestPhoneCountryCodeIdValidation</td>\n<td>Phone Country Code ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestPhoneNumberValidation</td>\n<td>Phone Number Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestPhoneNumberValidation</td>\n<td>Phone Number Must Contain Exactly 10 Digits.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerifiedByValidation</td>\n<td>Identity Verified By Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerifiedByValidation</td>\n<td>The Identity Verified By May Not Contain More Than 100 Characters!</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerificationDateValidation</td>\n<td>The Verification Date Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerificationDateValidation</td>\n<td>The Verification Date Cannot Be In The Future.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerificationDateValidation</td>\n<td>The Verification Date Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityTypeIdValidation</td>\n<td>Identity Type ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityNumberValidation</td>\n<td>Identity Number Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityNumberValidation</td>\n<td>The Identity Number May Not Exceed 25 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityExpireDateValidation</td>\n<td>The Expiration Date Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityExpireDateValidation</td>\n<td>The Expiration Date Cannot Be In The Past.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityExpireDateValidation</td>\n<td>The Expiration Date Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequesProductIdValidation</td>\n<td>Product ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequesRsaEncryptedIdentityValidation</td>\n<td>The Provided String Is Not A Valid Base64-Encoded RSA-Encrypted Value.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequesRsaEncryptedIdentityValidation</td>\n<td>The Decoded Length Of The Encrypted String Does Not Match The Expected 2048 Bytes.</td>\n</tr>\n<tr>\n<td>FranchiseeNewCustomerEntityWithSinOpE1</td>\n<td>Invalid Account Number.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE1 (inner exception)</td>\n<td>Request Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE2 (inner exception)</td>\n<td>Client Secure Keys Not Found Or Is Invalid.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE3 (inner exception)</td>\n<td>RSA Key Not Found Or Is Invalid.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE4 (inner exception)</td>\n<td>The Identity May Contain Only Numeric Data!</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE5 (inner exception)</td>\n<td>The Customer With This Identity Already Exists.</td>\n</tr>\n<tr>\n<td>KycScreeningError01</td>\n<td>KYC Screening In Review.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For More Valid Addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","AddCustomerWithSin"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1be7d8e0-a6d6-4c2f-8523-1b8a48062404"},{"name":"Create Or Update Customer With Sin V2","id":"02cef979-355f-496e-90be-4bc5efaf0355","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountNumber\": null,\r\n    \"Name\": \"Test 1\",\r\n    \"MiddleName\": \"\",\r\n    \"SurName\": \"Trump\",\r\n    \"Email\": \"testecc65@dcbank.ca\",\r\n    \"Gender\": \"M\",\r\n    \"OccupationId\": 25126,\r\n    \"BirthDate\": \"1979-10-02\",\r\n    \"AddressLine1\": \"17 Shawinigan Way SW\",\r\n    \"AddressLine2\": \"\",\r\n    \"PostalCode\": \"T2Y2V5\",\r\n    \"CountryId\": 38,\r\n    \"ProvinceId\": 663,\r\n    \"CityId\": 10107,\r\n    \"MobilePhoneCountryId\": 38,\r\n    \"MobilePhoneNumber\": \"4032008583\",\r\n    \"HomePhoneCountryId\": 38,\r\n    \"HomePhoneNumber\": \"9999999999\",\r\n    \"IdentificationMethodId\": 107968,\r\n    \"IdentityVerifiedBy\": \"Jonas Odoh\",\r\n    \"IdentityVerificationDate\": \"2025-07-11\",\r\n    \"IdentityTypeId\": 923133,\r\n    \"IdentityNumber\": \"95376532\",\r\n    \"IdentityExpireDate\": \"2027-10-23\",\r\n    \"productId\": 115,\r\n    \"RsaEncryptedIdentity\": \"tmUHdPTjjt79nn/2/+POvILtoJ3W10m3JWzczageu6C4Vk46+jRyZ3Nkul96nzCAsR79tbj2bS8hdpgp8HZXDzcjf6NK3UtA6FBvZerAnZ9qe/KQEOha8AlOaxot8IPC3RKHWUzDwqhkJCq15VuKwk6qhn8Y9yrqs2olROJJO9I+cVfjTsR8slx0mQeiZctGNqYcVpxn3Iwi5ZlRSRgZ6Tyz3JSW4uRu961uPzpejBLm6HkK2rYq2lqK4dHO7dPiA1DIqe6IA6CrZvEYwM7hz0YmGMjxiDFzP533Pm6NWXnBQITiLcdfrT3c0OPKqHHYBVZ7WGwneC1maHHaO3As2A==\",\r\n     \"mailingAddressLine1\": \"mailingAddressLine1\",\r\n    \"mailingAddressLine2\": \"mailingAddressLine2\",\r\n    \"mailingCityId\": 80409,\r\n    \"mailingCountryId\": 38,\r\n    \"mailingProvinceId\": 674,\r\n    \"mailingPostalCode\": \"T2A 2N7\",\r\n    \"mailingPoBox\": \"mailingPOBox\",\r\n    \"AmericanTaxResident\": true,\r\n    \"TIN\": \"111111111\",\r\n    \"AmericanHasNoTIN\": null,\r\n    \"AmericanNoTinReasonId\": null,\r\n    \"AmericanNoTinOtherReason\": null,\r\n    \"ForeignTaxResident\": true,\r\n    \"FTIN\": \"22222222222\",\r\n    \"ForeignHasNoFTIN\": false,\r\n    \"ForeignNoFtinReasonId\": null,\r\n    \"ForeignNoFtinOtherReason\": null,\r\n    \"CountryOfIssueId\": null,\r\n    \"ProvinceOfIssueId\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v2.0/Franchisee/AddCustomerWithSin","description":"<h3 id=\"description\">Description</h3>\n<p>This API allows the user to Create or Update a customer using the customers SIN number.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountNumber</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>If the account number is <em>null, is equal to or less than 0 (zero)</em>, a new customer will be created.  <br />  <br />If the account number is <em>greater than 0 (zero),</em> the current customer will be updated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>First name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Middle name.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Surname</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Surname last name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>Client's email.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Client's Gender: <code>M</code> - Male  <br /><code>F</code> - Female  <br /><code>O</code> - Other</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IsCustomerPep</td>\n<td><em>Boolean</em></td>\n<td></td>\n<td>Indicates whether the customer is a Politically Exposed Person (PEP).  <br />Returns a <code>True</code> or <code>False</code> value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OccupationId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Occupation ID. Use the <strong>Parameter -&gt; Occupation -&gt; Get Occupation List</strong> API to obtain this value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>BirthDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The date of birth.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Registered address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Registered address.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>Registered Postal Code (Canadian).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>City ID.  <br />Use the <strong>Parameter -&gt; Address -&gt; Get City List By Province</strong> API to obtain this value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MailingAddressLine1</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates Address Line 1.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MailingAddressLine2</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates Address Line 2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MailingPostalCode</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>Indicates Postal Code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MailingCountryId</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>Indicates Country ID.  <br />Use the <strong>Parameter -&gt; Get Country List</strong> API to obtain this value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MailingProvinceId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates Province ID.  <br />Use the <strong>Parameter -&gt; Get Province List by Country</strong> API to obtain this value.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MailingCityId</td>\n<td><em>Integer</em></td>\n<td>7</td>\n<td>Indicates City ID. Use the <strong>Parameter -&gt; Get City List by Province</strong> API to obtain this information.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MailingPoBox</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Indicates PoBox.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MobilePhoneCountryId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Phone Country Code Id. Use <strong>Parameter -&gt; Address -&gt; Get Country List</strong> API to obtain this value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MobilePhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Phone Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>HomePhoneCountryId</td>\n<td><em>Integer</em></td>\n<td>3</td>\n<td>Use the <code>ID</code> value from the <strong>Parameters -&gt; Address -&gt; Get Country List</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>HomePhoneNumber</td>\n<td><em>String</em></td>\n<td>10</td>\n<td>Customer's home phone number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IdentityVerifiedBy</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>The name of the person doing to identity verification.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityVerificationDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The date that the ddentity verification was completed.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityTypeId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Identity Type ID. Use the <strong>Get Identity Types</strong> A</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The number on the proof of identity that was provided.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>IdentityExpireDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Expiration date of the proof of identification.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CountryOfIssueId</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>Indicates Country ID of Issue.  <br />Use the <strong>Parameter -&gt; Get Country List</strong> API to obtain this value.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ProvinceOfIssueId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates Province ID of Issue.  <br />Use the <strong>Parameter -&gt; Get Province List by Country</strong> API to obtain this information.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ProductId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Card produst ID. Use <strong>Wallet -&gt; Card -&gt; Card Product List</strong> API to obtain this value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RsaEncryptedIdentity</td>\n<td><em>String</em></td>\n<td>512</td>\n<td>Encrypted SIP data using RSA 2024 technology with the public key provided to you.  <br />To obtain your Public Key, use the  <br /><strong>Franchisee -&gt; Get Secure Keys</strong> API.  <br />  <br /><strong>Required i</strong>f new customer.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CanadianTaxResident</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the card holder is a Canadian Tax Resident.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>SIN</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Canadian Social Insurance Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AmericanTaxResident</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the card holder is an American Resident.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TIN</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>American Tax Identification Number.  <br />  <br /><code>True</code> or <code>False</code> value.  <br />  <br />This value can be provided only if American Tax Resident is <code>True</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td></td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the American has no Tax Identification Number.  <br />  <br /><code>True</code> or <code>False</code> value.  <br />  <br />This value can be set to T<code>rue</code> only if American Tax Resident is <code>True</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AmericanNoTinReasonId</td>\n<td><em>String</em></td>\n<td></td>\n<td>Use the ID value obtained using the <strong>Parameter -&gt; Tax Questionnaire -&gt; Get Reason List</strong> API.  <br />  <br /><strong>Required</strong> if American Has No TIN is <code>True</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AmericanNoTinOtherReason</td>\n<td><em>String</em></td>\n<td>60</td>\n<td><strong>Required</strong> if American No Tin Reason Id = <code>Other Reason</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>ForeignTaxResident</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates whether the card holder is a Foreign Resident or not.  <br />  <br /><code>True</code> or <code>False</code> value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FTIN</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>Foreign Tax Identification Number.  <br />  <br />This value can be provided only if Foreign Tax Resident is <code>true</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ForeignHasNoFTIN</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates Foreign Resident has no Tax Identification Number.  <br />  <br /><code>True</code> or <code>False</code> value.  <br />  <br />This value can be set to <code>true</code> only if Foreign Tax Resident is <code>true</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ForeignNoFtinReasonId</td>\n<td><em>String</em></td>\n<td></td>\n<td>Use the ID value from the <strong>Parameter -&gt; Tax Questionnaire -&gt; Get Reason List</strong> API.  <br />  <br /><strong>Required</strong> if Foreign Has No FTIN = <code>True</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>ForeignNoFtinOtherReason</td>\n<td><em>String</em></td>\n<td>60</td>\n<td><strong>Required</strong> if Foreign No Ftin Reason ID = <code>Other Reason</code>.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeNewClientRequestNameValidation</td>\n<td>Name Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestNameValidation</td>\n<td>The Name Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestMiddleNameValidation</td>\n<td>The Middle Name Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestSurNameValidation</td>\n<td>Surname Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestSurNameValidation</td>\n<td>The Surname Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestEmailValidation</td>\n<td>Email Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestEmailValidation</td>\n<td>The Email Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestEmailValidation</td>\n<td>The Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestGenderValidation</td>\n<td>The Gender Field Must Contain Only Either 'M', 'F', Or 'O' (Case-Insensitive).</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestOccupationIdValidation</td>\n<td>Occupation ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>Birthdate Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>You Must Be At Least {minAge} Years Old.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>You Cannot Be Older Than {maxAge} Years.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestBirthDateValidation</td>\n<td>Invalid Birthdate Format.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestAddressLine1Validation</td>\n<td>Address Line 1 Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestAddressLine1Validation</td>\n<td>The Address Line 1 Cannot Exceed 256 Characters</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestAddressLine2Validation</td>\n<td>The Address Line 2 Cannot Exceed 256 Characters</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestZipCodeValidation</td>\n<td>Postal Code Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestZipCodeValidation</td>\n<td>Invalid Canadian Postal Code.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestCountryIdValidation</td>\n<td>Country ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestProvinceIdValidation</td>\n<td>Province ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestCityIdValidation</td>\n<td>City ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestPhoneCountryCodeIdValidation</td>\n<td>Phone Country Code ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestPhoneNumberValidation</td>\n<td>Phone Number Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestPhoneNumberValidation</td>\n<td>Phone Number Must Contain Exactly 10 Digits.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerifiedByValidation</td>\n<td>Identity Verified By Field Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerifiedByValidation</td>\n<td>The Identity Verified Cannot Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerificationDateValidation</td>\n<td>The Verification Date Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerificationDateValidation</td>\n<td>The Verification Date Cannot Be In The Future.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityVerificationDateValidation</td>\n<td>The Verification Date Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityTypeIdValidation</td>\n<td>Identity Type ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityNumberValidation</td>\n<td>Identity Number Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityNumberValidation</td>\n<td>The Identity Number Cannot Exceed 25 Characters.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityExpireDateValidation</td>\n<td>The Expiration Date Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityExpireDateValidation</td>\n<td>The Expiration Date Cannot Be In The Past.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestIdentityExpireDateValidation</td>\n<td>The Expiration Date Format Is Invalid.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequesProductIdValidation</td>\n<td>Product ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequesRsaEncryptedIdentityValidation</td>\n<td>The Provided String Is Not A Valid Base64-Encoded RSA-Ecrypted Value.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequesRsaEncryptedIdentityValidation</td>\n<td>The Decoded Length Of The Encrypted String Does Not Match The Expected 2048 Bytes.</td>\n</tr>\n<tr>\n<td>FranchiseeNewClientRequestValidaton</td>\n<td>Intended Use ID Is Required.</td>\n</tr>\n<tr>\n<td>FranchiseeNewCustomerEntityWithSinOpE1</td>\n<td>Invalid Account Number.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE1 (inner exception)</td>\n<td>Request Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE2 (inner exception)</td>\n<td>Client Secure Keys Not Found Or Is Invalid.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE3 (inner exception)</td>\n<td>RSA Key Not Found Or Is Invalid.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE4 (inner exception)</td>\n<td>The Identity Must Contain Only Numeric Data.</td>\n</tr>\n<tr>\n<td>SecureIdentityNewEntityE5 (inner exception)</td>\n<td>The Customer With This Identity Already Exists.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v2.0","Franchisee","AddCustomerWithSin"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02cef979-355f-496e-90be-4bc5efaf0355"},{"name":"Get Secure Keys","id":"de3538f2-b651-41b0-86f1-50250818a581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetSecureKeys","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint provides an RSA public key and a unique SecureSalt for secure encryption operations.</p>\n","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetSecureKeys"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de3538f2-b651-41b0-86f1-50250818a581"},{"name":"Get Identity Types","id":"c84ecfd4-c7a3-4185-9abb-9a0965af1c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetIdentityTypes","description":"<h3 id=\"description\">Description</h3>\n<p>This Endpoint Returns List Of All Identity Types and Details.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>Numeric</em></td>\n<td>The identity type identifier.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td><em>String</em></td>\n<td>The identiy type code.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the identity type code.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetIdentityTypes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c84ecfd4-c7a3-4185-9abb-9a0965af1c90"},{"name":"Get Fee Collection","id":"5cc9c9bb-b894-44b3-b62e-d9d0b93d400c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Year\": null,\r\n    \"OfficeId\": null,\r\n    \"PageNumber\": 1,\r\n    \"PageSize\": 1000\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/GetFeeCollection","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint retrieves a paginated list of fee collection records. It supports optional filtering based on specific criteria, allowing users to refine the results as needed. The maximum number of records is not more than 10000.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Year</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Specify the year (e.g., 2025) to retrieve records for a particular time frame.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OfficeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Specify a unique office identifier (e.g., “AN1T5”) to filter records specifically related to that office.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td><em>Integer</em></td>\n<td>9</td>\n<td>Define the current page to be extracted (e.g. 1 for the first page).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td><em>Integer</em></td>\n<td>9</td>\n<td>Specify the number of records per page (e.g., 1000), which ensures efficient handling of large datasets. The maximum is 10000. If the value is greater than 10000, the default value of 100 is set.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","GetFeeCollection"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cc9c9bb-b894-44b3-b62e-d9d0b93d400c"},{"name":"Set CRA Direct Deposit","id":"13e8a107-37a2-4d9d-8fee-65ed14b872d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountNumber\": 587907874,\r\n    \"OfficeId\": \"70754\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Franchisee/SetDirectDeposit","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint makes an HTTP POST request to create or update a Franchisee Tax Prep Fee Record.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountNumber</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>DC Bank Account Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OfficeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Inner Office ID Of Branch.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FranchiseeSetDirectDepositE1</td>\n<td>Office ID Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeSetDirectDepositE2</td>\n<td>Account Number Does Not Exist.</td>\n</tr>\n<tr>\n<td>FranchiseeSetDirectDepositE3</td>\n<td>The Request Already Exists. Please Wait For A Letter From CRA.</td>\n</tr>\n<tr>\n<td>FranchiseeSetDirectDepositE4</td>\n<td>SIN Does Not Exist.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>March 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Franchisee","SetDirectDeposit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13e8a107-37a2-4d9d-8fee-65ed14b872d6"}],"id":"7d0b73c2-8e84-4695-aca0-a12553a209ac","_postman_id":"7d0b73c2-8e84-4695-aca0-a12553a209ac","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"PSP","item":[{"name":"Manage Merchant","item":[{"name":"Create Merchant","item":[{"name":"Create Merchant","id":"bfd660d2-28d8-42b4-b5e1-b64e5b489810","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"LegalName\": \"Tyler Diane\",\r\n    \"ContactName\": \"Zachary Kelly\",\r\n    \"Email\": \"emailtestert3+450@gmail.com\",\r\n    \"Website\": \"www.rig.ca\",\r\n    \"IndustryId\":152,\r\n    \"Address1\": \"166 Countryway NW\",\r\n    \"Address2\": \"\",\r\n    \"ZipCode\": \"T3A 2F6\",\r\n    \"CityId\": 10108,\r\n    \"PhoneCountryCodeId\": 38,\r\n    \"PhoneNumber\": \"5872345348\",\r\n    \"VerificationType\": \"Sms\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateMerchant","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint makes an HTTP POST request to create a PSP (Payment Service Provider) merchant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The registered legal name of the client.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DBA</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The \"Doing Business As\" name, if applicable.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The primary contact's full name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The email address of the primary contact.  <br />  <br /><strong>Required</strong> if no phone number has been provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Website</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The client's website URL.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IndustryId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>The unique NAIC (National Association of Insurance Commissioners) identifier for the client.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>The Business Address.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Additions To Business Address (If Applicable).</td>\n<td></td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>The Postal Code.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>City ID. Use the<strong>Parameter -&gt; Address -&gt; Get City List By Province</strong> API to obtain this value.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneCountryCodeId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Phone Country Code ID. Use<strong>Parameter -&gt; Address -&gt; Get Country List</strong> API to obtain this information.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Current Phone Number. May Contain Only Numeric Value:  <br />'-', '/', '.'  <br />  <br /><strong>Required</strong> if no email has been provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>VerificationType</td>\n<td><em>String</em></td>\n<td>10</td>\n<td><strong>Preferred type of phone number verification</strong>  <br />Sms / Voice / null.  <br />  <br /><strong>Required</strong> if Phone Number is provided.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE1</td>\n<td>The Legal Name Cannot Be Null, Empty Or Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE2</td>\n<td>The Legal Name May Not Contain Non English Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE3</td>\n<td>The DBA May Not Contain Non English Characters And Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE4</td>\n<td>The Contact Name Cannot Be Null, Empty Or Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE5</td>\n<td>The Contact Name May Not Contain Non English Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE6</td>\n<td>Email Or Phone Number Cannot Both Be Null and Empty. At Least One Is Required.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE7</td>\n<td>The Email Format Invalid</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE8</td>\n<td>The Email Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE9</td>\n<td>The URL Format Invalid.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE10</td>\n<td>The Website URL Cannot Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE11</td>\n<td>The Industry Of Entity Does Not Match.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE12</td>\n<td>The Country Code ID Does Not Match.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE13</td>\n<td>The Phone Number Must Contain 10 Digits.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE14</td>\n<td>The Phone Number May Not Contain More Than 40 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE15</td>\n<td>The Address Line 1 Cannot Be Null, Empty Or Exceed 256 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE16</td>\n<td>The Address Line 2 Cannot Be Null. Empty Or Exceed 256 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE17</td>\n<td>The Postal Code Cannot Be Null. Empty Or Exceed 10 Characters. Includes 1 Space.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE18</td>\n<td>Invalid Postal Code. The Postal Code May Not Contain Special Characters Except Hyphen.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE19</td>\n<td>The City ID Does Not Match.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE21</td>\n<td>The Verification Type Must Be Either SMS or Voice.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address Verification Errors Found. Please Refer To The Errors List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List or Visit Canada Post For More Valid Addresses:  <br /><a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfd660d2-28d8-42b4-b5e1-b64e5b489810"},{"name":"Update Merchant","id":"1377ed6c-ae9a-4f3e-a66c-9cae60705870","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"17150000029\",\r\n    \"LegalName\": \"Antonio Autobody & Bro\",\r\n    \"DBA\": \"Anton Autobody Inc\",\r\n    \"ContactName\": \"Anton Adams\",\r\n    \"Email\": \"anton@dcbank.ca\",\r\n    \"Website\": \"www.abc.ca\",\r\n    \"IndustryId\": 200,\r\n    \"Address1\": \"4519 45 Ave NE\",\r\n    \"Address2\": \"\",\r\n    \"ZipCode\": \"T1Y2Z8\",\r\n    \"CityId\": 10107, //Calgary\r\n    \"PhoneCountryCodeId\": 38,\r\n    \"PhoneNumber\": \"399-123-2345\",\r\n    \"VerificationType\": \"Sms\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/UpdateMerchant","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint makes an HTTP POST request to update a PSP (Payment Service Provider) merchant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Friendly Merchant Identifier</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The registered legal name of the client</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DBA</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The \"Doing Business As\" name, if applicable</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The primary contact's full name</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The email address of the primary contact.  <br />  <br />Required if phone number has not been provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>Website</td>\n<td><em>String</em></td>\n<td>128</td>\n<td>The client's website URL</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IndustryId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>The unique NAIC (National Association of Insurance Commissioners) identifier for the client</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>The Business Address</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>256</td>\n<td>Additions To Business Address (If Applicable)</td>\n<td></td>\n</tr>\n<tr>\n<td>ZipCode</td>\n<td><em>String</em></td>\n<td>7</td>\n<td>The Postal Code</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>City Id. Use  <br /><strong>Parameter &gt; Address &gt; GetCountryList  <br />Parameter &gt; Address &gt; GetProvinceListByCountry  <br />Parameter &gt; Address &gt; GetCityListByProvince</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneCountryCodeId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td><strong>Phone Country Code Id. Use  <br />Parameter &gt; Address &gt; GetCountryList</strong></td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>Current Phone Number. May Contain Only Numeric, '-', '/', '.'  <br />  <br /><strong>Required</strong> if no email has been provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>VerificationType</td>\n<td><em>String</em></td>\n<td>10</td>\n<td><strong>Preferred type of phone number verification</strong>  <br />Sms / Voice / null.  <br />  <br /><strong>Required</strong> if Phone Number is provided.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE1</td>\n<td>The Legal Name Cannot Be Null, Empty Or Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE2</td>\n<td>The Legal Name May Not Contain Non English Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE3</td>\n<td>The DBA May Not Contain Non English Characters Or Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE4</td>\n<td>The Contact Name Cannot Be Null, Empty Or Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE5</td>\n<td>The Contact Name May Not Contain Non English Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE6</td>\n<td>Email Or Phone Number Cannot Both Be Null and Empty. At Least One Is Required.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE7</td>\n<td>The Email Format Invalid.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE8</td>\n<td>The Email May Not Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE9</td>\n<td>The URL Format Invalid.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE10</td>\n<td>The Website URL May Not Exceed 128 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE11</td>\n<td>The Industry Of Entity Does Not Match.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE12</td>\n<td>The Country Code Id Does Not Match.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE13</td>\n<td>The Phone Number Must Contain 10 Digits.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE14</td>\n<td>The Phone Number May Not Exceed 40 Characters.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE15</td>\n<td>The Address Line 1 Cannot Be Null, Empty Or Exceed 256 Characters!</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE16</td>\n<td>The Address Line 2 Cannot Be Null, Empty Or Exceed 256 Characters!</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE17</td>\n<td>The Postal Code Cannot Be Null, Empty Or Exceed 10 Characters, Including One Space.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE18</td>\n<td>Invalid Postal Code. The Postal Code May Not Contain Special Characters Except A Hyphen.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE19</td>\n<td>The City ID Does Not Match.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE20</td>\n<td>Merchant Number Must Be Supplied.</td>\n</tr>\n<tr>\n<td>PSPMerchantRequestInsertOrUpdateOpE21</td>\n<td>The Verification Type Must Be Either SMS or Voice.</td>\n</tr>\n<tr>\n<td>KycScreeningError02</td>\n<td>Internal Error.</td>\n</tr>\n<tr>\n<td>KycScreeningError03</td>\n<td>Please Try Again In 10 Minutes.</td>\n</tr>\n<tr>\n<td>KycScreeningError04</td>\n<td>Address Verification Errors Found. Please Refer To The Error List.</td>\n</tr>\n<tr>\n<td>KycScreeningError05</td>\n<td>Address Entered Is Invalid. Please Use A Suggested Address From The Parameter List Or Visit Canada Post For A List Of Valid Addresses: <a href=\"https://www.canadapost-postescanada.ca/ac/\">https://www.canadapost-postescanada.ca/ac/</a></td>\n</tr>\n<tr>\n<td>KycScreeningError06</td>\n<td>Address Verification Failed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","UpdateMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1377ed6c-ae9a-4f3e-a66c-9cae60705870"},{"name":"Get All Merchants","id":"01a1eb98-3512-4329-a13d-1082308505be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/GetAllMerchant","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint returns all of the client's merchants</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>The unique merchant number.</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating if the merchant is active or not.</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>The merchant legal name.</td>\n</tr>\n<tr>\n<td>CurrentStatus</td>\n<td><em>String</em></td>\n<td>The current status of the merchant.</td>\n</tr>\n<tr>\n<td>KycStatus</td>\n<td><em>String</em></td>\n<td>The current status of the merchants KYC check.</td>\n</tr>\n<tr>\n<td>IsRestrictedMerchant</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the merchant is restricted or not.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","GetAllMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"01a1eb98-3512-4329-a13d-1082308505be"},{"name":"Get Merchant By Number","id":"404fc0d3-c3f2-4c6b-a92e-441c987e9c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"M##########\"    \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/GetMerchantById","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint allows you to retrieve PSP (Payment Service Provider) merchant associated with a unique PSP merchant ID.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length/Format</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>A friendly identifier for the PSP merchant (Required if Id is empty).</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td><em>GUID</em></td>\n<td>The unique identifier.</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>The unique merchant number.</td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>String</em></td>\n<td>The merchant legal name.</td>\n</tr>\n<tr>\n<td>DBA</td>\n<td><em>String</em></td>\n<td>The \"Doing Business As\" name.</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td><em>String</em></td>\n<td>The merchant contact name.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>The email.</td>\n</tr>\n<tr>\n<td>Website</td>\n<td><em>String</em></td>\n<td>The URL.</td>\n</tr>\n<tr>\n<td>IndustryId</td>\n<td><em>Long</em></td>\n<td>The ID of the industry the merchant works in.</td>\n</tr>\n<tr>\n<td>PhoneCountryCodeId</td>\n<td><em>Long</em></td>\n<td>The phone country code.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The phone number, excluding country code.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td><em>String</em></td>\n<td>The merchant physical address.</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td><em>String</em></td>\n<td>The merchant physical address.</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td><em>String</em></td>\n<td>The postal code of the address.</td>\n</tr>\n<tr>\n<td>CityId</td>\n<td><em>Long</em></td>\n<td>The city in which the address is located.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>The payment type.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PSPMerchantGetByIdE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>PSPMerchantGetByIdE3</td>\n<td>The PSP Merchant Does Not Exist.</td>\n</tr>\n<tr>\n<td>PSPMerchantGetByIdE4</td>\n<td>Either ID or Merchant Number Must Be Provided.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","GetMerchantById"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"404fc0d3-c3f2-4c6b-a92e-441c987e9c12"},{"name":"Update Merchant Status","id":"b2e41cf7-82d4-4d3a-b92c-a18a8f9d2367","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"M##########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/UpdateMerchantActiveStatus","description":"<h3 id=\"activatedeactivate-psp-merchant\">Activate/Deactivate PSP Merchant</h3>\n<p>This endpoint is used to activate or deactivate a PSP (Payment Service Provider) merchant.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length/Format</th>\n<th>Description</th>\n<th>Required/Optonal</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td>string</td>\n<td>20</td>\n<td>A friendly identifier for the PSP merchant (required if Id is empty)</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantToggleStatusOpE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>MerchantToggleStatusOpE3</td>\n<td>The PSP Merchant Does Not Exist.</td>\n</tr>\n<tr>\n<td>MerchantToggleStatusOpE4</td>\n<td>Either ID or Merchant Number Must Be Provided.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","UpdateMerchantActiveStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2e41cf7-82d4-4d3a-b92c-a18a8f9d2367"},{"name":"Get Industry List","id":"c3e4c0aa-68b7-4d93-9958-3205253f4942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIndustryList","description":"<h3 id=\"description\">Description</h3>\n<p>The Get Industry List API retrieves the Industry Id value used in other APIs.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IndustryId</td>\n<td><em>Long</em></td>\n<td>Unique industry identifier.</td>\n</tr>\n<tr>\n<td>FirstLevel</td>\n<td><em>String</em></td>\n<td>General industry name.</td>\n</tr>\n<tr>\n<td>SecondLevel</td>\n<td><em>String</em></td>\n<td>In depth industry name.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","Parameter","GetIndustryList"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c2aecd55-97ed-4344-bad0-b6587a7ed1ad","name":"Get Industry of Entity List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/integrationapi/v1.0/Parameter/GetIndustryList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Nov 2024 21:46:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Server","value":"nginx/1.25.5","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": [\n        {\n            \"IndustryId\": 109,\n            \"FirstLevel\": \"Agriculture, forestry, fishing and hunting\",\n            \"SecondLevel\": \"Hunting and trapping\"\n        },\n        {\n            \"IndustryId\": 110,\n            \"FirstLevel\": \"Agriculture, forestry, fishing and hunting\",\n            \"SecondLevel\": \"Agriculture, forestry, and fishing\"\n        },\n        {\n            \"IndustryId\": 111,\n            \"FirstLevel\": \"Mining, quarrying, and oil and gas extraction\",\n            \"SecondLevel\": \"Mining, quarrying, and oil and gas extraction\"\n        },\n        {\n            \"IndustryId\": 112,\n            \"FirstLevel\": \"Utilities\",\n            \"SecondLevel\": \"Utilities\"\n        },\n        {\n            \"IndustryId\": 113,\n            \"FirstLevel\": \"Construction\",\n            \"SecondLevel\": \"Construction\"\n        },\n        {\n            \"IndustryId\": 114,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Tobacco manufacturing\"\n        },\n        {\n            \"IndustryId\": 115,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Cannabis product manufacturing\"\n        },\n        {\n            \"IndustryId\": 116,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Other manufacturing industries\"\n        },\n        {\n            \"IndustryId\": 117,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Explosives manufacturing\"\n        },\n        {\n            \"IndustryId\": 118,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Aerospace product and parts manufacturing\"\n        },\n        {\n            \"IndustryId\": 119,\n            \"FirstLevel\": \"Manufacturing\",\n            \"SecondLevel\": \"Linen and uniform supply\"\n        },\n        {\n            \"IndustryId\": 120,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Cigarette and tobacco product merchant wholesalers\"\n        },\n        {\n            \"IndustryId\": 121,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Cannabis merchant wholesalers\"\n        },\n        {\n            \"IndustryId\": 122,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Mineral, ore and precious metal merchant wholesalers\"\n        },\n        {\n            \"IndustryId\": 123,\n            \"FirstLevel\": \"Wholesale trade\",\n            \"SecondLevel\": \"Other mechant whoelsalers\"\n        },\n        {\n            \"IndustryId\": 124,\n            \"FirstLevel\": \"Retail trade\",\n            \"SecondLevel\": \"Cannabis retailers\"\n        },\n        {\n            \"IndustryId\": 125,\n            \"FirstLevel\": \"Retail trade\",\n            \"SecondLevel\": \"Other retailers\"\n        },\n        {\n            \"IndustryId\": 126,\n            \"FirstLevel\": \"Transportation and warehousing\",\n            \"SecondLevel\": \"Transportation and warehousing\"\n        },\n        {\n            \"IndustryId\": 127,\n            \"FirstLevel\": \"Information and cultural industries\",\n            \"SecondLevel\": \"Information and cultural industries\"\n        },\n        {\n            \"IndustryId\": 128,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Bank\"\n        },\n        {\n            \"IndustryId\": 129,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Money Service Business\"\n        },\n        {\n            \"IndustryId\": 130,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Payment Service Provider\"\n        },\n        {\n            \"IndustryId\": 131,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Payday Lender\"\n        },\n        {\n            \"IndustryId\": 132,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Virtual Assets Service Provider (Crypto)\"\n        },\n        {\n            \"IndustryId\": 133,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Credit Union and Cooperative\"\n        },\n        {\n            \"IndustryId\": 134,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Trust Company\"\n        },\n        {\n            \"IndustryId\": 135,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Loan Company\"\n        },\n        {\n            \"IndustryId\": 136,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Mortgage Loan Company\"\n        },\n        {\n            \"IndustryId\": 137,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Insurance Company\"\n        },\n        {\n            \"IndustryId\": 138,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Securities Firm\"\n        },\n        {\n            \"IndustryId\": 139,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Other Financial Institutions\"\n        },\n        {\n            \"IndustryId\": 140,\n            \"FirstLevel\": \"Finance and insurance\",\n            \"SecondLevel\": \"Commodity contracts dealing\"\n        },\n        {\n            \"IndustryId\": 141,\n            \"FirstLevel\": \"Other Real estate and rental and leasing\",\n            \"SecondLevel\": \"Other Real estate and rental and leasing\"\n        },\n        {\n            \"IndustryId\": 142,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Lessors of social housing projects\"\n        },\n        {\n            \"IndustryId\": 143,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Offices of real estate agents and brokers\"\n        },\n        {\n            \"IndustryId\": 144,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Real estate agents\"\n        },\n        {\n            \"IndustryId\": 145,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Offices of real estate brokers\"\n        },\n        {\n            \"IndustryId\": 146,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Real estate property managers\"\n        },\n        {\n            \"IndustryId\": 147,\n            \"FirstLevel\": \"Real estate and rental and leasing\",\n            \"SecondLevel\": \"Offices of real estate appraisers\"\n        },\n        {\n            \"IndustryId\": 148,\n            \"FirstLevel\": \"Professional, scientific and technical services\",\n            \"SecondLevel\": \"Legal services\"\n        },\n        {\n            \"IndustryId\": 149,\n            \"FirstLevel\": \"Professional, scientific and technical services\",\n            \"SecondLevel\": \"Accounting, tax preparation, bookkeeping and payroll services\"\n        },\n        {\n            \"IndustryId\": 150,\n            \"FirstLevel\": \"Professional, scientific and technical services\",\n            \"SecondLevel\": \"Other professional, scientific and technical services\"\n        },\n        {\n            \"IndustryId\": 151,\n            \"FirstLevel\": \"Management of companies and enterprises\",\n            \"SecondLevel\": \"Management of companies and enterprises\"\n        },\n        {\n            \"IndustryId\": 152,\n            \"FirstLevel\": \"Administrative and support, waste management and remediation services\",\n            \"SecondLevel\": \"Administrative and support, waste management and remediation services\"\n        },\n        {\n            \"IndustryId\": 153,\n            \"FirstLevel\": \"Educational services\",\n            \"SecondLevel\": \"Educational services\"\n        },\n        {\n            \"IndustryId\": 154,\n            \"FirstLevel\": \"Health care and social assistance\",\n            \"SecondLevel\": \"Health care and social assistance\"\n        },\n        {\n            \"IndustryId\": 155,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Performing arts, spectator sports and related industries\"\n        },\n        {\n            \"IndustryId\": 156,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Heritage institutions\"\n        },\n        {\n            \"IndustryId\": 157,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Other Amusement and recreation industries\"\n        },\n        {\n            \"IndustryId\": 158,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Gambling/Gaming industries\"\n        },\n        {\n            \"IndustryId\": 159,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Casinos\"\n        },\n        {\n            \"IndustryId\": 160,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Lotteries\"\n        },\n        {\n            \"IndustryId\": 161,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Casino hotels\"\n        },\n        {\n            \"IndustryId\": 162,\n            \"FirstLevel\": \"Arts, entertainment and recreation\",\n            \"SecondLevel\": \"Adult Entertainment\"\n        },\n        {\n            \"IndustryId\": 163,\n            \"FirstLevel\": \"Accommodation and food services\",\n            \"SecondLevel\": \"Accommodation and food services\"\n        },\n        {\n            \"IndustryId\": 164,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Religious, grant-making, civic, and professional and similar organizations\"\n        },\n        {\n            \"IndustryId\": 165,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Other Repair and maintenance\"\n        },\n        {\n            \"IndustryId\": 166,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Automotive repair and maintenance\"\n        },\n        {\n            \"IndustryId\": 167,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Car washes\"\n        },\n        {\n            \"IndustryId\": 168,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Personal and laundry services\"\n        },\n        {\n            \"IndustryId\": 169,\n            \"FirstLevel\": \"Other services (except public administration)\",\n            \"SecondLevel\": \"Private households\"\n        },\n        {\n            \"IndustryId\": 170,\n            \"FirstLevel\": \"Public administration\",\n            \"SecondLevel\": \"Public Administration (Canada)\"\n        },\n        {\n            \"IndustryId\": 171,\n            \"FirstLevel\": \"Public administration\",\n            \"SecondLevel\": \"International and other extra-territorial public administration\"\n        }\n    ],\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"c3e4c0aa-68b7-4d93-9958-3205253f4942"}],"id":"21818f15-0c4d-41e9-afae-d94e3fe8337f","_postman_id":"21818f15-0c4d-41e9-afae-d94e3fe8337f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Merchant Association","item":[{"name":"Create Merchant Association","id":"b02d7916-55ff-490d-b37c-2ec2fdaa1379","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"M##########\",\r\n    \"OriginatorShortName\": \"Exp Cmp Inc.\",\r\n    \"OriginatorLongName\": \"Example Company Inc.\",\r\n    \"PhoneNumber\": \"1582460246\",\r\n    \"AccountNumber\": 2496724962\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateMerchantIdentifiers","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint associates a Merchant with various key pieces in our system for incoming transaction processing, such as through EFTs and Interac e-Transfers. At least one association field must be done to use this API. Emails are automatically associated with the Merchant when using this API.</p>\n<p>Special Note: There can be no duplicate fields of any kind for Merchants. If a Merchant has AccountNumber 293852626 associated, no other Merchant may associate with that AccountNumber. However, a singular Merchant can have multiple AccountNumbers.</p>\n<p>Note: For EFTs, our system will check AccountNumber first, then OriginatorLongName, then OriginatorShortName</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length/Format</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>A unique identifier for the PSP merchant.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>255</td>\n<td><strong>ETRANSFER</strong>-The Email to be associated with the Merchant.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>**EFT-**The shortname of the original sender that a merchant will accept from.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>**EFT-**The shortname of the original sender that a merchant will accept from.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>30</td>\n<td><strong>ETRANSFER</strong>-The phone number to be associated with the Merchant.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Long</em></td>\n<td></td>\n<td><strong>BOTH</strong>-The account number to be associated with the Merchant.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateMerchantIdentifiersE01</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE02</td>\n<td>At Least One Field MUST Be Provided.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE03</td>\n<td>Merchant Number Must Be Provided.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE04</td>\n<td>The PSP Merchant Does Not Exist.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE06</td>\n<td>Email Validation Failed.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE07</td>\n<td>Email Cannot Exceed 255 Characters.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE08</td>\n<td>Only Canadian Phone Numbers Can Be Associated With Merchants.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE09</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE10</td>\n<td>Invalid Account Number.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE11</td>\n<td>Account Does Not Exist.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE12</td>\n<td>Originator Short Name Cannot Exceed 30 Characters.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE13</td>\n<td>Originator Long Name Cannot Exceed 70 Characters.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE14</td>\n<td>Phone Number Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE15</td>\n<td>Originator Short Name Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE16</td>\n<td>Originator Long Name Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE17</td>\n<td>Account Number Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE18</td>\n<td>Email Is Already In Use By {MerchantNumber}.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateMerchantIdentifiers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b02d7916-55ff-490d-b37c-2ec2fdaa1379"},{"name":"Update Merchant Association","id":"fb3d6ba8-c682-4c09-909c-165731419d26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"###########\",\r\n    \"OldEmail\": \"OldEmail@Example.ca\",\r\n    \"NewEmail\": \"ExampleEmail@Example.ca\",\r\n    \"OldOriginatorShortName\": \"Old Cmp Inc.\",\r\n    \"NewOriginatorShortName\": \"Exp Cmp Inc.\",\r\n    \"OldOriginatorLongName\": \"Olden Company Inc.\",\r\n    \"NewOriginatorLongName\": \"Example Company Inc.\",\r\n    \"OldPhoneNumber\": \"0987654321\",\r\n    \"NewPhoneNumber\": \"1234567890\",\r\n    \"OldAccountNumber\": 99999999,\r\n    \"NewAccountNumber\": 11111111\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/UpdateMerchantIdentifiers","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint updates a Merchants information with various key pieces in our system for incoming transaction processing, such as through EFTs and Interac e-Transfers. At least one old/new association field must be done to use this API.</p>\n<p>Be advised that when updating a Merchant, all populated 'New' fields will apply to that record. For accurate results, populate all relevant 'old' fields.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>A unique identifier for the PSP merchant.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OldEmail</td>\n<td><em>String</em></td>\n<td>255</td>\n<td>**ETRANSFER-**The Email originally associated with the Merchant.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NewEmail</td>\n<td><em>String</em></td>\n<td>255</td>\n<td>**ETRANSFER-**The Email to be associated with the Merchant.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OldPhoneNumber</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>**ETRANSFER-**The phone number originally associated with the Merchant.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NewPhoneNumber</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>**ETRANSFER-**The phone number to be associated with the Merchant.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OldAccountNumber</td>\n<td><em>Long</em></td>\n<td></td>\n<td>The account number originally associated with the Merchant.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NewAccountNumber</td>\n<td><em>Long</em></td>\n<td></td>\n<td>The account number to be associated with the Merchant.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OldOriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>**EFT-**The shortname of the original sender that the merchant originally accepted from.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NewOriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>**EFT-**The shortname of the original sender that a merchant will accept from.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>OldOriginatorLongName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>**EFT-**The longname of the original sender that a merchant will accept from.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>NewOriginatorLongName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>**EFT-**The longname of the original sender that a merchant will accept from.</td>\n<td>Conditional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateMerchantIdentifiersE01</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE02</td>\n<td>At Least One Field MUST Be Porivded.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE03</td>\n<td>Merchant Number Must Be Provided.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE04</td>\n<td>The PSP Merchant Does Not Exist.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE05</td>\n<td>The PSP Merchant Identifier Does Not Exist. Please Create One.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE08</td>\n<td>Only Canadian Phone Numbers Can Be Associated With Merchants.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE09</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE10</td>\n<td>Invalid Account Number.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE11</td>\n<td>Account Does Not Exist.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE12</td>\n<td>Originator Short Name Cannot Exceed 30 Characters.</td>\n</tr>\n<tr>\n<td>CreateMerchantIdentifiersE13</td>\n<td>Originator Long Name Cannot Exceed 70 Characters.</td>\n</tr>\n<tr>\n<td>UpdateMerchantIdentifiersE14</td>\n<td>Phone Number Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>UpdateMerchantIdentifiersE15</td>\n<td>Email Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>UpdateMerchantIdentifiersE16</td>\n<td>Originator Short Name Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>UpdateMerchantIdentifiersE17</td>\n<td>Originator Long Name Is Already In Use By {MerchantNumber}.</td>\n</tr>\n<tr>\n<td>UpdateMerchantIdentifiersE18</td>\n<td>Account Number Is Already In Use By {MerchantNumber}.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","UpdateMerchantIdentifiers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb3d6ba8-c682-4c09-909c-165731419d26"},{"name":"Search Merchant Association","id":"48473e35-ab80-4206-9be0-a0f6c20844c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"M##########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/SearchMerchantIdentifiers","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint relays the MerchantIdentifer information belonging to a particular Merchant</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length/Format</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>A unique identifier for the PSP merchant.</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>A unique identifier for the PSP merchant.</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>The short name of the originator.</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>The long name of the originator.</td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td><em>String</em></td>\n<td>The phone number associated with the merchant.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>Long</em></td>\n<td>The account number associated with the merchant.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SearchMerchantIdentifiersE01</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>SearchMerchantIdentifiersE02</td>\n<td>Merchant Number Nust Contain A Value.</td>\n</tr>\n<tr>\n<td>SearchMerchantIdentifiersE03</td>\n<td>The PSP Merchant Identifier Does Not Exist. Please Create One.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","SearchMerchantIdentifiers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48473e35-ab80-4206-9be0-a0f6c20844c2"},{"name":"Delete Merchant Association","id":"c359b936-b0f0-4630-953b-ad13d6229cac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\": \"M##########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/DeleteMerchantIdentifiers","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint deletes a MerchantIdentifier, and renders that Merchant unable to accept incoming transactions again.</p>\n<p><strong>WARNING: CANNOT BE UNDONE</strong></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>A unique identifier for the PSP merchant.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DeleteMerchantIdentifiersE01</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>DeleteMerchantIdentifiersE02</td>\n<td>Merchant Number Must Contain A Value.</td>\n</tr>\n<tr>\n<td>DeleteMerchantIdentifiersE03</td>\n<td>The PSP Merchant Identifiers Does Not Exist. Please Create One.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","DeleteMerchantIdentifiers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c359b936-b0f0-4630-953b-ad13d6229cac"}],"id":"55a8afab-8040-4f4b-8773-c976ce94297f","_postman_id":"55a8afab-8040-4f4b-8773-c976ce94297f","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"85693cb6-8367-4cce-970d-b4d70c3b1840","_postman_id":"85693cb6-8367-4cce-970d-b4d70c3b1840","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Transactions","item":[{"name":"Held Transactions","item":[{"name":"Claim Held Transaction","id":"f149a8e7-8ae1-47ed-ac76-d5267411f7f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"MerchantNumber\":\"M07120000001\",\r\n    \"ReferenceNumber\":1000000000120848001\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/ClaimIncomingTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint claims an incoming transaction that has been withheld from the client and deposits the money to an appropriate account for an appropriate Merchant. To see the transactions that have been unclaimed, referto our Merchant Holding Transaction webhook or the Get Unclaimed Transactions endpoint.</p>\n<p>This API will automatically create a Merchant Association record, and will update relevant information based on past transaction history.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The Merchant who will be claiming the transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>The Reference Number of the original incoming transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClaimIncomingMerchantTransactionE01</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE02</td>\n<td>Merchant Number Cannot Be Null Or Empty.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE03</td>\n<td>Merchant Number Cannot Exceed 20 Characters.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE04</td>\n<td>Merchant Number Not Found.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE05</td>\n<td>Reference Number Must Be Valid.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE06</td>\n<td>Reference Number Not Found.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE09</td>\n<td>Transaction Already Completed.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE10</td>\n<td><em>Variable.</em></td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE11</td>\n<td>Transaction Not Found.</td>\n</tr>\n<tr>\n<td>ClaimIncomingMerchantTransactionE99</td>\n<td><em><strong>Variable, System Error.</strong></em></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","ClaimIncomingTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f149a8e7-8ae1-47ed-ac76-d5267411f7f1"},{"name":"Search Held Transaction","id":"91f15915-f74e-478d-928c-5dd408cddf87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"ReferenceNumber\": 100000000013881499\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/SearchHoldingTransactionStatus","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint gets the latest status and transaction details about a held transaction.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>The Reference Number of the original incoming transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>The unique reference number.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td><em>String</em></td>\n<td>The transation status.</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>The merchant number where the transaction took place.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\"><em>Version</em></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","PSPMerchant","SearchHoldingTransactionStatus"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91f15915-f74e-478d-928c-5dd408cddf87"},{"name":"Get Held Transactions","id":"808948ed-fc57-4a41-86d9-c00016cf8f6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/SearchUnclaimedHoldingTransactions","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoints gets the latest transactions that are being held and are not yet processed. Returns a maximum of 100 transactions</p>\n<h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>Long</em></td>\n<td>The unique reference number of the transaction.</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>The amount of the transaction.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>A description of the transaction.</td>\n</tr>\n<tr>\n<td>HoldingDescription</td>\n<td><em>String</em></td>\n<td>A description of the reason for holding the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\"><em>Version</em></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>April 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","SearchUnclaimedHoldingTransactions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"808948ed-fc57-4a41-86d9-c00016cf8f6a"}],"id":"4a4c1ff5-5dfd-4c03-89bb-4a2472118469","_postman_id":"4a4c1ff5-5dfd-4c03-89bb-4a2472118469","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"e-Transfer","item":[{"name":"Incoming e-Transfer","item":[{"name":"Complete Money Send Transfer With Merchant","id":"b9c6b088-ec50-489e-888e-a60c9652473e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"AccountId\": 231231,\r\n  \"ReferenceNumber\": \"CAxXxxX1\",\r\n  \"MerchantNumber\": \"M#########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CompleteTransfer","description":"<h3 id=\"description\">Description</h3>\n<p>The Complete Money Send Transfer API completes the incoming (Money Send) transfer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Long</em></td>\n<td></td>\n<td>The account to deposit the money to.  <br />  <br />Get the <em>Account ID</em> from the <strong>Get Client Accounts For Money Deposit</strong> endpoint.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td></td>\n<td>The alphanumeric string provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td></td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The Merchant to receive the incoming funds.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompleteTransferOpGetTransferE001</td>\n<td>Get Transfer Error : GetIncomingTransfers Error : Interac Response Description : 305 - Transfer reference number does not exist.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CompleteTransfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"44a7afd4-5f2f-4e77-a502-32f5e182f270","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"AccountId\": 12345,\n    \"ReferenceNumber\": \"CA12345Xy\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteTransfer"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"responseHeader\": {\n            \"responseCode\": 0\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"b9c6b088-ec50-489e-888e-a60c9652473e"},{"name":"Complete Money Request Transfer With Merchant","id":"bfc36e7d-2b9d-4525-983c-23e54c00223e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"ReferenceNumber\": \"string\",\r\n  \"AccountId\": 0,\r\n  \"MerchantNumber\": \"M##########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteIncomingMoneyRequests","description":"<h3 id=\"description\">Description</h3>\n<p>The Complete Money Request Transfer API completes the incoming (Money Request) transfer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountId</td>\n<td><em>Long</em></td>\n<td>-</td>\n<td>The account to withdrawl the money from.  <br />  <br />Get <em>Account ID</em> from the <strong>Get Client Accounts For Money Deposit</strong> endpoint.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The alphanumeric string provided by Interac (ETID).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The main interac email address of your client account.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The Merchant to receive the incoming funds.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompleteTransferOpGetTransferE002</td>\n<td>Security Account Type parameter Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CompleteTransferOpGetTransferE003</td>\n<td>Account Could Not Be Found.</td>\n</tr>\n<tr>\n<td>CompleteTransferOpGetTransferE004</td>\n<td>Account ID Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CompleteTransferOpGetTransferE005</td>\n<td>Security Account Is Not Available For Money Transfers. Please Select Another Account.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>The KYC Status. The Status Can Be <strong>Declined</strong> or <strong>In Review</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ETransfer","CompleteIncomingMoneyRequests"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6822ffb0-100e-4f68-bf14-54f0a028394c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"AccountId\": 12345,\n    \"ReferenceNumber\": \"CA12345Xy\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CompleteIncomingMoneyRequests"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Success\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"IsSucceeded\": true,\n        \"TransactionId\": 334802,\n        \"TransactionReferenceNumber\": 100000000125550660,\n        \"PayeeId\": 0,\n        \"TransactionDetailTableId\": 0,\n        \"ErrorDescription\": \"Success\",\n        \"ValidationCode\": null\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"bfc36e7d-2b9d-4525-983c-23e54c00223e"}],"id":"53879650-21b8-4283-9fc9-fb757a9cd53e","_postman_id":"53879650-21b8-4283-9fc9-fb757a9cd53e","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Outgoing e-Transfer","item":[{"name":"Create Etransfer Transaction With Merchant High 🔒","id":"3dd0e6f1-3cbd-451a-995e-bd06c2c38e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerName\": \"John Doe\",\r\n    \"email\": \"berkay.test@dcb.com\",\r\n    \"phoneCountryCode\": \"1\",\r\n    \"phoneNumber\": \"5555555555\",\r\n    \"priorityTypeCode\": \"0\",\r\n    \"transactionTypeCode\": \"C\",\r\n    \"amount\": 10,\r\n    \"dateOfFunds\": \"2023-06-13\",\r\n    \"description\": \"This is my memo\",\r\n    \"ClientReferenceNumber\": \"113ssqsaaasdaas3\",\r\n    \"CustomerStoreCode\": null,\r\n    \"MoneyReqExpDate\": \"2023-06-14\",\r\n    \"SecurityQuestion\": \"Hello?\",\r\n    \"SecurityQuestionAnswer\": \"Bye\",\r\n    \"TransferType\":0,\r\n    \"AccountNumber\":\"0\",\r\n    \"FinancialAccountId\":0,\r\n    \"MerchantNumber\": \"M###########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateEtransferTransactionWithCustomerHigh","description":"<h3 id=\"description\">Description</h3>\n<p>The Create ETransfer High Performance With Customer API creates an Interac e-transfer transaction using email or phone number. Once a transaction is received and submitted into our system the API will return with a XXX status for that transaction. It is recommended to use the Web Hooks to receive further status updates regarding the transaction.</p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates the customer name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>64</td>\n<td>Indicates the customer's email.  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The Phone Country Code. 1 if <strong>Canada</strong> or <strong>US</strong>.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Indicates the customer's phone number without Country Code.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The priority of the transaction.  <br />Priority Type Codes:  <br /><code>0</code> - Real Time  <br /><code>2</code> - Bulk Priority</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The notification type:  <br /><code>0</code> - Email  <br /><code>1</code> - SMS  <br />  <br />Default is <code>0</code> - Email.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>transactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Transaction Type Codes:  <br /><code>C</code> - Credit Transaction (Money Send)  <br /><code>D</code> - Debit Transaction (Money Request)</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.  <br />  <br />Must Be Greater Than 0.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>dateOfFunds</td>\n<td><em>DateTime</em></td>\n<td>yyyy-MM-dd  <br />OR  <br />yyyy-MM-ddThh:mm:ss.FFFZ</td>\n<td>The creation date of a transaction and it must be equal to or greater than the current date.  <br />  <br />If not provided, <em><strong>DateTime.UtcNow</strong></em> will be used by default.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>securityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.  <br />  <br /><strong>Required</strong> if Transaction Type Code is <code>C</code> and has <strong>no</strong> Direct Deposit Registration (DDR).</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>securityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>SecurityQuestionAnswer standards:  <br />-No spaces.  <br />-Length must be between 3 and 25 characters long.  <br />  <br /><strong>Required</strong> if Security Question is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Reference number supplied by user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MoneyReqExpDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-MM-dd  <br />OR  <br />yyyy-MM-ddThh:mm:ss.FFFZ</td>\n<td>The transaction's expiry date. This date value is in UTC.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransferType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Transfer Type is whether you're sending money via email/phone or via an account number.  <br /><code>0</code> - Default  <br /><code>1</code> - Account Deposit</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>Format:  <br />aaa - bbbbb - cccccccccccccccccccccccc  <br />  <br /><strong>WHERE:</strong>  <br /><code>aaa</code> is the Institution ID (max 3).  <br />  <br /><code>bbbbb</code> is the Transit Number (max 5).  <br />  <br /><code>cccccccccccccccccccccccc</code> is the bank account number (max 24)</td>\n<td><strong>Required</strong> If Transfer Type is <code>Account Deposit</code>.  <br />  <br />Note: <strong>Account Deposit Transfer</strong> type works only for <strong>Credit Transaction Types.</strong></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FinancialAccountId</td>\n<td><em>Numeric</em></td>\n<td></td>\n<td>The account ID that the money should be sent from.  <br />Account ID's can be retrieved using the <strong>Get All Account</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The Merchant to send the funds from.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsSucceeded</td>\n<td><em>Boolean</em></td>\n<td>A <code>True</code> or <code>False</code> value indicating whether the action was successfully completed or not.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>The customers unique number.</td>\n</tr>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The ID of the transaction.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The Etransfer unique identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transaction reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Integer</em></td>\n<td>The ID of the Payee.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Integer</em></td>\n<td>The transaction detail table identifier.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>String</em></td>\n<td>The validation code of the transaction.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The client reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE02</td>\n<td>Invalid Email.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE2</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE6</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE8</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE9</td>\n<td>Please Try Again Using A Different Client Reference Number.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionSenderHighOpE10</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE23</td>\n<td>Invalid Email. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE24</td>\n<td>Invalid Phone Number. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE25</td>\n<td>Invalid Phone Country Code. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE26</td>\n<td>Phone Country Code Not Found.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE27</td>\n<td>Phone Number Cannot Exceed 20 Characters.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE28</td>\n<td>Invalid Phone Number.</td>\n</tr>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE16</td>\n<td>Transaction Date Must Be Bigger Than Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE002</td>\n<td>Client Reference Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE53</td>\n<td>Transaction Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE006</td>\n<td>Invalid Date Of Funds.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE3</td>\n<td>Security Question Cannot Contain: \"http:\", \"<a href=\"https://\">https://\", \"www</a>.\", \"JavaScript\", \"functions\", \"return\".</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE6</td>\n<td>Security Question Answer Cannot Contain: \"http:\", \"<a href=\"https://\">https://\", \"www</a>.\", \"JavaScript\", \"functions\", \"return\".</td>\n</tr>\n<tr>\n<td>ETransferDateControlE01</td>\n<td>Expiry Date Cannot Be Before The Current Date.</td>\n</tr>\n<tr>\n<td>IndividualETransferInsE223</td>\n<td>Expiry Date Cannot Be Bigger Than ETransfer Maximum expiry date.  <br />ETransfer maximum expiry date: 40 Days.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE1</td>\n<td>Security Question Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE2</td>\n<td>Security Question Cannot Exceed 40 Characters.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE4</td>\n<td>Security Question Answer Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>SecurityQuestionValidationE5</td>\n<td>Security Question Answer May Contain Letters, Digits, Hyphens and French Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE4</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE001</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description Cannot Contain: \"http:\", \"<a href=\"https://\">https://\", \"www</a>.\", \"JavaScript\", \"functions\", \"return\".</td>\n</tr>\n<tr>\n<td>AccountNumberInvalid</td>\n<td>AccountNumber Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighV11OpE2</td>\n<td>Merchant Number Cannot Be Empty, Null or Include White Space.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighV11OpE3</td>\n<td>Merchant Number Is Invalid.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status Can Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateEtransferTransactionWithCustomerHigh"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b4c488e6-b60e-4c3c-a4e1-9fa9fc804062","name":"Create Etransfer Transaction With Customer High 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"customerName\": \"John Doe\",\r\n    \"email\": \"berkay.test@dcb.com\",\r\n    \"phoneCountryCode\": \"1\",\r\n    \"phoneNumber\": \"5555555555\",\r\n    \"priorityTypeCode\": \"0\",\r\n    \"notificationType\": \"0\",\r\n    \"transactionTypeCode\": \"D\",\r\n    \"amount\": 10.50,\r\n    \"dateOfFunds\": \"2022-12-26\",\r\n    \"securityQuestion\": \"What is my favorite color?\",\r\n    \"securityQuestionAnswer\": \"red\",\r\n    \"description\": \"This is my memo\",\r\n    \"ClientReferenceNumber\": null,\r\n    \"CustomerStoreCode\": null,\r\n    \"MoneyReqExpDate\": \"2022-12-28\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransfer/CreateEtransferTransactionWithCustomerHigh"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Success\",\r\n    \"StackTrace\": null,\r\n    \"Item\": {\r\n        \"CustomerNumber\": null,\r\n        \"IsSucceeded\": true,\r\n        \"TransactionId\": 1166146,\r\n        \"TransactionEtransferId\": 0,\r\n        \"TransactionReferenceNumber\": 100000000001792897,\r\n        \"PayeeId\": 0,\r\n        \"TransactionDetailTableId\": 0,\r\n        \"ErrorDescription\": null,\r\n        \"ValidationCode\": null,\r\n        \"ClientReferenceNumber\": \"312-Testing-312\"\r\n    },\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}\r\n"}],"_postman_id":"3dd0e6f1-3cbd-451a-995e-bd06c2c38e9e"},{"name":"Create Recurring e-Transfer Transaction With Merchant","id":"fcb6f4f6-9b71-400b-a44e-9f8359b6c675","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"0220000017\",\n    \"ContactId\": 67,\n    \"PriorityTypeCode\": \"0\",\n    \"TransactionTypeCode\": \"D\",\n    \"StartDate\": \"2020-05-01\",\n    \"EndDate\": \"2020-05-31\",\n    \"Amount\": 1.00,\n    \"Description\": \"Weekly Payment\",\n    \"SecurityQuestion\": \"HelloWorld\",\n    \"SecurityQuestionAnswer\": \"Secret\",\n    \"FrequencyTypeCode\": \"2\",\n    \"PeriodTypeCode\": \"1\",\n    \"DayOfWeekCode\": \"1\",\n    \"DayOfMonthTypeCode\": \"\",\n    \"DayOfMonthCode\": \"\",\n    \"WeekOfMonthTypeCode\": \"\",\n    \"WeekOfMonthCode\": \"\",\n    \"MerchantNumber\": \"M##########\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateRecurringEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Recurring e-Transfer Transaction API creates a new recurring e-Transfer transaction.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for a contact.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The type of priority:  <br /><code>0</code> Real Time</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> - Credit Transaction (Money Send)  <br /><code>D</code> - Debit Transaction (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SecurityQuestion</td>\n<td><em>String</em></td>\n<td>40</td>\n<td>The security question.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>SecurityQuestionAnswer</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>The answer for the Security Question:  <br />- No spaces between characters.  <br />- Maximum length of 25 characters.  <br />  <br /><strong>Required</strong> if Security Question is supplied.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FrequencyTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The frequency of the payment periods:  <br /><code>1</code> Daily  <br /><code>2</code> Weekly  <br /><code>3</code> Monthly</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PeriodTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The type of period:  <br /><code>0</code> Day of Month,  <br /><code>1</code> Day of Week,  <br /><code>2</code> Week of Month.  <br />  <br /><strong>Required</strong> if the Frequency Type Code is <code>2</code> or <code>3</code>.  <br />  <br />If <strong>Frequency Type Code</strong> is <code>2</code> the <strong>Period Type Code</strong> must be <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfWeekCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the day of week:  <br /><code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if Period Type Code is <code>1.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the day of the month:  <br /><code>0</code> First Day  <br /><code>1</code> Selected Day  <br /><code>2</code> Last Day  <br />  <br /><strong>Required</strong> if Period Type Code is <code>0.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>The code indicating the selected day of the month: <code>1-31</code> Day of Month.  <br />  <br /><strong>Required</strong> if Day Of Month Type Code is <code>1.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The code indicating the selected week of the month: <code>1-5</code> Week of Month.  <br />  <br /><strong>Required</strong> if Period Type Code is <code>2.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the day of the week: <code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if Period Type Code is <code>2.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td></td>\n<td>The customer store code for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td></td>\n<td>Indiciates whether the amount is editable or not.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant used in this transaction</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE3</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE4</td>\n<td>Receiver Not Found.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE5</td>\n<td>Receiver Not Registered For This Customer.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck1</td>\n<td>This Transaction Cannot Be Completed. Invalid Account ID.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck2</td>\n<td>This Transaction Cannot Be Completed. Invalid Account.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck3</td>\n<td>This Transaction Cannot Be Completed. Account Definition Deleted.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck4</td>\n<td>This Transaction Cannot Be Completed Due To The Account Status.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck5</td>\n<td>This Transaction Cannot Be Completed. Account Closed.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck6</td>\n<td>This Transaction Cannot Be Completed. Account Inactive.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck7</td>\n<td>This Transaction Cannot Be Completed. Account Deactivated.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck8</td>\n<td>This Transaction Cannot Be Completed. Account Suspended.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck9</td>\n<td>This Transaction Cannot Be Completed Due To The Account Status. Account Not Active.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck10</td>\n<td>This Transaction Cannot Be Completed. Invalid Customer Account.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck11</td>\n<td>This Transaction Cannot Be Completed. Invalid Client Account.</td>\n</tr>\n<tr>\n<td>ContractAndAcountStatusCheck15</td>\n<td>This Transaction Cannot Be Completed. Account Is Expired.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE6</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE7</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE8</td>\n<td>Security Question Must Be Filled.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE9</td>\n<td>Security Question Answer Must Be Filled.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE10</td>\n<td>Invalid Frequency Type.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE11</td>\n<td>Invalid Period Type.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE12</td>\n<td>Invalid Period Type. Only Day Of Week Or Week Of Day Selectable.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE13</td>\n<td>Invalid Day Of Month Value.</td>\n</tr>\n<tr>\n<td>RecurringETransferRequestInsE14</td>\n<td>Invalid Day Of Week Value.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE76</td>\n<td>There Is Already A Transaction Order With This Reference Number.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE7</td>\n<td>Recurring Start Date Must Be Filled.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE8</td>\n<td>Recurring Start Date Must Be Greater Than Or Equal To The Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE9</td>\n<td>Recurring End Date Must Be Filled.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE10</td>\n<td>Recurring End Date Must Be Greater Than Or Equal To The Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE11</td>\n<td>Freeze Start Date Must Be Valid.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE12</td>\n<td>Freeze Start Date Must Be Greater Than Or Equal To The Current Date.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE13</td>\n<td>Freeze End Date Must Be Valid.</td>\n</tr>\n<tr>\n<td>CheckETransferRecurringTransactionE14</td>\n<td>Freeze End Date Must Be Greater Than Or Equal To The Current Date.</td>\n</tr>\n<tr>\n<td>EtransferHelperParamControl004</td>\n<td>Email Notification Type Parameter Could Not Be Found.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateRecurringEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4c5230c8-b274-475f-b6d6-e82268752d9d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"{{subscription-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PriorityTypeCode\": \"0\",\n    \"CustomerNumber\": \"10180000021\",\n    \"ContactId\": 10208,\n    \"TransactionTypeCode\": \"C\",\n    \"StartDate\": \"2020-02-11T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-05-13T00:00:00.0000000+00:00\",\n    \"Amount\": 1.53,\n    \"Description\": \"Test for API\",\n    \"SecurityQuestion\": \"What is your first pet?\",\n    \"SecurityQuestionAnswer\": \"Kartal\",\n    \"FrequencyTypeCode\": \"2\",\n    \"PeriodTypeCode\": \"1\",\n    \"DayOfWeekCode\": \"3\",\n    \"DayOfMonthTypeCode\": \"\",\n    \"DayOfMonthCode\": \"\",\n    \"WeekOfMonthTypeCode\": \"\",\n    \"WeekOfMonthCode\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/CreateRecurringEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"Item\": 85,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"fcb6f4f6-9b71-400b-a44e-9f8359b6c675"},{"name":"Update Recurring e-Transfer Transaction with Merchant","id":"2d44e7c4-d9bb-439a-b9a4-21fd9d812a79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EtransferOrderId\": \"5025096\",\n    //\"FreezeStartDate\": \"2025-06-25\",\n   // \"FreezeEndDate\": \"2025-06-30\",\n    \"CustomerNumber\": \"17150000032\",\n    \"ContactId\": \"266411\",\n    \"PriorityTypeCode\": \"0\",\n    \"TransactionTypeCode\": \"C\",\n    \"StartDate\": \"2025-06-25\",\n    \"EndDate\": \"2025-06-30\",\n    \"Amount\": \"0.04\",\n    \"Description\": \"Test\",\n    \"SecurityQuestion\": \"Drink\",\n    \"SecurityQuestionAnswer\": \"Coffee\",\n    \"FrequencyTypeCode\": \"1\",\n    //\"PeriodTypeCode\": \"0\",\n    \"DayOfWeekCode\": \"4\",\n    //\"DayOfMonthTypeCode\": \"<string>\",\n    //\"DayOfMonthCode\": \"<string>\",\n    //\"WeekOfMonthTypeCode\": \"<string>\",\n    //\"WeekOfMonthCode\": \"<string>\",\n    \"MerchantNumber\": \"17150000029\"\n}\n"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/UpdateRecurringEtransferTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Recurring e-Transfer Transaction API updates the specified recurring e-Transfer transaction.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EtransferOrderId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for recurring ETransfer transaction.  <br />This value can be retrieved using the <strong>ETransfer Recurring -&gt; Search Recurring Etransfer Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FreezeStartDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The freeze start date if desired to freeze the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FreezeEndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The freeze end date if desired to freeze the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The unique customer number.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>The unique ID for a contact.  <br />This value can be retrieved using the <strong>ETransfer -&gt; Get Etransfer Contact</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PriorityTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The type of priority:  <br /><code>0</code> Real Time</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>The transaction type:  <br /><code>C</code> - Credit Transaction (Money Send)  <br /><code>D</code> - Debit Transaction (Money Request).</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The description for the transaction.</td>\n<td></td>\n</tr>\n<tr>\n<td>FrequencyTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The frequency of the payment periods:  <br /><code>1</code> Daily  <br /><code>2</code> Weekly  <br /><code>3</code> Monthly</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PeriodTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The type of period:  <br /><code>0</code> Day of Month  <br /><code>1</code> Day of Week  <br /><code>2</code> Week of Month  <br />  <br /><strong>Required</strong> if the Frequency Type Code is <code>2</code> or <code>3.</code>  <br />  <br />If the Frequency Type Code is <code>2</code> the Period Type Code must be <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfWeekCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the day of week:  <br /><code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if Period Type Code is <code>1.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the day of the month:  <br /><code>0</code> First Day  <br /><code>1</code> Selected Day  <br /><code>2</code> Last Day  <br />  <br /><strong>Required</strong> if Period Type Code is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonthCode</td>\n<td><em>Integer</em></td>\n<td>2</td>\n<td>The code indicating the selected day of the month:  <br /><code>1-31</code> Day of Month  <br />  <br /><strong>Required</strong> if Day Of Month Type Code is <code>1.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthTypeCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the selected week of the month:  <br /><code>1-5</code> Week of Month  <br />  <br /><strong>Required</strong> if Period Type Code is <code>2.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>WeekOfMonthCode</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The code indicating the day of the week: <code>0</code> Sunday  <br /><code>1</code> Monday  <br /><code>2</code> Tuesday  <br /><code>3</code> Wednesday  <br /><code>4</code> Thursday  <br /><code>5</code> Friday  <br /><code>6</code> Saturday  <br />  <br /><strong>Required</strong> if Period Type Code is <code>2.</code></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td></td>\n<td>Indicates whether the requested/sent amount is editable or not.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant used in this transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SysError</td>\n<td>Unknown Error Occurred.</td>\n</tr>\n<tr>\n<td>UpdateRecurringEtransferTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>UpdateRecurringeTransferOrderTransactionE1</td>\n<td>Start Date Not Found.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE1</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>EtransferClientCustomerE2</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>UpdateRecurringEtransferTransactionE2</td>\n<td>Period/No. Of Payment Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateRecurringEtransferTransactionE3</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","UpdateRecurringEtransferTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3832ee00-6073-4d92-aa9b-a1b4164b39b0","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer","type":"text"},{"key":"Ocp-Apim-Subscription-Key","value":"{{subscription-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EtransferOrderId\": 85,\n    \"FreezeStartDate\": \"2020-03-09T00:00:00.0000000+00:00\",\n    \"FreezeEndDate\": \"2020-05-01T00:00:00.0000000+00:00\",\n    \"PriorityTypeCode\": \"0\",\n    \"CustomerNumber\": \"10180000021\",\n    \"ContactId\": 10208,\n    \"TransactionTypeCode\": \"C\",\n    \"StartDate\": \"2020-02-11T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-05-13T00:00:00.0000000+00:00\",\n    \"Amount\": 1.53,\n    \"Description\": \"Test for API\",\n    \"SecurityQuestion\": \"What is your first pet?\",\n    \"SecurityQuestionAnswer\": \"Kartal\",\n    \"FrequencyTypeCode\": \"2\",\n    \"PeriodTypeCode\": \"1\",\n    \"DayOfWeekCode\": \"3\",\n    \"DayOfMonthTypeCode\": \"\",\n    \"DayOfMonthCode\": \"\",\n    \"WeekOfMonthTypeCode\": \"\",\n    \"WeekOfMonthCode\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ETransferRecurring/UpdateRecurringEtransferTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"2d44e7c4-d9bb-439a-b9a4-21fd9d812a79"},{"name":"Create Etransfer Request Money With Merchant🔒","id":"04674f99-96ac-467d-9d78-ccfe863fca6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerName\": \"John Nike\",\r\n  \"email\": \"dcbanktester@gmail.com\",\r\n  \"phoneNumber\": \"5875003033\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request\",\r\n  \"amount\": \"1\",\r\n  \"financialAccountId\": 0,\r\n  \"notificationType\": 0,\r\n  \"editableFulfillAmount\": true,\r\n  \"clientReferenceNumber\": \"n\",\r\n  //\"ReturnUrl\": \"http://test.com/v?19999\",\r\n  \"MerchantNumber\": \"M07120000001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateEtransferRequestMoney","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Etransfer Request Money API creates an Interac e-transfer request money transaction using email, phone number, or suppress mode (no email or phone notifications).</p>\n<p>The API response will include the <strong>Gateway URL</strong> (redirects to the Interac Request Money page), so the user can fulfill the transaction. This response field will be retained for all NotificationTypes (0-Email, 1-SMS, 2-Suppress) POST. <strong>The Gateway URL is required for suppressed notifications.</strong></p>\n<p>Once a transaction is received and submitted into the DCBank System, the API will update the transaction status. It is recommended to use <strong>Etransfer Webhooks</strong> to access transaction updates.</p>\n<p><em><strong>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</strong></em></p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates the customer name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the customer's email  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The Phone Country Code.  <br /><code>1</code> if the customer is from <strong>Canada</strong> or <strong>US</strong>.  <br />  <br /><strong>Required</strong> if Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>10</td>\n<td>Indicates customer's phone number without Country Code.  <br />  <br /><strong>Required</strong> if Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The notification type:  <br /><code>0</code> – Email  <br /><code>1</code> – SMS  <br /><code>2</code> – Suppress (No notifications)  <br />  <br />Default is <code>0</code> -Email.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>25</td>\n<td>Reference number supplied by API user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication  <br />checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount  <br />of a Money Request transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialAccountId</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates the account that will be receiving the money from the recipient.  <br />  <br /><strong>0 or null will default to e-Transfer funding account.</strong></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the merchant who is making the request money from.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The Merchant who is making the original request money from.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The unique transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The unique etransfer identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transactions unique reference number.</td>\n</tr>\n<tr>\n<td>ETransferReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique CA interac reference number.</td>\n</tr>\n<tr>\n<td>GateWayUrl</td>\n<td><em>String</em></td>\n<td>The Gateway URL.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEtransferTransactionHighOpE02</td>\n<td>Invalid Email.</td>\n</tr>\n<tr>\n<td>CreateEtransferMoneyRequestTransactionHighE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE2</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE6</td>\n<td>Invalid Priority Type.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE7</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE8</td>\n<td>Transaction Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE9</td>\n<td>Please Try Again With A Different Client Reference Number.</td>\n</tr>\n<tr>\n<td>CreateEtransferMoneyRequestTransactionHighE2</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE23</td>\n<td>Invalid Email. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE24</td>\n<td>Invalid Phone Number. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE25</td>\n<td>Invalid Phone Country Code. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE26</td>\n<td>Phone Country Code Not Found</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE27</td>\n<td>Phone Number Cannot Exceed 20 Characters.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE28</td>\n<td>Invalid Phone Number.</td>\n</tr>\n<tr>\n<td>EtransferDuplicateControle01</td>\n<td>Duplicate Transaction.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE002</td>\n<td>Client Reference Number Must Be Filled.</td>\n</tr>\n<tr>\n<td>ETransferRequestInsE53</td>\n<td>Transaction Amount Must Be Greater Than 0.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE4</td>\n<td>Contact Not Found.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE001</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE6</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionE16</td>\n<td>Suppress Responder Notification Not Supported.</td>\n</tr>\n<tr>\n<td>CheckETransferHigApiRequestE011</td>\n<td>Return URL Cannot Exceed 256 Characters.</td>\n</tr>\n<tr>\n<td>DescriptionValidationE02</td>\n<td>Description cannot be cannot contain: \"http:\", \"<a href=\"https://\">https://\", \"www</a>.\", \"JavaScript\", \"functions\", \"return\".</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE19</td>\n<td>Please Try Again. Money Request Could Not Generated.</td>\n</tr>\n<tr>\n<td>CreateEtransferTransactionHighOpE20</td>\n<td>Client Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"api-v11-error-messages\">API V1.1 Error Messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateETransferRequestMoneyE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE2</td>\n<td>Customer Name Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE3</td>\n<td>Customer Name Must Be At Least 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE4</td>\n<td>Customer Name Cannot Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE5</td>\n<td>Description Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE6</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE7</td>\n<td>Description cannot be cannot contain: \"http:\", \"<a href=\"https://\">https://\", \"www</a>.\", \"JavaScript\", \"functions\", \"return\".</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE8</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE9</td>\n<td>Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE10</td>\n<td>Email Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE11</td>\n<td>Phone Country Code Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE12</td>\n<td>Phone Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE13</td>\n<td>Phone Country Code Cannot Exceed 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE14</td>\n<td>Phone Number Must Be Between 4 And 13 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE15</td>\n<td>Phone Country Code Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE16</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE17</td>\n<td>Amount Must Be Greater Than $0.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE18</td>\n<td>Amount Must Be Less Than $25,000.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE19</td>\n<td>Money Req Exp Date Must Either Be In:  <br />'yyyy-MM-dd' Format  <br />OR  <br />'yyyy-MM-ddThh:mm:ss.FFFZ' Format.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE20</td>\n<td>Money Req Exp Date Cannot Be Before Current Date ((UTC Time).</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE21</td>\n<td>Money Req Exp Date Cannot Be More Than The Limit Of <em>Variable</em> days.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE22</td>\n<td>Client Reference Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE23</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE24</td>\n<td>Client Reference Number Has Already Been Used In The Last 48 Hours. Please Choose Another.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE25</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE26</td>\n<td>Client Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE27</td>\n<td>Client Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE28</td>\n<td>Customer Etransfer Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE29</td>\n<td>Error Creating Contact To Interac: <em>Variable.</em></td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE30</td>\n<td>Critical Error When Creating Contact On Interac. Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE31</td>\n<td>Error Creating Request Money Yo Interac: <em>Variable.</em></td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE32</td>\n<td>Critical Error When Creating Money Request. Please Contact Customer Support</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE33</td>\n<td>Critical Error When Creating Etransfer Transaction. Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE34</td>\n<td>Critical Error When Creating Fee Transaction. Please Contact Customer Support.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE35</td>\n<td>Email Cannot Be Empty Or Contain Only White Spaces.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE42</td>\n<td>Invalid Financial Account ID.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>February 2023</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateEtransferRequestMoney"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2ca1326a-9c3f-495e-9940-a3f9bfc40906","name":"Create Etransfer Request Money 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerName\": \"Test\", \r\n  \"email\": \"TestEmail@test312555.com\", \r\n  \"phoneNumber\": \"5555555555\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request Test\",\r\n  \"amount\": 1.2,\r\n  \"financialAccountId\": 0, \r\n  \"notificationType\": 2,\r\n  \"editableFulfillAmount\": true,\r\n  \"clientReferenceNumber\": \"123-456-789322\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Etransfer/CreateEtransferRequestMoney"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Success\",\r\n    \"StackTrace\": null,\r\n    \"Item\": {\r\n        \"TransactionId\": 1170399,\r\n        \"TransactionEtransferId\": 123779,\r\n        \"TransactionReferenceNumber\": 100000000001810562,\r\n        \"ETransferReferenceNumber\": \"CA1MRJ9fNxHn\",\r\n        \"GateWayUrl\": \"https://gateway-web.fit.interac.ca/reqPayment/eml/CA1MRJ9fNxHn\"\r\n    },\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}"}],"_postman_id":"04674f99-96ac-467d-9d78-ccfe863fca6b"},{"name":"Create Etransfer Request Money Bulk with Merchant","id":"29e9c74b-41de-4fcb-88e0-4fc728d440ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"priority\": \"1\",\r\n  \"customerName\": \"test\",\r\n  \"email\": \"test.test@test.ca\",\r\n  \"phoneNumber\": \"\",\r\n  \"phoneCountryCode\": \"\",\r\n  \"description\": \"Money Request\",\r\n  \"amount\": \"0.1\",\r\n  \"notificationType\": 0,\r\n  \"editableFulfillAmount\": true,\r\n  \"clientReferenceNumber\": \"test1-1\",\r\n  \"ExecutionReqDate\": \"2024-06-26\",\r\n  \"MerchantNumber\": \"M##########\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.1/PSPMerchant/CreateEtransferRequestMoneyBulk","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Etransfer Request Money Bulk API creates a bulk e-transfer request money transaction using email or/and phone number notifications. Once a transaction is received and submitted into the DCBank System, it will be attached to the next priority/regular bulk file sent to Interac.</p>\n<p>It is recommended to use <strong>Etransfer Webhooks</strong> to access transaction updates.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"api-usage-considerations\">API Usage Considerations</h3>\n<p>Please follow the recommendations below when building your integrations into this API:<br />• When testing, place a pause of 50ms between each API call. If you require a smaller pause, please contact <a href=\"https://\">APISupport@dcbank.ca</a></p>\n<h3 id=\"api-permissions\">API Permissions</h3>\n<p>This API will use your standard API key but requires advanced permissions to be functional.</p>\n<p>To gain access to this API:<br />• In Sandbox - please contact: <a href=\"https://\">APISupport@dcbank.ca</a><br />• In Production [Coming Soon] - get in touch with your Sales Executive</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th><strong>Required/ Optional/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the customer name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the customer's email  <br />  <br /><strong>Required</strong> if Notification Type is <code>0</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneCountryCode</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>The Phone Country Code.  <br /><code>1</code> if Customer is from <strong>Canada</strong> or <strong>US</strong>.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td><em>Numeric</em></td>\n<td>13</td>\n<td>Indicates customer's phone number without Country Code.  <br />  <br /><strong>Required</strong> If Notification type is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>notificationType</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td>The notification type:  <br /><code>0</code> - Email  <br /><code>1</code> - SMS  <br /><code>2</code> - Suppress Notifications  <br /><code>3</code> - Email and SMS.  <br />  <br />Default is <code>0</code> -Email.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>The monetary amount to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>The transaction's description.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Reference number supplied by API user. This can be used to search for the transaction later. A duplicate check will be performed on this field within a 24HR period, so that duplicate transactions cannot be submitted. If no client reference number is supplied, no duplication  <br />checking will occur.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EditableFulfillAmount</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>Indicates if the recipient can adjust the amount  <br />of a Money Request transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Priority</td>\n<td><em>Integer</em></td>\n<td>1</td>\n<td><code>1</code> - Regular (once a day)  <br /><code>2</code> - Priority (every hour)</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExecutionReqDate</td>\n<td><em>DateTime</em></td>\n<td>10  <br />yyyy-mm-dd</td>\n<td>Date must be more or equal the current date .  <br />  <br />Default Value: current date.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>The Merchant who is making the original request money from.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>The transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Integer</em></td>\n<td>The etransfer transaction identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Integer</em></td>\n<td>The transactions unique reference number.</td>\n</tr>\n<tr>\n<td>ETransferReferenceNumber</td>\n<td><em>String</em></td>\n<td>The unique \"CA\" Interac reference number.</td>\n</tr>\n<tr>\n<td>GateWayUrl</td>\n<td><em>String</em></td>\n<td>The gateway URL.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateETransferRequestMoneyE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE2</td>\n<td>Customer Name Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE3</td>\n<td>Customer Name Must Be At Least 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE4</td>\n<td>Customer Name Cannot Exceed 100 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE5</td>\n<td>Description Cannot Be Empty Or Contain Only White Spaces.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE6</td>\n<td>Description Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE7</td>\n<td>Description Cannot Contain: 'http:', 'https://', 'www.', 'JavaScript', 'functions', 'return'.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE8</td>\n<td>Notification Type Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE9</td>\n<td>Email Format Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE10</td>\n<td>Email Cannot Exceed 250 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE11</td>\n<td>Phone Country Code Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE12</td>\n<td>Phone Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE13</td>\n<td>Phone Country Code Cannot Exceed 3 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE14</td>\n<td>Phone Number Must Be Between 4 And 13 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE15</td>\n<td>Phone Country Code Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE16</td>\n<td>Phone Number Must Be Able To Be Converted Into A Number.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE17</td>\n<td>Amount Must Be Greater Than $0.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE18</td>\n<td>Amount Cannot Exceed $25,000.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE20</td>\n<td>Money Req Exp Date Cannot Be Before The Current Date (UTC).</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE21</td>\n<td>Money Req Exp Date Cannot Be More Than The Limit Of 30 Days.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE22</td>\n<td>Client Reference Number Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE23</td>\n<td>Client Reference Number Cannot Exceed 35 Characters.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE24</td>\n<td>Client Reference Number Has Already Been Used In The Last 48 Hours. Please Choose Another.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE25</td>\n<td>Permissions For Use Of This API Have Not Been Granted.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE26</td>\n<td>Client Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE28</td>\n<td>Customer Etransfer Information Not Found.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE35</td>\n<td>Email Cannot Be Empty Or Contain Only White Space.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE37</td>\n<td>Incorrect Priority Value.</td>\n</tr>\n<tr>\n<td>CreateETransferRequestMoneyE38</td>\n<td>Money Request Date Must Be In The Future. Must Be Greater Than The Current Date.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"transaction-status-messages\">Transaction Status Messages</h3>\n<p>The following transaction status messages can be returned via the API or Webhook:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Transaction Status ID</th>\n<th>Transaction Status Code</th>\n<th>Transaction Description</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>14000</td>\n<td>P</td>\n<td>Pending</td>\n<td>Transaction is waiting to be processed by our servers.</td>\n</tr>\n<tr>\n<td>14001</td>\n<td>S</td>\n<td>Sent</td>\n<td>Transaction has been sent for processing and is awaiting a response.</td>\n</tr>\n<tr>\n<td>14002</td>\n<td>E</td>\n<td>Error</td>\n<td>Transaction encountered an error.</td>\n</tr>\n<tr>\n<td>14003</td>\n<td>S</td>\n<td>Settled</td>\n<td>Transaction was sent and accepted by the settlement bank.</td>\n</tr>\n<tr>\n<td>14004</td>\n<td>R</td>\n<td>Return</td>\n<td>The external bank holder does not accept the transaction.</td>\n</tr>\n<tr>\n<td>14005</td>\n<td>RS</td>\n<td>Resend</td>\n<td>An error was encountered, corrected, and resent.</td>\n</tr>\n<tr>\n<td>14006</td>\n<td>RJ</td>\n<td>Rejected</td>\n<td>The external bank of Interac has rejected the transaction.</td>\n</tr>\n<tr>\n<td>14007</td>\n<td>C</td>\n<td>Completed</td>\n<td>Transaction has been accepted by the external bank, but  <br />isn’t settled.</td>\n</tr>\n<tr>\n<td>14008</td>\n<td>V</td>\n<td>Cancelled</td>\n<td>Transaction was cancelled during PENDING status.</td>\n</tr>\n<tr>\n<td>14009</td>\n<td>U</td>\n<td>Unapproved</td>\n<td>Transaction needs to be approved to be settled.</td>\n</tr>\n<tr>\n<td>14010</td>\n<td>FF</td>\n<td>Fulfilled</td>\n<td>Transaction has been approved by Interac and is awaiting  <br />completion.</td>\n</tr>\n<tr>\n<td>14011</td>\n<td>DP</td>\n<td>Received</td>\n<td>Transaction has been received by DCBank, but has not  <br />processed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.1</td>\n<td>July 2024</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.1","PSPMerchant","CreateEtransferRequestMoneyBulk"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a5d81293-cfb8-47a4-a01b-3da950710558","name":"Create Etransfer Request Money 🔒","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"customerName\": \"Test\", \r\n  \"email\": \"TestEmail@test312555.com\", \r\n  \"phoneNumber\": \"5555555555\",\r\n  \"phoneCountryCode\": \"1\",\r\n  \"description\": \"Money Request Test\",\r\n  \"amount\": 1.2,\r\n  \"financialAccountId\": 0, \r\n  \"notificationType\": 2,\r\n  \"editableFulfillAmount\": true,\r\n  \"clientReferenceNumber\": \"123-456-789322\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Etransfer/CreateEtransferRequestMoney"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ErrorCode\": \"0\",\r\n    \"ErrorDescription\": \"Success\",\r\n    \"StackTrace\": null,\r\n    \"Item\": {\r\n        \"TransactionId\": 1170399,\r\n        \"TransactionEtransferId\": 123779,\r\n        \"TransactionReferenceNumber\": 100000000001810562,\r\n        \"ETransferReferenceNumber\": \"CA1MRJ9fNxHn\",\r\n        \"GateWayUrl\": \"https://gateway-web.fit.interac.ca/reqPayment/eml/CA1MRJ9fNxHn\"\r\n    },\r\n    \"IsSucceeded\": true,\r\n    \"ErrorList\": [],\r\n    \"ParameterList\": []\r\n}"}],"_postman_id":"29e9c74b-41de-4fcb-88e0-4fc728d440ff"}],"id":"903f44e5-ee70-4301-a57d-610d33d9455e","_postman_id":"903f44e5-ee70-4301-a57d-610d33d9455e","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"8d788914-48a3-4d04-99bb-c08662ebe21a","_postman_id":"8d788914-48a3-4d04-99bb-c08662ebe21a","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"EFT","item":[{"name":"Create Individual EFT Transaction With Merchant","id":"fbec9f2d-b8c5-46a1-8e71-a4a033b63dbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n   \"EftTypeCode\": \"P\", //Regular Transaction\n   \"CustomerNumber\": \"17160000003\",//\"14390000002\",\"10300009157\",\n   \"CustomerAccountId\": 53092,//1190639,////1174485,/\n   \"TransactionTypeCode\": \"C\", //Debiting Funds\n   \"TransactionCodeId\": 922763, //Type Of Transaction (Bill Payment)\n   \"Amount\": 3,\n   \"TransactionDate\": \"2025-06-10\",\n   \"Description\": \"Test EFT\",\n   \"MerchantNumber\": \"M07160000001\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEftTransaction</em> endpoint is used for the creation of electronic funds transfers (EFTs).</p>\n<p>For use of this endpoint, you will need an existing customer already created that has been designated to the EFT program. Customers designated to the EFT program can be created by using the <em>CreateCustomer</em> endpoint or the <em>CreateEftTransactionWithCustomer</em> endpoint.</p>\n<p>The value for the \"CustomerAccountId\" field can be obtained from the <em>GetEftCustomerAccount</em> endpoint (the <em>GetEftCustomerAccount</em> endpoint lists financial institution routing information in relation to a particular customer).</p>\n<p>Transactions can be sent in two different priority levels depending on the value input into the \"EftTypeCode\" field. When value \"R\" is inputted, the transaction will be a regular priority transaction. When the value \"P\" is inputted, the transaction will be a prioirty type transaction. Regular transactions are bundled and sent three times a day (at appoximatley 5am, 1pm, and 330pm Mountain time). Priority transactions are bundled and sent four times a day (at approximately 5am, 12pm, 1pm, and 330pm).</p>\n<p>Money can be sent (credited) or requested (debited) via this endpoint determinate upon on the value inputted in the \"TransactionTypeCode\" field (\"C\" or \"D\").</p>\n<p>The \"TransactionCodeId\" field is representative of the particular type of EFT transaction you are attempting to create. Use the <em>GetEftTransactionCode</em> endpoint to obtain this value.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates Code for EFT Type.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates the unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Indicates unique Customer Account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the Type of transaction.  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>Integer</em></td>\n<td>6</td>\n<td>Indicates the TransactionCodeID.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the date of transaction. The date value must be in <em>UTC</em> time.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>100</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>FinancialAccountId</td>\n<td><em>Integer</em></td>\n<td>8</td>\n<td>Indicates the destination account ID to use for sending/ receiving funds.  <br />  <br />See <strong>Client API -&gt; Client -&gt; Account -&gt; Get All Account</strong> endpoint for a list of available account <code>ID</code> values.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the store code created in Client Setup.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>If this value is empty the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>If this value is empty the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant involved in this transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EFTPastTransactionDateError</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE3</td>\n<td>Customer Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE4</td>\n<td>Invalid EFT Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE5</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE6</td>\n<td>Invalid Financial Account ID.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE7</td>\n<td>Originator Short Name Cannot Exceed 15 Characters.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE8</td>\n<td>Originator Long Name Cannot Exceed 30 Characters.</td>\n</tr>\n<tr>\n<td>CheckEFTTransactionRequestE10</td>\n<td>Transaction Code Must be Filled.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"624ff020-59f2-4070-a59c-e25aaa29a2db","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"R\",\n    \"CustomerNumber\": \"12345571\",\n    \"CustomerAccountId\": 20044,\n    \"TransactionTypeCode\": \"C\",\n    \"TransactionCodeId\": 23020,\n    \"Amount\": 1.50,\n    \"TransactionDate\": \"2020-04-01T00:00:00.0000000-00:00\",\n    \"Description\": \"One time payment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/CreateEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 101853,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"fbec9f2d-b8c5-46a1-8e71-a4a033b63dbf"},{"name":"Create Eft Transaction With Customer Merchant","id":"e3c74e9a-4560-4893-af70-2858dbdedcb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"P\", //Priority Transaction\n    \"TransactionTypeCode\": \"C\", //Money Send\n    \"TransactionCodeId\": 922763,\n    \"Amount\": 200.0,\n    \"TransactionDate\": \"2024-07-25T00:00:00\",\n    \"Description\": \"EFT Test\",\n    \"CustomerName\": \"Edward Franklin Thompson\",\n    \"FinancialInstitutionId\": \"830\", //Bank Number\n    \"TransitNumber\": \"12\", //Transit Number\n    \"AccountNumber\": \"123456789\", //Customer Account\n    \"ClientReferenceNumber\": \"Your Reference Here\",\n    \"OriginatorShortName\": \"OriginatorShort\",\n    \"OriginatorLongName\": \"Originator Long Name\",\n    \"MerchantNumber\": \"M##########\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateEftTransactionWithCustomer","description":"<h3 id=\"description\">Description</h3>\n<p>The <em>CreateEftTransactionWithCustomer</em> endpoint is used for the creation of individual electronic funds transfer (EFT) transactions simultaneously with a customer who is enrolled within the EFT program. This endpoint is an alternative to <em>CreateEftTransaction--</em> allowing you to create an EFT transaction without the need to first create a customer using the CreateCustomer endpoint.</p>\n<p>Transactions can be sent in two different prioirty levels depending on the value input into the \"EftTypeCode\" field. When value <code>R</code> is inputted, the transaction will be a regular priority transaction. When the value <code>P</code> is inputted, the transaction will be a priority type transaction. Regular transactions are bundled and sent three times a day (at appoximatley 5am, 1pm, and 330pm Mountain time). Priority transactions are bundled and sent four times a day (at approximately 5am, 12pm, 1pm, and 330pm).</p>\n<p>Money can be sent (credited) or requested (debited) via this endpoint determinate upon on the value inputted in the \"TransactionTypeCode\" field (<code>C</code> or <code>D</code>).</p>\n<p>The \"TransactionCodeId\" field is representative of the particular type of EFT transaction you are attempting to create. Use the <em>GetEftTransactionCode</em> endpoint to obtain this value.</p>\n<p>The \"FinancialInsitutionId\" field is representative of the financial institution <strong>bank number</strong> which you wish to target. This can be obtained from the \"BankNumber\" field which is returned from the <em>GetFinancialInstitution</em> endpoint.</p>\n<p>The \"TransitNumber\" field is representative of the financial institution <strong>branch</strong> which you wish to target. Transit numbers can be found via a request to the <em>GetFinancialBranch</em> endpoint. Make a request to the <em>GetFinancialBranch</em> endpoint using the \"Id\" value returned from the <em>GetFinancialInstitution</em> response (this value will be entered into the \"financialInstitutionId\" field within your request to the <em>GetFinancialBranch</em> endpoint).</p>\n<p>The \"AccountNumber\" field is representative of the individual account held by your customer at the particular financial insitution branch that you are targeting.</p>\n<p>Once a successful call to <em>CreateEFTTransactionWithCustomer</em> has been made, external EFT customer accounts can be found via use of the <em>GetEftCustomerAccount</em> endpoint.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates Code for EFT Type.  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique customer number.  <br />This can be retrieved using the Get Eft Customer API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>17</td>\n<td>Indicates unique Customer Account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the Type of transaction.  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>Integer</em></td>\n<td>6</td>\n<td>Indicates the TransactionCodeID.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates the amount of money that is to be sent/deposited.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>Indicates the date of transaction. The date value must be in <em>UTC</em> time.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerStoreCode</td>\n<td><em>String</em></td>\n<td>4</td>\n<td>Indicates Client's Store Code.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CustomerName</td>\n<td><em>String</em></td>\n<td>60</td>\n<td>Indicates Customer's Full Name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FinancialInstitutionId</td>\n<td><em>Integer</em></td>\n<td>4</td>\n<td>Indicates the Financial Institution's Bank Number.  <br />See the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution</strong> endpoint for a list of Financial Institutions. The <em>Bank Number</em> can be retrieved from the body.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransitNumber</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates Transit Number.  <br />See the <strong>Parameter -&gt; Account -&gt; Get EFT Financial Institution Branch</strong> endpoint for a list of Financial Institution Branch. The <em>Transit Number</em> can be retrieved from the body.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td><em>String</em></td>\n<td>14</td>\n<td>Indicates Account Number for the Customer.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>18</td>\n<td>Indicates Client Reference Number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>If this value is empty the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>If this value is empty the name in the Client setup will be populated.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant involved in this transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Long</em></td>\n<td>The transactions unique identifier.</td>\n</tr>\n<tr>\n<td>TransactionEtransferId</td>\n<td><em>Long</em></td>\n<td>The etransfer transactions unique identifier.</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>Long</em></td>\n<td>The transactions unique reference number.</td>\n</tr>\n<tr>\n<td>PayeeId</td>\n<td><em>Long</em></td>\n<td>The Payee identifier.</td>\n</tr>\n<tr>\n<td>TransactionDetailTableId</td>\n<td><em>Long</em></td>\n<td>The transaction detail table identifier.</td>\n</tr>\n<tr>\n<td>ValidationCode</td>\n<td><em>String</em></td>\n<td>The validation code.</td>\n</tr>\n<tr>\n<td>InteracReferenceNumber</td>\n<td><em>String</em></td>\n<td>The \"CA\" Interac reference number.</td>\n</tr>\n<tr>\n<td>ClientReferenceNumber</td>\n<td><em>String</em></td>\n<td>The client unique reference number.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEftTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>EFTPastTransactionDateError</td>\n<td>Transaction Received After Transaction Date Cutoff.</td>\n</tr>\n<tr>\n<td>CheckEFTTransactionRequestE3</td>\n<td>Transaction Code Is Not Defined.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE4</td>\n<td>Invalid EFT Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE5</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE7</td>\n<td>Originator Short Name Cannot Exceed 15 Characters.</td>\n</tr>\n<tr>\n<td>CreateEftTransactionE8</td>\n<td>Originator Long Name Cannot Exceed 30 Characters.</td>\n</tr>\n<tr>\n<td>CreateEFTTransactionE1</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE16</td>\n<td>Invalid Transit Number.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE17</td>\n<td>Invalid Financial Institution Number.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE18</td>\n<td>Invalid Customer Number.</td>\n</tr>\n<tr>\n<td>CustomerCreateErrorE19</td>\n<td>Invalid Customer Name. Field Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CustomerCreateError</td>\n<td>Customer Create Error.</td>\n</tr>\n<tr>\n<td>CheckEFTTransactionRequestE10</td>\n<td>Transaction Code Must be Filled.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateEftTransactionWithCustomer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3c74e9a-4560-4893-af70-2858dbdedcb2"},{"name":"Update Individual EFT Transaction With Merchant","id":"697058c4-1111-4422-81c7-6a894f5948c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TransactionId\": 12345,\n    \"CustomerNumber\": \"\",\n    \"CustomerAccountId\": 12345,\n    \"TransactionCodeId\": 12345,\n    \"Description\": \"\",\n    \"MerchantNumber\": \"M##########\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/UpdateEftTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Update Individual EFT Transaction API updates the transaction for the Customer.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the Unique ID of transaction.  <br />This value is returned in the response body of the <strong>Create EFT Transaction</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique customer number.  <br />This can be retrieved using the <strong>Get Eft Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates unique Customer Account ID.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>Integer</em></td>\n<td>5</td>\n<td>Indicates the TransactionCodeID.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant used in this transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UpdateEftTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>UpdateEftTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>UpdateEftTransactionE3</td>\n<td>Customer Account Not Found.</td>\n</tr>\n<tr>\n<td>UpdateEftTransactionE4</td>\n<td>Transaction Not Found.</td>\n</tr>\n<tr>\n<td>UpdateEFTTransactionE11</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>UpdateEftTransactionE6</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <code>Declined</code> or <code>In Review.</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","UpdateEftTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c62c0877-1143-4b43-a0da-a7d3a8aabb75","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"TransactionId\": 101853,\n    \"EftTypeCode\": \"P\",\n    \"CustomerNumber\": \"12345571\",\n    \"CustomerAccountId\": 20044,\n    \"TransactionTypeCode\": \"D\",\n    \"TransactionCodeId\": 23023,\n    \"Amount\": 2.0,\n    \"TransactionDate\": \"2020-06-01T00:00:00.0000000-00:00\",\n    \"Description\": \"Another Description\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/EFT/UpdateEftTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 16:05:59 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"213","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"Kestrel","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=2592000","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=0b3011b26d9792cea61a928db77ae78affdcc0fb21ae1d28a34040ea2ea600c7;Path=/;HttpOnly;Domain=dcb-mrcapi-sandbox.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"697058c4-1111-4422-81c7-6a894f5948c0"},{"name":"Create Recurring EFT Transaction With Merchant","id":"c96cf4b4-f06a-40f4-b408-65088981e664","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"\",\n    \"CustomerNumber\": \"\",\n    \"CustomerAccountId\": 12345,\n    \"TransactionTypeCode\": \"\",\n    \"TransactionCodeId\": 12345,\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"Amount\": 0.0,\n    \"Description\": \"\",\n    \"EFTFirstDueDateOptionCode\": \"\",\n    \"DayOfWeek\": \"\",\n    \"DayOfMonth\": \"\",\n    \"CustomerStoreCode\": \"\",\n    \"MerchantNumber\": \"##########\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateEftRecurringTransaction","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Recurring EFT Transaction API creates a schedule for the recurring EFT transaction.</p>\n<p>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates type of priority:  <br /><code>P</code> - Priority  <br /><code>R</code> - Regular</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Indicates unique customer number.  <br />This can be retrieved using the <strong>Get EFT Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Integer</em></td>\n<td>19</td>\n<td>Indicates the ID for Customer Account.  <br />This can be retrieved using the <strong>Get Eft Customer Account</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionTypeCode</td>\n<td><em>String</em></td>\n<td>1</td>\n<td>Indicates the type code of transaction:  <br /><code>C</code> - Credit  <br /><code>D</code> - Debit</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>TransactionCodeId</td>\n<td><em>String</em></td>\n<td>5</td>\n<td>Indicates the transaction code ID for EFT recurring.  <br />This can be retrieved using the <strong>Get Eft Transaction Code</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates the start date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indicates the end date for the recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>10</td>\n<td>Indicates amount of money that is going to sent/deposited per period.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>250</td>\n<td>Indicates the description for the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EFTFirstDueDateOptionCode</td>\n<td><em>String</em></td>\n<td>2</td>\n<td><code>W</code> - Weekly,  <br /><code>BW</code> - Bi-Weekly, <code>M</code> - Monthly,  <br /><code>ME</code> - Month End,<code>Q</code> Quarterly,  <br /><code>QE</code> - Quarterly End,  <br /><code>SM</code> - Semi Monthly.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DayOfWeek</td>\n<td><em>String</em></td>\n<td>1</td>\n<td><code>0</code> Sunday,  <br /><code>1</code> Monday,  <br /><code>2</code> Tuesday,  <br /><code>3</code> Wednesday, <code>4</code> Thursday,  <br /><code>5</code> Friday  <br /><code>6</code> is for Saturday.  <br />  <br /><strong>Required only for Bi-Weekly and Weekly.</strong></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>DayOfMonth</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Any days of the month.  <br />  <br /><strong>Required only for Monthly and Quarterly.</strong></td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant associated with this transaction</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateEftRecurringTransactionE1</td>\n<td>Invalid Request.</td>\n</tr>\n<tr>\n<td>CreateEftRecurringTransactionE2</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftRecurringTransactionE3</td>\n<td>First Due Date Option Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftRecurringTransactionE4</td>\n<td>EFT Type Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftRecurringTransactionE6</td>\n<td>Settlement Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateEftRecurringTransactionE7</td>\n<td>Period/No. Of Payment Cannot Be Null.</td>\n</tr>\n<tr>\n<td>CreateEftRecurringTransactionE5</td>\n<td>Invalid Transaction Type.</td>\n</tr>\n<tr>\n<td>CalculateNumberOfPaymentsE1</td>\n<td>Day Of Week Is Invalid.</td>\n</tr>\n<tr>\n<td>CalculateNumberOfPaymentsE2</td>\n<td>Day Of Month Is Invalid.</td>\n</tr>\n<tr>\n<td>CalculateNumberOfPaymentsE3</td>\n<td>Day Of Month Is Invalid.</td>\n</tr>\n<tr>\n<td>CalculateNumberOfPaymentsE4</td>\n<td>Day Of Week Is Invalid.</td>\n</tr>\n<tr>\n<td>CreateEFTRecurringTransactionE2</td>\n<td>Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateEftRecurringTransaction"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"65192c25-fd0e-436d-8bff-7fbfad046fac","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"","description":"(Required) "},{"key":"Authorization","value":"","description":"(Required) "}],"body":{"mode":"raw","raw":"{\n    \"EftTypeCode\": \"P\",\n    \"CustomerNumber\": \"10180000014\",\n    \"CustomerAccountId\": 20064,\n    \"TransactionTypeCode\": \"C\",\n    \"TransactionCodeId\": 23045,\n    \"StartDate\": \"2020-02-21T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-04-28T00:00:00.0000000+00:00\",\n    \"Amount\": 1.67,\n    \"Description\": \"Test\",\n    \"EftFirstDueDateOptionCode\": \"BW\",\n    \"DayOfWeek\": \"5\",\n    \"DayOfMonth\": \"\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/EFTRecurring/CreateEftRecurringTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"ErrorCode\": \"0\",\n \"ErrorDescription\": \"Successfull\",\n \"StackTrace\": null,\n \"Item\": 10035,\n \"IsSucceeded\": true,\n \"ErrorList\": [],\n \"ParameterList\": []\n}"}],"_postman_id":"c96cf4b4-f06a-40f4-b408-65088981e664"}],"id":"fabd77bd-16bf-4154-88f3-339f2027d4aa","_postman_id":"fabd77bd-16bf-4154-88f3-339f2027d4aa","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Bill","item":[{"name":"Create Individual Bill Payment With Merchant","id":"7a25b96a-589e-4882-90bb-5a1ac643cec9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"\",\n    \"PayeeCode\": \"\",\n    \"PayeeName\": \"\",\n    \"Amount\": 0.0,\n    \"PayeeAccountNumber\": \"\",\n    \"Description\": \"\",\n    \"MerchantNumber\": \"M##########\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateIndividualBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Individual Bill Payment API creates the bill transaction so that only one payment is required.</p>\n<p>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><em>Name</em></th>\n<th><em>Type</em></th>\n<th><em>Max Length</em></th>\n<th><em>Description</em></th>\n<th><em>Required/Optional</em></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates unique customer ID.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates Payee Code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates Payee Name.  <br />This can be retrieved using the <em><strong>Bill Payment -&gt; Get Payee List</strong></em> API.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>15</td>\n<td>Indicates amount that is to be paid.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates Payee Account Number which is written on the bill to be paid.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Indicates description.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant used in this transaction.</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BalanceTransactionInsertOpE1:</td>\n<td>Error Occurred When Adding Balance Transaction.</td>\n</tr>\n<tr>\n<td>BillInformationControlE1:</td>\n<td>Bill URL Information not found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE2:</td>\n<td>Transaction Amount Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE3:</td>\n<td>Account Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE4:</td>\n<td>Payee Not Found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE5:</td>\n<td>Account Not Found.</td>\n</tr>\n<tr>\n<td>CreateBillPaymentTransactionOpE6:</td>\n<td>Insufficient Balance.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateIndividualBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"061ff1ab-93fc-484e-901b-a95a93ab2dbb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"CustomerNumber\": \"10380000089\",\n    \"PayeeCode\": \"000005\",\n    \"PayeeName\": \"TELUS MOBILITY INC\",\n    \"Amount\": 4,\n    \"PayeeAccountNumber\": \"33213533\",\n    \"Description\": \"ApiTest\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CreateIndividualBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 295,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"7a25b96a-589e-4882-90bb-5a1ac643cec9"},{"name":"Create Recurring Bill Payment With Merchant","id":"eecf76df-fa7b-4824-bf63-b699a3c04aff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"PayeeCode\": \"\",\n    \"PayeeName\": \"\",\n    \"CustomerNumber\": \"\",\n    \"PayeeAccountNumber\": \"\",\n    \"RecurringAmount\": 0.0,\n    \"StartDate\": \"2020-01-01T00:00:00.0000000-0:00\",\n    \"EndDate\": \"2020-01-01T00:00:00.0000000-00:00\",\n    \"Description\": \"\",\n    \"FirstDueDateOption\": 0,\n    \"PeriodWeekly\": 0,\n    \"PeriodBiWeekly\": 0,\n    \"PeriodMonthly\": 0,\n    \"PeriodQuarterly\": 0,\n    \"MerchantNumber\": \"M##########\"\n}"},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateRecurringBillPayment","description":"<h3 id=\"description\">Description</h3>\n<p>The Create Recurring Bill Payment API creates the bill transaction so that the payment will re-occur each pay period.</p>\n<p><em>This API is intended for PSP clients. If you are or plan to become a PSP client, use this API instead of its counterpart. Contact support if you're unsure of your client status.</em></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional/ Conditional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>Indicates unique customer ID.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get All Customer</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeCode</td>\n<td><em>String</em></td>\n<td>6</td>\n<td>Indicates Payee Code.  <br />This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeName</td>\n<td><em>String</em></td>\n<td>30</td>\n<td>Indicates Payee Name. This can be retrieved using the <strong>Bill Payment -&gt; Get Payee List</strong> API.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>RecurringAmount</td>\n<td><em>Decimal</em></td>\n<td>15</td>\n<td>Indicates amount that is to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PayeeAccountNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates Payee Account Number which is written on the bill to be paid.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Indicates description.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indcates Start Date of the recurring payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td></td>\n<td>Indcates End Date of the recurring payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstDueDateOption</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td><code>1</code> - Weekly,  <br /><code>2</code> - BiWeekly,  <br /><code>3</code> - Semi Monthly,  <br /><code>4</code> - Monthly,  <br /><code>5</code> - MonthEnd,  <br /><code>6</code> - Quarterly,  <br /><code>7</code> - QuarterEnd.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PeriodWeekly</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td><code>0</code> - Sunday  <br /><code>1</code> - Monday  <br /><code>2</code> - Tuesday  <br /><code>3</code> - Wednesday  <br /><code>4</code> - Thursday  <br /><code>5</code> - Friday  <br /><code>6</code> - Saturday  <br />  <br /><strong>Required</strong> if First Due DateOption is <code>1</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PeriodBiWeekly</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td><code>0</code> - Sunday  <br /><code>1</code> - Monday  <br /><code>2</code> - Tuesday  <br /><code>3</code> - Wednesday  <br /><code>4</code> - Thursday  <br /><code>5</code> - Friday  <br /><code>6</code> - Saturday  <br />  <br /><strong>Required</strong> if First Due DateOption is <code>2</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PeriodMonthly</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>Any date of the months.  <br />  <br /><strong>Required</strong> if First Due Date Option is <code>4</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>PeriodQuarterly</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>Any date of the months.  <br />  <br /><strong>Required</strong> if First Due Date Option is <code>6</code>.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant used in this recurring transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreateRecurringBillPaymentOpE1</td>\n<td>The Start Date Cannot Be Greater Than Or Equal To The End Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE2</td>\n<td>The End Date Cannot Be Less Than Or Equal To The Start Date.</td>\n</tr>\n<tr>\n<td>CreateRecurringBillPaymentOpE6</td>\n<td>The Period Is Not Valid.</td>\n</tr>\n<tr>\n<td>KYCStatusError</td>\n<td>KYC Status. Status May Be <strong>Declined</strong> or <strong>In Review.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateRecurringBillPayment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fec662ea-7e46-4095-a168-097572f4fd2e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PayeeCode\": \"000007\",\n    \"PayeeName\": \"BELL CANADA\",\n    \"CustomerNumber\": \"0220000001\",\n    \"PayeeAccountNumber\": \"24704420ZZZ804\",\n    \"RecurringAmount\": 2.3,\n    \"StartDate\": \"2020-04-07T00:00:00.0000000+00:00\",\n    \"EndDate\": \"2020-07-10T00:00:00.0000000+00:00\",\n    \"Description\": \"ApiTest\",\n    \"FirstDueDateOption\": 4,\n    \"PeriodWeekly\": 0,\n    \"PeriodBiWeekly\": 0,\n    \"PeriodMonthly\": 7,\n    \"PeriodQuarterly\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/BillPayment/CreateRecurringBillPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": 437,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"eecf76df-fa7b-4824-bf63-b699a3c04aff"}],"id":"00871176-ae91-4dc1-b11f-830472c5ad66","_postman_id":"00871176-ae91-4dc1-b11f-830472c5ad66","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Transfer  Between  Accounts","item":[{"name":"Custom Funds Transfer With Merchant","id":"d9be50d7-0f14-4f39-a9ca-75cbb5d16a59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 20,\r\n  \"explanation\": \"test1\",\r\n  \"sourceAccountId\": 136900,\r\n  \"destinationAccountId\": 136883,\r\n  \"clientReferenceNumber\": \"test123\",\r\n  \"MerchantNumber\": \"17120000038\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/TransferBetweenClientAccounts","description":"<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>11</td>\n<td>Indicates amount that is to be transferred.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Explanation</td>\n<td><em>String</em></td>\n<td>200</td>\n<td>Description of the transaction.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SourceAccountId</td>\n<td><em>Numeric</em></td>\n<td>12</td>\n<td>Indicates where the funds originate from.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DestinationAccountId</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the account to which the funds will be deposited into.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ClientReference</td>\n<td><em>String</em></td>\n<td>35</td>\n<td>Indicates the unique identifier for the client.  <br />If not provided, a DCBank reference will be used.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>20</td>\n<td>Indicates the Merchant used in this transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE2</td>\n<td>Account not found.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE7</td>\n<td>DestinationAccountNumber is not provided.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE8</td>\n<td>SourceAccountNumber is not provided.</td>\n</tr>\n<tr>\n<td>InsertTransactionBetweenAccountsCustomOpE9</td>\n<td>Amount is not provided.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","TransferBetweenClientAccounts"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d1c507d1-887b-486b-a068-9b82fcc0e849","name":"Custom Funds Transfer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 1.00,\r\n  \"explanation\": \"test\",\r\n  \"sourceAccountId\": 5,\r\n  \"destinationAccountId\": 2,\r\n  \"clientReferenceNumber\": \"test1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/FundsTransfer/FundsTransferCustom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": true,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"d9be50d7-0f14-4f39-a9ca-75cbb5d16a59"}],"id":"c6bd6d03-ace4-4f7b-9786-a30b145a9e64","_postman_id":"c6bd6d03-ace4-4f7b-9786-a30b145a9e64","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"f5390161-e26f-4ac1-b907-3ea2c91aca72","_postman_id":"f5390161-e26f-4ac1-b907-3ea2c91aca72","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Webhook","item":[{"name":"EFT Status Update Webhook 3.0","item":[],"id":"8d7cd07b-11ea-4fd1-ae99-11890db72e11","description":"<h3 id=\"description\">Description</h3>\n<p>When the status of an EFT has been updated, this payload will be delivered to the webhook URL that you have provided.</p>\n<p>This webhook is designed for PSP clients who have the regular Eft Status Update, and includes MerchantNumber</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionId</td>\n<td><em>Long</em></td>\n<td>Unique code representing the particular transaction</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Unique customer number</td>\n</tr>\n<tr>\n<td>CustomerAccountId</td>\n<td><em>Long</em></td>\n<td>Unique Id of the customers account</td>\n</tr>\n<tr>\n<td>CustomerAccountName</td>\n<td><em>String</em></td>\n<td>Name of the customer account</td>\n</tr>\n<tr>\n<td>Description</td>\n<td><em>String</em></td>\n<td>The transaction's description</td>\n</tr>\n<tr>\n<td>TransactionTypeId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypecode</td>\n<td><em>String</em></td>\n<td>Code Representation of the transaction type</td>\n</tr>\n<tr>\n<td>TransactionTypeDescription</td>\n<td><em>String</em></td>\n<td>Description of the transaction type</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Amount of the transaction</td>\n</tr>\n<tr>\n<td>EftTypeId</td>\n<td><em>Long</em></td>\n<td>Numerical representation of the eft type</td>\n</tr>\n<tr>\n<td>EftTypeCode</td>\n<td><em>String</em></td>\n<td>Code Representation if the eft type</td>\n</tr>\n<tr>\n<td>EftTypeDescription</td>\n<td><em>String</em></td>\n<td>Description of the eft type</td>\n</tr>\n<tr>\n<td>TransactionDate</td>\n<td><em>DateTime</em></td>\n<td>Date of the Transaction  <br />  <br />Ex format: 2022-06-03T04:00:08.472</td>\n</tr>\n<tr>\n<td>TransactionStatusDescription</td>\n<td><em>String</em></td>\n<td>Description of transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusCode</td>\n<td><em>String</em></td>\n<td>Code representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionStatusId</td>\n<td><em>Long</em></td>\n<td>numerical representation of the transaction status</td>\n</tr>\n<tr>\n<td>TransactionReferenceNumber</td>\n<td><em>String</em></td>\n<td>Number that uniquely references the transaction</td>\n</tr>\n<tr>\n<td>StoredTransactionType</td>\n<td><em>Short</em></td>\n<td>Transaction Type On Eft System. See <em>Stored Transaction Types</em> table.</td>\n</tr>\n<tr>\n<td>ReturnDate</td>\n<td><em>DateTime</em></td>\n<td>Date of return</td>\n</tr>\n<tr>\n<td>OriginatorShortName</td>\n<td><em>String</em></td>\n<td>Name of originator in short form</td>\n</tr>\n<tr>\n<td>OriginatorLongName</td>\n<td><em>String</em></td>\n<td>Name of originator in long form</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>The Merchant involved in the transaction</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"TransactionId\": 20413437,\n\"CustomerNumber\": \"10220000048\",\n\"CustomerAccountId\": 6024523148,\n\"CustomerAccountName\": \"Account name\",\n\"Description\": \"Test e-transfer Transaction\",\n\"TransactionTypeId\": 6020,\n\"TransactionTypecode\": \"C\",\n\"TransactionTypeDescription\": \"Credit\",\n\"Amount\": 2.09,\n\"EftTypeId\": 14004,\n\"EftTypeCode\": \"R\",\n\"EftTypeDescription\": \"Returned\",\n\"TransactionDate\": \"2022-06-03T04:00:08.472\",\n\"TransactionStatusDescription\": \"Pending\",\n\"TransactionStatusCode\": \"P\",\n\"TransactionStatusId\": 14000,\n\"TransactionReferenceNumber\": \"100000000127997234\"\n\"StoredTransactionType\": \"\",\n\"ReturnDate\": \"2022-06-03T04:00:08.472\",\n\"OriginatorShortName\": \"Short Form\",\n\"OriginatorLongName\": \"Long Form\",\n\"MerchantNumber\": \"M00000035\"\n}\n\n</code></pre><h3 id=\"eft-transaction-status\">EFT Transaction Status</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Eft Transaction Status</strong></th>\n<th><strong>EftTypeCode</strong></th>\n<th><strong>EftTypeID</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>P</td>\n<td>14000</td>\n<td>Transaction received, awaiting processing</td>\n</tr>\n<tr>\n<td>Deferred</td>\n<td>DF</td>\n<td>106787</td>\n<td>Will be processed on future date or not enough funds in your Client Account</td>\n</tr>\n<tr>\n<td>Ready To Send</td>\n<td>RD</td>\n<td>96269</td>\n<td>File in preparation</td>\n</tr>\n<tr>\n<td>Sent</td>\n<td>S</td>\n<td>14001</td>\n<td>Transaction processed by DCBank and sent to Network for processing</td>\n</tr>\n<tr>\n<td>Error</td>\n<td>E</td>\n<td>14002</td>\n<td>Transaction encountered an error; Possible errors include: the format is wrong, amount is too high, error from settlement bank, etc.</td>\n</tr>\n<tr>\n<td>Settled</td>\n<td>Y</td>\n<td>14003</td>\n<td>Settlement report received from network</td>\n</tr>\n<tr>\n<td>Returned</td>\n<td>R</td>\n<td>14004</td>\n<td>Returned by end user directly</td>\n</tr>\n<tr>\n<td>Rejected</td>\n<td>RJ</td>\n<td>14006</td>\n<td>Rejected by network or external bank</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>V</td>\n<td>14008</td>\n<td>Cancelled before sending to network</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>C</td>\n<td>14007</td>\n<td>An inbound EFT transaction has been recieved successfully</td>\n</tr>\n<tr>\n<td>Held</td>\n<td>H</td>\n<td>14020</td>\n<td>Funds have been held until Merchant is provided.  <br />Use Claim Held Transaction to associated a Merchant with the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"stored-transaction-types\">Stored Transaction Types</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Id</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Payroll Deposit</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Special Payroll</td>\n</tr>\n<tr>\n<td>202</td>\n<td>Vacation Payroll</td>\n</tr>\n<tr>\n<td>203</td>\n<td>Overtime Payroll</td>\n</tr>\n<tr>\n<td>204</td>\n<td>Advance Payroll</td>\n</tr>\n<tr>\n<td>205</td>\n<td>Commission Payroll</td>\n</tr>\n<tr>\n<td>206</td>\n<td>Bonus Payroll</td>\n</tr>\n<tr>\n<td>207</td>\n<td>Adjustment Payroll</td>\n</tr>\n<tr>\n<td>230</td>\n<td>Pension</td>\n</tr>\n<tr>\n<td>231</td>\n<td>Federal Pension</td>\n</tr>\n<tr>\n<td>232</td>\n<td>Provincial Pension</td>\n</tr>\n<tr>\n<td>233</td>\n<td>Private Pension</td>\n</tr>\n<tr>\n<td>240</td>\n<td>Annuity</td>\n</tr>\n<tr>\n<td>250</td>\n<td>Dividend</td>\n</tr>\n<tr>\n<td>251</td>\n<td>Common Dividend</td>\n</tr>\n<tr>\n<td>252</td>\n<td>Preferred Dividend</td>\n</tr>\n<tr>\n<td>260</td>\n<td>Investment</td>\n</tr>\n<tr>\n<td>261</td>\n<td>Mutual Funds</td>\n</tr>\n<tr>\n<td>271</td>\n<td>RSP Contribution</td>\n</tr>\n<tr>\n<td>272</td>\n<td>Retirement Income Fund</td>\n</tr>\n<tr>\n<td>280</td>\n<td>Interest</td>\n</tr>\n<tr>\n<td>330</td>\n<td>Insurance</td>\n</tr>\n<tr>\n<td>331</td>\n<td>Life Insurance</td>\n</tr>\n<tr>\n<td>332</td>\n<td>Auto Insurance</td>\n</tr>\n<tr>\n<td>333</td>\n<td>Property Insurance</td>\n</tr>\n<tr>\n<td>334</td>\n<td>Casualty Insurance</td>\n</tr>\n<tr>\n<td>335</td>\n<td>Mortgage Insurance</td>\n</tr>\n<tr>\n<td>336</td>\n<td>Health/Dental Claim Insurance</td>\n</tr>\n<tr>\n<td>350</td>\n<td>Loans</td>\n</tr>\n<tr>\n<td>351</td>\n<td>Personal Loans</td>\n</tr>\n<tr>\n<td>352</td>\n<td>Dealer Plan Loans</td>\n</tr>\n<tr>\n<td>353</td>\n<td>Farm Improvement Loans</td>\n</tr>\n<tr>\n<td>354</td>\n<td>Home Improvement Loans</td>\n</tr>\n<tr>\n<td>355</td>\n<td>Term Loans</td>\n</tr>\n<tr>\n<td>356</td>\n<td>Insurance Loans</td>\n</tr>\n<tr>\n<td>370</td>\n<td>Mortgage</td>\n</tr>\n<tr>\n<td>371</td>\n<td>Residential Mortgage</td>\n</tr>\n<tr>\n<td>372</td>\n<td>Commercial Mortgage</td>\n</tr>\n<tr>\n<td>373</td>\n<td>Farm Mortgage</td>\n</tr>\n<tr>\n<td>380</td>\n<td>Taxes</td>\n</tr>\n<tr>\n<td>381</td>\n<td>Income Taxes</td>\n</tr>\n<tr>\n<td>382</td>\n<td>Sales Taxes</td>\n</tr>\n<tr>\n<td>383</td>\n<td>Corporate Taxes</td>\n</tr>\n<tr>\n<td>384</td>\n<td>School Taxes</td>\n</tr>\n<tr>\n<td>385</td>\n<td>Property Taxes</td>\n</tr>\n<tr>\n<td>386</td>\n<td>Water Taxes</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Rent/Leases</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Residential Rent/Leases</td>\n</tr>\n<tr>\n<td>402</td>\n<td>Commercial Rent/Leases</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Equipment Rent/Leases</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Automobile Rent/Leases</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Appliance Rent/Leases</td>\n</tr>\n<tr>\n<td>420</td>\n<td>Cash Management</td>\n</tr>\n<tr>\n<td>430</td>\n<td>Bill Payment</td>\n</tr>\n<tr>\n<td>431</td>\n<td>Telephone Bill Payment</td>\n</tr>\n<tr>\n<td>432</td>\n<td>Gasoline Bill Payment</td>\n</tr>\n<tr>\n<td>433</td>\n<td>Hydro Bill Payment</td>\n</tr>\n<tr>\n<td>434</td>\n<td>Cable Bill Payment</td>\n</tr>\n<tr>\n<td>435</td>\n<td>Fuel Bill Payment</td>\n</tr>\n<tr>\n<td>436</td>\n<td>Utility Bill Payment</td>\n</tr>\n<tr>\n<td>437</td>\n<td>Internet Access Payment</td>\n</tr>\n<tr>\n<td>450</td>\n<td>Miscellaneous Payment</td>\n</tr>\n<tr>\n<td>451</td>\n<td>Customer Cheques</td>\n</tr>\n<tr>\n<td>452</td>\n<td>Expense Payment</td>\n</tr>\n<tr>\n<td>460</td>\n<td>Accounts Payable</td>\n</tr>\n<tr>\n<td>470</td>\n<td>Fees/Dues</td>\n</tr>\n<tr>\n<td>480</td>\n<td>Donations</td>\n</tr>\n<tr>\n<td>600</td>\n<td>Provincial Government</td>\n</tr>\n<tr>\n<td>601</td>\n<td>Family Support Plan</td>\n</tr>\n<tr>\n<td>602</td>\n<td>Housing Allowance</td>\n</tr>\n<tr>\n<td>603</td>\n<td>Income Security Benefits</td>\n</tr>\n<tr>\n<td>604</td>\n<td>Provincial Family Benefits</td>\n</tr>\n<tr>\n<td>605</td>\n<td>Combined Fed-Prov Payment</td>\n</tr>\n<tr>\n<td>606</td>\n<td>Worker’s Compensation Board</td>\n</tr>\n<tr>\n<td>607</td>\n<td>Employment Assistance</td>\n</tr>\n<tr>\n<td>650</td>\n<td>Inter-FI Funds Debit</td>\n</tr>\n<tr>\n<td>700</td>\n<td>Business PAD</td>\n</tr>\n<tr>\n<td>999</td>\n<td>Clearing Items</td>\n</tr>\n<tr>\n<td>701</td>\n<td>Commercial Investments</td>\n</tr>\n<tr>\n<td>702</td>\n<td>Commercial Insurance</td>\n</tr>\n<tr>\n<td>703</td>\n<td>Commercial Auto Insurance</td>\n</tr>\n<tr>\n<td>704</td>\n<td>Commercial Property Insurance</td>\n</tr>\n<tr>\n<td>705</td>\n<td>Commercial Casualty Insurance</td>\n</tr>\n<tr>\n<td>706</td>\n<td>Commercial Mortgage Insurance</td>\n</tr>\n<tr>\n<td>707</td>\n<td>Commercial Loans</td>\n</tr>\n<tr>\n<td>708</td>\n<td>Commercial Mortgage</td>\n</tr>\n<tr>\n<td>709</td>\n<td>Commercial Taxes</td>\n</tr>\n<tr>\n<td>710</td>\n<td>Commercial Income Taxes</td>\n</tr>\n<tr>\n<td>711</td>\n<td>Commercial Sales Taxes</td>\n</tr>\n<tr>\n<td>712</td>\n<td>Commercial GST</td>\n</tr>\n<tr>\n<td>713</td>\n<td>Commercial Property Taxes</td>\n</tr>\n<tr>\n<td>714</td>\n<td>Commercial Rent/Lease</td>\n</tr>\n<tr>\n<td>715</td>\n<td>Commercial Equipment Rent/Lease</td>\n</tr>\n<tr>\n<td>716</td>\n<td>Commercial Automobile Rent/Lease</td>\n</tr>\n<tr>\n<td>717</td>\n<td>Commercial Cash Management</td>\n</tr>\n<tr>\n<td>718</td>\n<td>Commercial Bill Payment</td>\n</tr>\n<tr>\n<td>719</td>\n<td>Commercial Telephone Bill Payment</td>\n</tr>\n<tr>\n<td>720</td>\n<td>Commercial Gasoline Bill Payment</td>\n</tr>\n<tr>\n<td>721</td>\n<td>Commercial Hydro Bill Payment</td>\n</tr>\n<tr>\n<td>722</td>\n<td>Commercial Cable Bill Payment</td>\n</tr>\n<tr>\n<td>723</td>\n<td>Commercial Fuel Bill Payment</td>\n</tr>\n<tr>\n<td>724</td>\n<td>Commercial Utility Bill Payment</td>\n</tr>\n<tr>\n<td>725</td>\n<td>Commercial Internet Bill Payment</td>\n</tr>\n<tr>\n<td>726</td>\n<td>Commercial Water Bill Payment</td>\n</tr>\n<tr>\n<td>727</td>\n<td>Commercial Auto Payment</td>\n</tr>\n<tr>\n<td>728</td>\n<td>Commercial Expense Payment</td>\n</tr>\n<tr>\n<td>729</td>\n<td>Commercial Accounts Payable</td>\n</tr>\n<tr>\n<td>730</td>\n<td>Commercial Fees/Dues</td>\n</tr>\n<tr>\n<td>900</td>\n<td>Edit Reject</td>\n</tr>\n<tr>\n<td>901</td>\n<td>NSF (Debit Only)</td>\n</tr>\n<tr>\n<td>902</td>\n<td>Account not found</td>\n</tr>\n<tr>\n<td>903</td>\n<td>Payment Stopped/Recalled</td>\n</tr>\n<tr>\n<td>905</td>\n<td>Account Closed</td>\n</tr>\n<tr>\n<td>907</td>\n<td>No Debit Allowed</td>\n</tr>\n<tr>\n<td>908</td>\n<td>Funds Not Cleared (Debit Only)</td>\n</tr>\n<tr>\n<td>909</td>\n<td>Currency/Account Mismatch</td>\n</tr>\n<tr>\n<td>910</td>\n<td>Payor/Payee Deceased</td>\n</tr>\n<tr>\n<td>911</td>\n<td>Account Frozen</td>\n</tr>\n<tr>\n<td>912</td>\n<td>Invalid/Incorrect Account No.</td>\n</tr>\n<tr>\n<td>914</td>\n<td>Incorrect Payor/Payee Name</td>\n</tr>\n<tr>\n<td>915</td>\n<td>No Agreement Existed</td>\n</tr>\n<tr>\n<td>916</td>\n<td>Not According to Agreement –Personal</td>\n</tr>\n<tr>\n<td>917</td>\n<td>Agreement Revoked – Personal</td>\n</tr>\n<tr>\n<td>918</td>\n<td>No Confirmation/Pre-Notification – Personal</td>\n</tr>\n<tr>\n<td>919</td>\n<td>Not According to Agreement - Business</td>\n</tr>\n<tr>\n<td>920</td>\n<td>Agreement Revoked – Business</td>\n</tr>\n<tr>\n<td>921</td>\n<td>No Confirmation/Pre-Notification – Business</td>\n</tr>\n<tr>\n<td>922</td>\n<td>Customer Initiated Return</td>\n</tr>\n<tr>\n<td>990</td>\n<td>Institution in Default</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8d7cd07b-11ea-4fd1-ae99-11890db72e11","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"KYC Screening Result Webhook","item":[],"id":"86fed4a0-d36e-432a-bb35-1d98fc948d1a","description":"<p>The KYC Screening Result Webhook serves as a notification mechanism for changes in screening status. It applies to individuals and entities such as customers, merchants, and franchisees. Whenever a screening status is updated, a detailed notification is promptly delivered.</p>\n<p>Payload</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Conditional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Use this value to match with a customer number recieved with the response of the initial CreateCustomer API.  <br />  <br />This is null if Merchant Number or Franchisee Number is provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>Use this value to match with a merchant number recieved with the response of the initial CreateMerchant API.  <br />  <br />This is null if Customer Number or Franchisee Number is provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>FranchiseeNumber</td>\n<td><em>String</em></td>\n<td>Use this value to match with a franchisee number. The number can be recieved with the response of the initial CreateMerchant API.  <br />  <br />This is null if Customer Number or Franchisee Number is provided.</td>\n<td>Conditional</td>\n</tr>\n<tr>\n<td>KycStatus</td>\n<td><em>String</em></td>\n<td>In review / Approved / Declined</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"statuses\">Statuses</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In review</td>\n<td>A KYC related case has been assigned to the compliance officer.</td>\n</tr>\n<tr>\n<td>Approved</td>\n<td>KYC related checks have been performed successfully.</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>KYC related checks have resulted in declined status.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"86fed4a0-d36e-432a-bb35-1d98fc948d1a","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"ETransfer Webhook 3.1 (PSP)","item":[],"id":"a4d10fb6-fcb0-47dd-9f93-a97234fdbd24","description":"<h3 id=\"description\"><strong>Description</strong></h3>\n<p>The eTransfer Webhook 3.0 is designed to keep you informed about the status of<br />eTransfers in real-time. When the status of an eTransfer is updated, a payload containing<br />relevant information will be delivered to the webhook URL provided.</p>\n<p>Each record of an etransfer update will POST as a single JSON object within the message body.</p>\n<p>We highly advise that you work your system around the statuses 'Received'|'Ready to Send', 'Sent', 'Rejected',<br />'Cancelled', 'Complete', as these webhooks involve money movement. If you have any issues with a transaction please contact our support desk and ask for additional confirmation.</p>\n<p>We would also advise that you pay special attention to the following fields, as they are the<br />main links between our system and yours:<br />ReferenceNumber:DCBank -&gt; DCBank's unique transaction identifier for the eTransfer.<br />ReferenceNumber:Client -&gt; Your unique transaction identifier for the eTransfer.<br />ReferenceNumber:Interac -&gt; Interac's unique transaction identifier for the eTransfer.<br />Status:Code -&gt; 'Received', 'Fulfilled', 'Sent', 'Rejected', 'Cancelled', 'Completed'</p>\n<h5 id=\"note-e-transfers-are-only-considered-completed-when-dcbank-sends-the-appropriate-webhook-notification\"><strong>Note:</strong> E-Transfers are only considered completed when DCBank sends the appropriate webhook notification.</h5>\n<p><em><strong>NOTE: This webhook is intended for PSP clients and acts as a replacement for Webhook 3.0. If you are a PSP client and are on an older webhook version, you will need to upgrade.</strong></em></p>\n<h3 id=\"payload-documentation\">Payload documentation</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TransactionType</td>\n<td><em>String</em></td>\n<td>Send Money or Request Money</td>\n</tr>\n<tr>\n<td>Priority</td>\n<td><em>String</em></td>\n<td>Real-Time, Bulk Regular or Bulk Priority</td>\n</tr>\n<tr>\n<td>Direction</td>\n<td><em>String</em></td>\n<td>Incoming or Outgoing. Outgoing - sent out from the dcbank system, Incoming - received to the dcbank system.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td><em>String</em></td>\n<td>Auto deposit, RTR Auto deposit, ANR, RTR ANR, Request Money Fulfillment, Send Money, RTR Send Money, Request Money</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>Amount of funds transferred or requested.</td>\n</tr>\n<tr>\n<td>Version</td>\n<td><em>String</em></td>\n<td>Webhook Version</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>The Merchant involved in the transaction</td>\n</tr>\n<tr>\n<td>Memo:Sent</td>\n<td><em>String</em></td>\n<td>The memo sent to the recipient</td>\n</tr>\n<tr>\n<td>Memo:Received</td>\n<td><em>String</em></td>\n<td>The memo received from the recipient</td>\n</tr>\n<tr>\n<td>ReferenceNumber:DCBank</td>\n<td><em>Numeric</em></td>\n<td>DCBank's unique reference number for this transfer.</td>\n</tr>\n<tr>\n<td>ReferenceNumber:Client</td>\n<td><em>String</em></td>\n<td>Your unique reference number for this transfer.</td>\n</tr>\n<tr>\n<td>ReferenceNumber:Interac</td>\n<td><em>String</em></td>\n<td>Interac's unique reference number for this transfer.</td>\n</tr>\n<tr>\n<td>ReferenceNumber:InteracFulfill</td>\n<td><em>String</em></td>\n<td>Interac's unique reference number for the fulfillment payment to a Request Money.</td>\n</tr>\n<tr>\n<td>Party:Type</td>\n<td><em>String</em></td>\n<td>Sender, Contact, Recipient, Responder.  <br />  <br />Sender - The party that initiated.  <br />Contact - The party that was sent to.  <br />Recipient - The party that actually completed the Send Money.  <br />Responder - The party that actually fulfilled the Request Money.</td>\n</tr>\n<tr>\n<td>Party:Name</td>\n<td><em>String</em></td>\n<td>The name of the party.  <br />  <br />Sender - The registered name of the Sender.  <br />Contact - The name used by Sender.  <br />Recipient or Responder - The registered name at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:Email</td>\n<td><em>String</em></td>\n<td>The email address of the party.  <br />  <br />Sender - The registered email of the Sender.  <br />Contact - The destination email used by the Sender.  <br />Recipient or Responder - This SHOULD be the registered email address at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:Phone</td>\n<td><em>String</em></td>\n<td>The phone number of the party.  <br />Sender - The registered phone number of the Sender.  <br />Contact - The destination phone number used by the Sender.  <br />Recipient or Responder - This SHOULD be the registered phone number at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:Account</td>\n<td><em>String</em></td>\n<td>The account details of the party.  <br />  <br />Sender - The registered account of the Send, if available.  <br />  <br />Contact - The destination account used by the Sender.  <br />  <br />Recipient or Responder - This SHOULD be the registered account at the participant financial institution.</td>\n</tr>\n<tr>\n<td>Party:CustomerNumber</td>\n<td><em>Numeric</em></td>\n<td>The DCBank unique customer number Contact. Only applicable to Contact's of outgoing transfers.</td>\n</tr>\n<tr>\n<td>Party:LegalName</td>\n<td><em>String</em></td>\n<td>Sender's legal name. Only applicable to Senders's of incoming transactions.</td>\n</tr>\n<tr>\n<td>Party:RegistrationName</td>\n<td><em>String</em></td>\n<td>Sender's registration name. Only applicable to Senders's of incoming transactions.</td>\n</tr>\n<tr>\n<td>Party:OtherFI</td>\n<td><em>String</em></td>\n<td>Sender's FI name of incoming transactions or Responder's FI name of money request</td>\n</tr>\n<tr>\n<td>Status:Code</td>\n<td><em>String</em></td>\n<td>The DCBank status of the transfer (see below).</td>\n</tr>\n<tr>\n<td>Status:Changed</td>\n<td><em>DateTime</em></td>\n<td>The date and time of when this status change occurred. In UTC timezone, formatted as \"yyyy-MM-ddThh:mm:ss.tttZ\".</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"outgoing-statuses\">Outgoing Statuses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Received</td>\n<td>Transaction has been received by DCBank</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>Transaction has been received by DCBank (only appears if a transaction is created via endpoints CreateEtransferTransaction or CreateEtransferTransactionWithCustomer)</td>\n</tr>\n<tr>\n<td>Sent</td>\n<td>Transaction has been processed by DCBank and sent to network.</td>\n</tr>\n<tr>\n<td>Fulfilled</td>\n<td>Interac received fulfillment money send. This is intermediate status. It may be skipped if a transaction is completed quite fast.</td>\n</tr>\n<tr>\n<td>Rejected</td>\n<td>Rejected by network or external financial institution, any fund movements have been reversed.</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Cancelled and any fund movements have been reversed.</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>Transaction has been processed by DCBank and sent to network.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"incoming-statuses\">Incoming Statuses</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Completed</td>\n<td>Transaction has been successfully completed. The fund movements have been completed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"interac-history-statuses-money-request\">Interac History Statuses (money request)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Initiated</td>\n<td>Request for Transfer received by the INTERAC e-Transfer system</td>\n</tr>\n<tr>\n<td>Fraud blocked</td>\n<td>Fraud blocked</td>\n</tr>\n<tr>\n<td>Fraud unblocked</td>\n<td>Fraud unblocked</td>\n</tr>\n<tr>\n<td>Available</td>\n<td>Request for Transfer available to be fulfilled</td>\n</tr>\n<tr>\n<td>Fulfilled</td>\n<td>INTERAC e-Transfer Request fulfilled by Responder. Atransfer is created in the INTERAC e-Transfer system.</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>Recipient declined the e-Transfer Request</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Sender cancelled e-Transfer Request</td>\n</tr>\n<tr>\n<td>Expired</td>\n<td>e-Transfer Request has expired</td>\n</tr>\n<tr>\n<td>Deposit Failed</td>\n<td>Transfer could not be deposited. Invalid/Closed Account is one of the possibilities.</td>\n</tr>\n<tr>\n<td>Deposit Complete</td>\n<td>Transfer deposited in the Requester’s account</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"interac-history-statuses-money-send\">Interac History Statuses (money send)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>e-Transfer initiated</td>\n<td>Sender requests transfer; request received by Interac</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>Online only – Funds have been deposited into Recipient’s account</td>\n</tr>\n<tr>\n<td>Fraud delay</td>\n<td>Fraud delay</td>\n</tr>\n<tr>\n<td>Fraud blocked</td>\n<td>Fraud blocked</td>\n</tr>\n<tr>\n<td>Fraud unblocked</td>\n<td>Fraud unblocked</td>\n</tr>\n<tr>\n<td>Declined</td>\n<td>Recipient declined the transfer</td>\n</tr>\n<tr>\n<td>Cancelled</td>\n<td>Sender cancelled transfer</td>\n</tr>\n<tr>\n<td>Expired</td>\n<td>Transfer has expired</td>\n</tr>\n<tr>\n<td>Recipient unable to answer security question</td>\n<td>Recipient validation rejected due to incorrect response to security question.</td>\n</tr>\n<tr>\n<td>Recipient answered security question</td>\n<td>Recipient answered security question correctly</td>\n</tr>\n<tr>\n<td>Direct Deposit Failed</td>\n<td>Transfer could not be deposited. Invalid/Closed Account is one of the possibilities.</td>\n</tr>\n<tr>\n<td>Processing Direct Deposit</td>\n<td>Transfer in process to be deposited.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Response</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StatusCode</td>\n<td>Return OK (HTTP status code 200).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payload-example\">Payload example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Amount\": 0.01,\n  \"Direction\": \"Outgoing\",\n  \"Priority\": \"Real-Time\",\n  \"PaymentType\": \"Auto deposit\",\n  \"TransactionType\": \"Send Money\",\n  \"Version\": \"3.0\",\n  \"MerchantNumber\": \"M0000052\",\n  \"References\": {\n    \"DcBank\": 10000000000807000,\n    \"Client\": \"clientreference\",\n    \"Interac\": \"C1AWXXXX\"\n  },\n  \"Parties\": [\n    {\n      \"Account\": 342289493,\n      \"Type\": \"Sender\",\n      \"Name\": \"Sender Name\",\n      \"Email\": \"SenderEmail@test.ca\"\n    },\n    {\n      \"CustomerNumber\": \"xxxx12345678\",\n      \"Type\": \"Contact\",\n      \"Name\": \"Contact Name\",\n      \"Email\": \"contact@test.ca\"\n    },\n    {\n      \"Type\": \"Recipient\",\n      \"Name\": \"Recipient Name\",\n      \"Email\": \"Recipient@test.ca\"\n    }\n  ],\n  \"InteracHistory\": [\n    {\n      \"Changed\": \"2024-10-04T20:24:00\",\n      \"Status\": \"Completed\"\n    }\n  ],\n  \"DcBankStatus\": {\n    \"Status\": \"Completed\",\n    \"Changed\": \"2024-10-04T20:24:33.08\"\n  },\n  \"Memo\": {\n    \"Sent\": \"sent memo/description\"\n  }\n}\n\n</code></pre>\n","_postman_id":"a4d10fb6-fcb0-47dd-9f93-a97234fdbd24","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"5f2894b5-e295-4cb9-a505-fd7eb3f79610","_postman_id":"5f2894b5-e295-4cb9-a505-fd7eb3f79610","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"DDT","item":[{"name":"Create DDTs for Merchant","id":"2a06dd6f-614f-4c74-9280-5c8241abbd2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"NumberOfRequestedDdt\": 1,\n    \"MerchantNumber\" : \"17120000073\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/CreateDdtsForMerchant","description":"<h3 id=\"description\">Description</h3>\n<p>This API generates one or more anonymous DDT numbers and associates them with a merchant upon creation using the required MerchantNumber field.</p>\n<p>Although the DDTs are associated with a merchant, they remain anonymous until the merchant explicitly reassigns each DDT to a particular customer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NumberOfRequestedDdt</td>\n<td>numerical</td>\n<td>3</td>\n<td>Number of requested DDT. Maximum value of 1000.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td>string</td>\n<td>11</td>\n<td>MerchantNumber</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><em>DDTNumber</em></td>\n<td><em>Numeric</em></td>\n<td>DDT number.</td>\n</tr>\n<tr>\n<td><em>SequenceNumber</em></td>\n<td><em>Numeric</em></td>\n<td>Specific DDT sequence number.</td>\n</tr>\n<tr>\n<td>PooledAccountNumber</td>\n<td><em>String</em></td>\n<td>Pooled Account number linked DDTs.</td>\n</tr>\n<tr>\n<td>PooledAccountName</td>\n<td><em>String</em></td>\n<td>Name of Pooled Account.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantCreateBulkDdtOpE1</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>MerchantCreateBulkDdtOpE2</td>\n<td>Merchant Not Found Or Is Inactive.</td>\n</tr>\n<tr>\n<td>CreateDDTAccountE1</td>\n<td>DDT Pool Account Not Found Or SP Error Occurred.</td>\n</tr>\n<tr>\n<td>CreateDDt01</td>\n<td>A Maximum of 1000 Bank Accounts Can Be Created At Once.</td>\n</tr>\n<tr>\n<td>CreateDDt02</td>\n<td>Invalid Sequence. This Sequence Has Been Used Before.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE1</td>\n<td>Invalid Program.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE2</td>\n<td>Invalid Unique Client ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE4</td>\n<td>Invalid Pool Account ID.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE6</td>\n<td>Funding Account Not Found.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE7</td>\n<td>Invalid Currency.</td>\n</tr>\n<tr>\n<td>ClientPooledAccountE8</td>\n<td>Sub Account Not Found For This Program.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","CreateDdtsForMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1822a248-e763-424d-83ed-2ec6d60e9645","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"NumberOfRequestedDdt\": 5\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/CreateBulkDdt"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 18:45:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"360","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"SequenceNumber\": 3,\n        \"EndSequenceNumber\": 8,\n        \"NumberOfRequestedDdt\": 5,\n        \"UniqueClientId\": 500034,\n        \"DDTNumberList\": [\n            {\n                \"DDTOwnerId\": 310408,\n                \"DDTId\": 21794,\n                \"DDTNumber\": \"35210009990881963\",\n                \"SequenceNumber\": 3,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310409,\n                \"DDTId\": 21795,\n                \"DDTNumber\": \"35210009918763939\",\n                \"SequenceNumber\": 4,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310410,\n                \"DDTId\": 21796,\n                \"DDTNumber\": \"35210009980932453\",\n                \"SequenceNumber\": 5,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310411,\n                \"DDTId\": 21797,\n                \"DDTNumber\": \"35210009975078676\",\n                \"SequenceNumber\": 6,\n                \"Email\": null\n            },\n            {\n                \"DDTOwnerId\": 310412,\n                \"DDTId\": 21798,\n                \"DDTNumber\": \"35210009946226495\",\n                \"SequenceNumber\": 7,\n                \"Email\": null\n            }\n        ],\n        \"PoolAccountNumber\": \"35210009606001301\",\n        \"PoolAccountName\": \"Pooled Account DDT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"2a06dd6f-614f-4c74-9280-5c8241abbd2c"},{"name":"Link DDT to Merchant Customer","id":"c1f2dbc2-7529-4038-aa07-06686df38173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DDTNumber\": \"35210009926713603\",\r\n  \"CustomerNumber\": \"17120000110\",\r\n  \"MerchantNumber\": \"17120000073\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/UpdateDdtForMerchant","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint assigns a DDT account to a specific customer under a given merchant.</p>\n<p>It performs a multi-stage validation and assignment process, ensuring data consistency and ownership rules are respected.</p>\n<ul>\n<li><p>If the <code>CustomerNumber</code> is not provided, the DDT account is simply assigned to the specified merchant.</p>\n</li>\n<li><p>If the <code>CustomerNumber</code> is provided:</p>\n<ul>\n<li><p>The endpoint validates that the customer exists and is of personal type.</p>\n</li>\n<li><p>If the customer is already linked to the same merchant, the DDT account is reassigned to the customer.</p>\n</li>\n<li><p>If the customer is linked to <strong>another</strong> merchant, the operation fails and must be resolved before reassignment.</p>\n</li>\n</ul>\n</li>\n<li><p>The DDT account must:</p>\n<ul>\n<li><p>Match the provided DDT number.</p>\n</li>\n<li><p>Belong to the current client.</p>\n</li>\n<li><p>Be of the DDT account type.</p>\n</li>\n<li><p>Either unassigned or already assigned to the given merchant.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>11</td>\n<td>The DDT number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>The Customer number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>11</td>\n<td>Required and must belong to an active and valid merchant.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantUpdateDdtAccountOpE1</td>\n<td>The Request Cannot Be Null.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE2</td>\n<td>Merchant Number Must Be Provided.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE3</td>\n<td>Merchant Not Found Or Is Inactive.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE4</td>\n<td>DDT Account Not Found Or Reserved For Another Merchant.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE5</td>\n<td>DDT Detail Not Found For The Account.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE6</td>\n<td>Customer Not Found.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE7</td>\n<td>Customer Is Not <code>P - Personal</code> Client.</td>\n</tr>\n<tr>\n<td>MerchantUpdateDdtAccountOpE8</td>\n<td>Customer Is Already Linked To Another Client.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}},"urlObject":{"path":["integrationapi","v1.0","PSPMerchant","UpdateDdtForMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1f2dbc2-7529-4038-aa07-06686df38173"},{"name":"Search DDTs for Merchant","id":"0c0fcf7b-b101-48a3-9205-af447834b650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    //\"MerchantNumber\": \"17120000092\",\r\n    //\"DDTNumber\": 996095717,\r\n    //\"BeginDate\": \"2025-07-20\",\r\n    //\"EndDate\": \"2025-07-22\",\r\n    \"DDTStatus\": \"A\",\r\n    \"Cursor\": null,\r\n    \"Limit\": 2,\r\n    \"Sort\": \"desc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/SearchDdtsForMerchant","description":"<h3 id=\"description\">Description</h3>\n<p>Returns a paginated list of DDT accounts matching specified search criteria such as merchant number, DDT number, account status, and date range</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Filter by merchant's parent customer number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Filter by specific DDT number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>BeginDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>Filter accounts assigned on or after this date (yyyy-MM-dd).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td><em>DateTime</em></td>\n<td>-</td>\n<td>Filter accounts assigned on or before this date (yyyy-MM-dd).</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DDTStatus</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>Search for accounts with the following status values:  <br /><code>A</code> Active  <br /><code>C</code> Closed<code>   D</code> Deactivated  <br /><code>I</code> Inactive  <br /><code>T</code> Suspended</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Sort</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>\"ASC\" or \"DESC\" for ascending or descending ordering.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Cursor</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Used for pagination.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td><em>Numeric</em></td>\n<td>-</td>\n<td>Max number of records to return.  <br />  <br />Max = 100, Default = 25.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PoolAccountNumber</td>\n<td><em>String</em></td>\n<td>IBAN of the DDT pooled account.</td>\n</tr>\n<tr>\n<td>PoolAccountName</td>\n<td><em>String</em></td>\n<td>Display name of the pooled account.</td>\n</tr>\n<tr>\n<td>DDTList</td>\n<td><em>Array</em></td>\n<td>A list of matching DDT accounts.</td>\n</tr>\n<tr>\n<td>NextCursor</td>\n<td><em>Long</em></td>\n<td>Used for pagination.</td>\n</tr>\n<tr>\n<td>HasMore</td>\n<td><em>Boolean</em></td>\n<td><code>True</code> if there are more items to be shown. <code>False</code> if not.</td>\n</tr>\n<tr>\n<td>DDTNumber</td>\n<td><em>Numeric</em></td>\n<td>DDT number.</td>\n</tr>\n<tr>\n<td>MerchantNumber</td>\n<td><em>String</em></td>\n<td>Parent merchant’s number.</td>\n</tr>\n<tr>\n<td>CustomerNumber</td>\n<td><em>String</em></td>\n<td>Direct customer number.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td><em>String</em></td>\n<td>First name.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td><em>String</em></td>\n<td>Middle name.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>String</em></td>\n<td>Last name.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>Date of birth.</td>\n</tr>\n<tr>\n<td>ExpireDate</td>\n<td><em>DateTime</em></td>\n<td>Account expiration date.</td>\n</tr>\n<tr>\n<td>IssuedDate</td>\n<td><em>DateTime</em></td>\n<td>Account issue date.</td>\n</tr>\n<tr>\n<td>DDTStatus</td>\n<td><em>String</em></td>\n<td>Status label (e.g., <code>Active</code>, <code>Inactive</code>).</td>\n</tr>\n<tr>\n<td>Email</td>\n<td><em>String</em></td>\n<td>Email address.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td><em>String</em></td>\n<td>Full phone with country code (if exist), e.g., <code>+1...</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantSearchDdtAccountsOpE1</td>\n<td>DDT Pool Account Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>July 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","SearchDdtsForMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"971deefa-145a-4f1a-8d75-b425bec06337","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"BeginDate\": \"2020-01-01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/Ddt/Search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Jul 2020 18:46:52 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"561","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"Server","value":"nginx/1.15.10","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Set-Cookie","value":"ARRAffinity=e53f780d78dfacceb00f5c9d9ed6f3bf42c0a4a3f350b3c231ec3b1af2b81b34;Path=/;HttpOnly;Domain=dcb-mrcapi-uat.azurewebsites.net:443","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"PoolAccountBalance\": 0,\n        \"DDTList\": [\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-03T09:50:09.937\",\n                \"IssuedDate\": \"2020-07-03T09:50:09.97\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310250,\n                \"DDTId\": 21527,\n                \"DDTNumber\": \"35210009961942620\",\n                \"SequenceNumber\": 1,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-03T09:50:10.043\",\n                \"IssuedDate\": \"2020-07-03T09:50:10.047\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310251,\n                \"DDTId\": 21528,\n                \"DDTNumber\": \"35210009933317117\",\n                \"SequenceNumber\": 2,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.72\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.737\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310408,\n                \"DDTId\": 21794,\n                \"DDTNumber\": \"35210009990881963\",\n                \"SequenceNumber\": 3,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.8\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.807\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310409,\n                \"DDTId\": 21795,\n                \"DDTNumber\": \"35210009918763939\",\n                \"SequenceNumber\": 4,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.827\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.83\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310410,\n                \"DDTId\": 21796,\n                \"DDTNumber\": \"35210009980932453\",\n                \"SequenceNumber\": 5,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.867\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.88\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310411,\n                \"DDTId\": 21797,\n                \"DDTNumber\": \"35210009975078676\",\n                \"SequenceNumber\": 6,\n                \"Email\": \"\"\n            },\n            {\n                \"SIN\": null,\n                \"Name\": \"\",\n                \"MiddleName\": null,\n                \"LastName\": null,\n                \"DateOfBirth\": null,\n                \"ExpireDate\": \"2021-07-24T18:45:05.92\",\n                \"IssuedDate\": \"2020-07-24T18:45:05.923\",\n                \"DDTBalance\": 0,\n                \"DDTStatus\": \"A\",\n                \"DDTStatusDesc\": \"Active\",\n                \"Phone\": \"\",\n                \"DDTOwnerId\": 310412,\n                \"DDTId\": 21798,\n                \"DDTNumber\": \"35210009946226495\",\n                \"SequenceNumber\": 7,\n                \"Email\": \"\"\n            }\n        ],\n        \"PoolAccountNumber\": \"35210009606001301\",\n        \"PoolAccountName\": \"Pooled Account DDT\"\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": []\n}"}],"_postman_id":"0c0fcf7b-b101-48a3-9205-af447834b650"}],"id":"33c4b751-dd00-4fd5-828f-0d51e18a641d","_postman_id":"33c4b751-dd00-4fd5-828f-0d51e18a641d","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"Cards/Wallet","item":[{"name":"Link Customers To Merchant","id":"677df84b-c8e4-42d9-b26a-ea100b075f67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"MerchantCustomer\": [\r\n    { \"MerchantNumber\": \"12347777777\", \"CustomerNumber\": \"12340000001\" },\r\n    //{ \"MerchantNumber\": \"\", \"CustomerNumber\": \"12340000002\" },\r\n    //{ \"MerchantNumber\": \"12348888888\", \"CustomerNumber\": \"12340000003\" },\r\n    //{ \"MerchantNumber\": \"12348888888\", \"CustomerNumber\": \"12340000004\" },\r\n    //{ \"MerchantNumber\": null, \"CustomerNumber\": \"12340000005\" }\r\n  ],\r\n  \"ForceCustomerMove\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/PSPMerchant/LinkCustomersToMerchant","description":"<h3 id=\"link-customers-to-merchant\">Link Customers To Merchant</h3>\n<p>This endpoint is used by a PSP (Payment Service Provider) to <strong>link or unlink customers to/from a merchant entity</strong> within the system.</p>\n<ul>\n<li><p>If <code>ForceCustomerMove</code> is <code>false</code>, existing parent linkage will be preserved and new links will be denied unless the customer is unlinked.</p>\n</li>\n<li><p>If <code>ForceCustomerMove</code> is <code>true</code>, the current parent is <strong>overwritten</strong>.</p>\n</li>\n<li><p>If <code>MerchantNumber</code> is <code>null</code> or empty (<code>\"\"</code>), the system treats this as a request to <strong>unlink the customer</strong>.</p>\n</li>\n</ul>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MerchantCustomer</td>\n<td><em>Array</em></td>\n<td>-</td>\n<td>A list of merchant-customer pairs to link or unlink</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>MerchantCustomer[].MerchantNumber</td>\n<td><em>String</em> <em>(nullable)</em></td>\n<td>-</td>\n<td>The merchant's external number. If null or empty, customer will be unlinked.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>MerchantCustomer[].CustomerNumber</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The customer's external number to be linked/unlinked.</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>ForceCustomerMove</td>\n<td><em>Boolean</em></td>\n<td>-</td>\n<td>Whether to override existing parent link (<code>true = override</code>, <code>false = skip if already linked</code>).</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LinkCustomersToMerchantOpE1</td>\n<td>Invalid Request: No Customers To Link.</td>\n</tr>\n<tr>\n<td>LinkCustomersToMerchantOpE2</td>\n<td>No Valid Customers To Link After Validation.</td>\n</tr>\n<tr>\n<td>LinkCustomersToMerchantOpE3</td>\n<td>No Customers Were Linked To The Merchant.</td>\n</tr>\n<tr>\n<td>parameterList[]</td>\n<td>Contains Additional Warnings Or Messages Such As:  <br />- Invalid Merchants,  <br />- Customers Not Found,  <br />- Skipped Due To Existing Links.  <br />  <br />  <br />This may be present even when <strong>IsSucceeded</strong> == <code>True</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>June 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","PSPMerchant","LinkCustomersToMerchant"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"677df84b-c8e4-42d9-b26a-ea100b075f67"}],"id":"be02c493-dd55-4dd3-98ad-6004ec8cc8bd","_postman_id":"be02c493-dd55-4dd3-98ad-6004ec8cc8bd","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"id":"cded4311-a18d-4754-a7b6-1db65acfcc47","_postman_id":"cded4311-a18d-4754-a7b6-1db65acfcc47","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"ProcessPayment","item":[{"name":"New Payment","id":"84fdee4b-1b1e-4d74-961e-ba7722d748b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"currency\": 124,\r\n  \"orderId\": \"f373849d-92b6-473e-a97d-3e0a5cba900e\",\r\n  \"amount\": 1,\r\n  \"lang\": \"EN\",\r\n  \"ecommerceTxnType\": 0,\r\n  \"txnInitiationType\": 0,\r\n  \"cardHolderIp\": \"192.168.0.1\",\r\n  \"cardToken\": \"5c5f0de571d24bfe8a801c5af85d0a97\",\r\n  \"cardNumber\": \"\",\r\n  \"expiryDate\": \"\",\r\n  \"cvv2\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ProcessPayment/Auth","description":"<h3 id=\"description\">Description</h3>\n<p>The Auth API authorizes card transactions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Currency</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Indicates the type of currency being used.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OrderId</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Order ID for the authorized transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>12</td>\n<td>Indicates the amount of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Lang</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Indicates the language.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EcommerceTxnType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates the transaction type.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TxnInitiationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates where the transaction initiated from.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardHolderIp</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>CardHolder's IP.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardToken</td>\n<td><em>String</em></td>\n<td>32</td>\n<td>Card Token Number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>19</td>\n<td>Card Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>DateTime</em></td>\n<td>4  <br />YYMM</td>\n<td>Expiration Date for Card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Cvv2</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>CVV for card.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PersistToken</td>\n<td><em>Boolean</em></td>\n<td>5</td>\n<td>PersistToken = <code>True</code> Card data will be saved to be re-used.  <br />  <br />If PersistToken = <code>False</code> no card data will be saved.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardNumberRequired</td>\n<td>Card Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CardTokenServiceError</td>\n<td>{\\\"type\\\":\\\"<a href=\"https://tools.ietf.org/html/rfc9110#section-15.5.5%5C%5C\">https://tools.ietf.org/html/rfc9110#section-15.5.5\",\"title\":\"Not</a> Found\\\",\\\"status\\\":404,\\\"traceId\\\":\\\"00-6e83c3be756018c965ae2fe21fc9f262-4c88ba91311ce81f-01\\\"}</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ProcessPayment","Auth"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84fdee4b-1b1e-4d74-961e-ba7722d748b5"},{"name":"Void Payment","id":"2f5480c3-062f-4711-8b03-d8d0ffa2f134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"processId\": \"42f3555c-6683-4b0e-a715-8f2f2634c8b4\",\r\n  \"orderId\": \"f373849d-92b6-473e-a97d-3e0a5cba900d\",\r\n  \"lang\": \"EN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ProcessPayment/Void","description":"<h3 id=\"description\">Description</h3>\n<p>The Void API Voids card transactions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProcessId</td>\n<td><em>Numeric</em></td>\n<td>50</td>\n<td>Indicates the type of currency being used.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OrderId</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Order ID for the void transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Lang</td>\n<td><em>Numeric</em></td>\n<td>2</td>\n<td>Language for message fields in response. (\"EN\", \"TR\").</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ProcessPayment","Void"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f5480c3-062f-4711-8b03-d8d0ffa2f134"},{"name":"Refund Payment","id":"7fae1d70-0294-4284-8ad8-f24f75be0a3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"processId\": \"42f3555c-6683-4b0e-a715-8f2f2634c8b4\",\r\n  \"orderId\": \"f373849d-92b6-473e-a97d-3e0a5cba900d\",\r\n  \"lang\": \"EN\",\r\n  \"amount\": 30\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ProcessPayment/Refund","description":"<h3 id=\"description\">Description</h3>\n<p>The Refund API Refunds card transactions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProcessId</td>\n<td><em>Numeric</em></td>\n<td>50</td>\n<td>Indicates the type of currency being used.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OrderId</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Order ID for the void transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Lang</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Language for message fields in response. (\"EN\", \"TR\").</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>15</td>\n<td>Indicates amount of payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ProcessPayment","Refund"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fae1d70-0294-4284-8ad8-f24f75be0a3c"},{"name":"Pre Authorization","id":"2745a1ce-6bce-42a8-876f-684589a6c8b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"currency\": 124,\r\n  \"orderId\": \"f373849d-92b6-473e-a97d-3e0a5cba900d\",\r\n  \"amount\": 20,\r\n  \"lang\": \"EN\",\r\n  \"ecommerceTxnType\": 0,\r\n  \"cardHolderIp\": \"192.168.0.1\",\r\n  \"cardToken\": \"6666d6a0157f44d88086ef8499ad565e\",\r\n  \"cardNumber\": \"\",\r\n  \"expiryDate\": \"\",\r\n  \"cvv2\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ProcessPayment/PreAuth","description":"<h3 id=\"description\">Description</h3>\n<p>The Preauth API Pre-authorizes card transactions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Currency</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>Indicates the type of currency being used.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OrderId</td>\n<td><em>String</em></td>\n<td>150</td>\n<td>Order ID for the authorized transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>12</td>\n<td>Indicates amount of payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Lang</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Indicates language.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EcommerceTxnType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates transaction type.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>TxnInitiationType</td>\n<td><em>Numeric</em></td>\n<td>1</td>\n<td>Indicates transaction initiated from.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardHolderIp</td>\n<td><em>String</em></td>\n<td>15</td>\n<td>CardHolder's IP.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardToken</td>\n<td><em>String</em></td>\n<td>32</td>\n<td>Card Token Number.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CardNumber</td>\n<td><em>String</em></td>\n<td>19</td>\n<td>Card Number.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>ExpiryDate</td>\n<td><em>String</em></td>\n<td>4  <br />YYMM</td>\n<td>Expiration Date for Card.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Cvv2</td>\n<td><em>Numeric</em></td>\n<td>3</td>\n<td>CVV number on card.</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CardNumberRequired</td>\n<td>Card Number Cannot Be Empty.</td>\n</tr>\n<tr>\n<td>CardTokenServiceError</td>\n<td>{\\\"type\\\":\\\"<a href=\"https://tools.ietf.org/html/rfc9110#section-15.5.5%5C%5C\">https://tools.ietf.org/html/rfc9110#section-15.5.5\",\"title\":\"Not</a> Found\\\",\\\"status\\\":404,\\\"traceId\\\":\\\"00-6e83c3be756018c965ae2fe21fc9f262-4c88ba91311ce81f-01\\\"}</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"version\">Version</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>October 2025</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ProcessPayment","PreAuth"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2745a1ce-6bce-42a8-876f-684589a6c8b0"},{"name":"Post Authorization","id":"57243b13-cee9-4788-b84b-e3ec32bcd4b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"processId\": \"42f3555c-6683-4b0e-a715-8f2f2634c8b4\",\r\n  \"orderId\": \"f373849d-92b6-473e-a97d-3e0a5cba900d\",\r\n  \"lang\": \"EN\",\r\n  \"amount\": 30\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/ProcessPayment/PostAuth","description":"<h3 id=\"description\">Description</h3>\n<p>Entered a detailed description of the API.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Max Length</th>\n<th>Description</th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProcessId</td>\n<td><em>Numeric</em></td>\n<td>50</td>\n<td>Indicates the type of currency being used.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>OrderId</td>\n<td><em>Numeric</em></td>\n<td>150</td>\n<td>Order ID for the authorized transaction.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Lang</td>\n<td><em>String</em></td>\n<td>2</td>\n<td>Indicates language.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td><em>Decimal</em></td>\n<td>12</td>\n<td>The amount of the payment.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","ProcessPayment","PostAuth"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57243b13-cee9-4788-b84b-e3ec32bcd4b8"}],"id":"82b682d3-e196-4202-b2ea-494742bc68a1","_postman_id":"82b682d3-e196-4202-b2ea-494742bc68a1","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}},{"name":"CaaS","item":[{"name":"Address Verification","id":"9263ed24-2e04-4868-a0dc-ff44354b1425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"addressLineOne\": \"736 Meridian Rd NE\",\r\n  \"addressLineTwo\": \"\",\r\n  \"city\": \"Calgary\",\r\n  \"province\": \"Alberta\",\r\n  \"countryName\": \"Canada\",\r\n  \"postCode\": \"T2A2N7\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/simplecheck/address-verification","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint provides address verification</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th>Required/ Optional</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>addressLineOne</td>\n<td><em>varchar</em>(200)</td>\n<td>200</td>\n<td>The civic address line 1.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>addressLineTwo</td>\n<td><em>varchar</em>(200)</td>\n<td>200</td>\n<td>The civic address line 2.</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>city</td>\n<td><em>varchar</em>(100)</td>\n<td>100</td>\n<td>The city where the address is located.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>province</td>\n<td><em>varchar</em>(100)</td>\n<td>100</td>\n<td>The province where the city is located.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>countryName</td>\n<td><em>varchar</em>(100)</td>\n<td>100</td>\n<td>The country where the province is located.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>postCode</td>\n<td><em>varchar</em>(20)</td>\n<td>20</td>\n<td>The postal code of the address.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>addressLineOne</td>\n<td><em>varchar</em></td>\n<td>The civic address line 1.</td>\n</tr>\n<tr>\n<td>addressLineTwo</td>\n<td><em>varchar</em></td>\n<td>The civic address line 2.</td>\n</tr>\n<tr>\n<td>city</td>\n<td><em>varchar</em></td>\n<td>The city where the address is located.</td>\n</tr>\n<tr>\n<td>province</td>\n<td><em>varchar</em></td>\n<td>The province where the city is located.</td>\n</tr>\n<tr>\n<td>country</td>\n<td><em>varchar</em></td>\n<td>The country where the province is located.</td>\n</tr>\n<tr>\n<td>postCode</td>\n<td><em>varchar</em></td>\n<td>The postal code of the address.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CaasOpErr01</td>\n<td>Check Parameter List For More Details.</td>\n</tr>\n<tr>\n<td>CaasOpErr02</td>\n<td>Configuration Error.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Permissions Denied.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Route Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","caas","simplecheck","address-verification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"80687cc3-1648-4ab8-b712-2105c0a3a5f9","name":"Address Verification","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"addressLineOne\": \"736 Meridian Rd NE\",\r\n  \"addressLineTwo\": \"\",\r\n  \"city\": \"Calgary\",\r\n  \"province\": \"Alberta\",\r\n  \"countryName\": \"Canada\",\r\n  \"postCode\": \"T2A2N7\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/simplecheck/address-verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 15:25:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"response\": {\n            \"addressLineOne\": null,\n            \"addressLineTwo\": null,\n            \"city\": null,\n            \"province\": null,\n            \"countryName\": null,\n            \"postCode\": null\n        },\n        \"isSuccessful\": true,\n        \"errors\": []\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"9263ed24-2e04-4868-a0dc-ff44354b1425"},{"name":"Blacklist Check","id":"86a40f46-adce-48b2-a609-fe8aeb17ff59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Senata\",\r\n  \"email\": \"anrtest05@gmail.com\",\r\n  \"dateOfBirth\": \"1981-01-05\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/simplecheck/blacklist-check","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint provides blacklist check</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>varchar</em></td>\n<td>N/A</td>\n<td>The name of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>email</td>\n<td><em>varchar</em></td>\n<td>N/A</td>\n<td>The email of the person being checked.</td>\n<td><strong>Optional</strong></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>yyyy-mm-dd</td>\n<td>The date of birth of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>entity</strong></td>\n<td>object</td>\n<td>Entity being checked</td>\n</tr>\n<tr>\n<td>name</td>\n<td><em>varchar</em></td>\n<td>Name of the entity being checked</td>\n</tr>\n<tr>\n<td>email</td>\n<td><em>varchar</em></td>\n<td>Email address of the entity being checked</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><em>varchar</em></td>\n<td>The persons date of birth.</td>\n</tr>\n<tr>\n<td><strong>internalBlacklistCheck</strong></td>\n<td>object</td>\n<td>Internal blacklist check result</td>\n</tr>\n<tr>\n<td>blacklist</td>\n<td>array</td>\n<td>List of internal blacklist matches</td>\n</tr>\n<tr>\n<td>legalNameOfBusiness</td>\n<td><em>varchar</em></td>\n<td>The legal business name.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td><em>varchar</em></td>\n<td>The first name of the person.</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td><em>varchar</em></td>\n<td>The middle name of the person.</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td><em>varchar</em></td>\n<td>The last name of the person.</td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>The persons date of birth.</td>\n</tr>\n<tr>\n<td>countryName</td>\n<td><em>varchar</em></td>\n<td>The name of the country the person resides.</td>\n</tr>\n<tr>\n<td><strong>eTransferBlacklistCheck</strong></td>\n<td>object</td>\n<td>eTransfer blacklist check result</td>\n</tr>\n<tr>\n<td>blacklist</td>\n<td>array</td>\n<td>List of eTransfer blacklist matches</td>\n</tr>\n<tr>\n<td>email</td>\n<td><em>varchar</em></td>\n<td>Blacklisted email address</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CaasOpErr01</td>\n<td>Check Parameter List For More Details.</td>\n</tr>\n<tr>\n<td>CaasOpErr02</td>\n<td>Configuration Error.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Permissions Denied.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Route Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>January 2026</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","caas","simplecheck","blacklist-check"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8d23ab7b-4fb1-474b-b6c2-772c5a35a28b","name":"Blacklist Check","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Test\",\r\n  \"email\": \"test@test.com\",\r\n  \"dateOfBirth\": \"2025-04-08\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/simplecheck/blacklist-check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 15:27:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"response\": {\n            \"entity\": {\n                \"name\": \"Test\",\n                \"email\": \"test@test.com\",\n                \"dateOfBirth\": \"04/08/2025\"\n            },\n            \"internalBlacklistCheck\": {\n                \"blacklist\": [\n                    {\n                        \"legalNameOfBusiness\": \"test\",\n                        \"firstName\": null,\n                        \"middleName\": null,\n                        \"lastName\": null,\n                        \"dateOfBirth\": null,\n                        \"countryName\": \"Canada\"\n                    }\n                ]\n            },\n            \"eTransferBlacklistCheck\": {\n                \"blacklist\": []\n            }\n        },\n        \"isSuccessful\": true,\n        \"errors\": []\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"86a40f46-adce-48b2-a609-fe8aeb17ff59"},{"name":"Corporate Registry Check","id":"b7cab7b6-aa3a-43b3-85a8-ed61263bbc24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"companyName\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/simplecheck/esc","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint provides the results of a corporate registry check.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Title</th>\n<th>Type</th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompanyName</td>\n<td><em>strvarchar</em>(100)</td>\n<td>100</td>\n<td>The name of the company.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderReference</td>\n<td><em>String</em></td>\n<td>The reference number of the order (the check).</td>\n</tr>\n<tr>\n<td>corporationName</td>\n<td><em>String</em></td>\n<td>The name of the corporation being checked.</td>\n</tr>\n<tr>\n<td>corporationNumber</td>\n<td><em>Numeric</em></td>\n<td>The number of the corporation being checked.</td>\n</tr>\n<tr>\n<td>incorporationDate</td>\n<td><em>DateTime</em></td>\n<td>The date the company was incorporated.</td>\n</tr>\n<tr>\n<td>corporationStatus</td>\n<td><em>String</em></td>\n<td>The corporation status of the company.</td>\n</tr>\n<tr>\n<td>isActive</td>\n<td><em>Boolean</em></td>\n<td>Whether they are an active company or not.</td>\n</tr>\n<tr>\n<td>province</td>\n<td><em>String</em></td>\n<td>The province the company operates in.</td>\n</tr>\n<tr>\n<td>city</td>\n<td><em>String</em></td>\n<td>The city the company operates in.</td>\n</tr>\n<tr>\n<td>homeJurisdiction</td>\n<td><em>String</em></td>\n<td>The home jurisdiction of the company.</td>\n</tr>\n<tr>\n<td>businessEntityType</td>\n<td><em>String</em></td>\n<td>The business entity type.</td>\n</tr>\n<tr>\n<td>entityType</td>\n<td><em>String</em></td>\n<td>The entity type.</td>\n</tr>\n<tr>\n<td>statusDate</td>\n<td><em>DateTime</em></td>\n<td>The status date.</td>\n</tr>\n<tr>\n<td>nameStatus</td>\n<td><em>String</em></td>\n<td>The name status.</td>\n</tr>\n<tr>\n<td>isCororationStatusActive</td>\n<td><em>Boolean</em></td>\n<td>Indicates if the corporation is active or not.</td>\n</tr>\n<tr>\n<td>fullStatus</td>\n<td><em>String</em></td>\n<td>If the corporate has full status.</td>\n</tr>\n<tr>\n<td>annualReturnCompliance</td>\n<td><em>String</em></td>\n<td>Annual return compliance.</td>\n</tr>\n<tr>\n<td>isCloseMatch</td>\n<td><em>Boolean</em></td>\n<td>Whether or not the company is a close match for any of those on the registry.</td>\n</tr>\n<tr>\n<td>changeType</td>\n<td><em>String</em></td>\n<td>Change type.</td>\n</tr>\n<tr>\n<td>changeNumber</td>\n<td><em>Numeric</em></td>\n<td>Change number.</td>\n</tr>\n<tr>\n<td>changeName</td>\n<td><em>String</em></td>\n<td>Change Name.</td>\n</tr>\n<tr>\n<td>score</td>\n<td><em>Numeric</em></td>\n<td>Score.</td>\n</tr>\n<tr>\n<td>confidenceScore</td>\n<td><em>Numeric</em></td>\n<td>Confidence Score of the match if any.</td>\n</tr>\n<tr>\n<td>nameScore</td>\n<td><em>Numeric</em></td>\n<td>Name score of the match, if any.</td>\n</tr>\n<tr>\n<td>numberScore</td>\n<td><em>Numeric</em></td>\n<td>Number score of the match, if any.</td>\n</tr>\n<tr>\n<td>formationDateScore</td>\n<td><em>Numeric</em></td>\n<td>Formation date score of the match, if any.</td>\n</tr>\n<tr>\n<td>jurisdictionScore</td>\n<td><em>Numeric</em></td>\n<td>Jusisdiction score of the match, if any.</td>\n</tr>\n<tr>\n<td>typeScore</td>\n<td><em>Numeric</em></td>\n<td>The type score.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CaasOpErr01</td>\n<td>Check Parameter List For More Details.</td>\n</tr>\n<tr>\n<td>CaasOpErr02</td>\n<td>Configuration Error.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Permissions Denied.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Route Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","caas","simplecheck","esc"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4d572d88-7230-4ea4-a502-897deaf7be39","name":"ESC","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"companyName\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/simplecheck/esc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 16:45:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"response\": {\n            \"orderReference\": \"ESC2780715\",\n            \"escCorporationChecksResults\": [\n                {\n                    \"corporationName\": \"STRING\",\n                    \"corporationNumber\": \"280779687\",\n                    \"incorporationDate\": \"2018-07-18T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"ON\",\n                    \"city\": \"TORONTO\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Sole Proprietorship\",\n                    \"entityType\": \"Sl_Prpshp\",\n                    \"statusDate\": \"2018-07-18T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Registered\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.909090909,\n                    \"nameScore\": 1,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"STRING\",\n                    \"corporationNumber\": \"1484761\",\n                    \"incorporationDate\": \"2010-06-11T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"_C\",\n                    \"city\": \"\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"TradeMark\",\n                    \"entityType\": \"TMA\",\n                    \"statusDate\": \"2015-06-29T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Registerd\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.909090909,\n                    \"nameScore\": 1,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"STRING\",\n                    \"corporationNumber\": \"1181752\",\n                    \"incorporationDate\": \"2003-06-17T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"_C\",\n                    \"city\": \"\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"TradeMark\",\n                    \"entityType\": \"TMA\",\n                    \"statusDate\": \"2005-02-03T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Registerd\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.909090909,\n                    \"nameScore\": 1,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"STRING\",\n                    \"corporationNumber\": \"0224137\",\n                    \"incorporationDate\": \"1954-03-29T00:00:00\",\n                    \"corporationStatus\": \"Inactive\",\n                    \"isActive\": false,\n                    \"province\": \"_C\",\n                    \"city\": \"\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"TradeMark\",\n                    \"entityType\": \"UCA\",\n                    \"statusDate\": \"1954-03-29T00:00:00\",\n                    \"nameStatus\": \"Not Applicable\",\n                    \"isCorporationStatusActive\": false,\n                    \"fullStatus\": \"Expunged\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.909090909,\n                    \"nameScore\": 1,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"T-STRING\",\n                    \"corporationNumber\": \"1025045\",\n                    \"incorporationDate\": \"1999-08-09T00:00:00\",\n                    \"corporationStatus\": \"Inactive\",\n                    \"isActive\": false,\n                    \"province\": \"_C\",\n                    \"city\": \"\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"TradeMark\",\n                    \"entityType\": \"TMA\",\n                    \"statusDate\": \"2003-05-09T00:00:00\",\n                    \"nameStatus\": \"Not Applicable\",\n                    \"isCorporationStatusActive\": false,\n                    \"fullStatus\": \"Expunged\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.6212121211,\n                    \"nameScore\": 0.6833333333,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"String Labs Inc.\",\n                    \"corporationNumber\": \"11427806\",\n                    \"incorporationDate\": \"2019-05-23T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"_C\",\n                    \"city\": \"Oakville\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Corporation\",\n                    \"entityType\": \"CBCA\",\n                    \"statusDate\": \"2019-05-23T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Active\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.6616735537,\n                    \"nameScore\": 0.6278409091,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 1,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"String Finder Ltd.\",\n                    \"corporationNumber\": \"16172482\",\n                    \"incorporationDate\": \"2024-06-29T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"_C\",\n                    \"city\": \"Lévis\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Corporation\",\n                    \"entityType\": \"CBCA\",\n                    \"statusDate\": \"2024-06-29T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Active\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.6025641025,\n                    \"nameScore\": 0.5628205128,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 1,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"Star String Inc.\",\n                    \"corporationNumber\": \"11610805\",\n                    \"incorporationDate\": \"2019-09-09T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"_C\",\n                    \"city\": \"North York\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Corporation\",\n                    \"entityType\": \"CBCA\",\n                    \"statusDate\": \"2019-09-09T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Active\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.658946281,\n                    \"nameScore\": 0.6248409091,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 1,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"STRING2WIN\",\n                    \"corporationNumber\": \"TN18353318\",\n                    \"incorporationDate\": \"2014-07-16T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"AB\",\n                    \"city\": \"\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Sole Proprietorship/Trade Name\",\n                    \"entityType\": \"TradeName\",\n                    \"statusDate\": null,\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Active\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.603030303,\n                    \"nameScore\": 0.6633333333,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"STRING FX Inc.\",\n                    \"corporationNumber\": \"14645537\",\n                    \"incorporationDate\": \"2023-01-03T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"_C\",\n                    \"city\": \"toronto\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Corporation\",\n                    \"entityType\": \"CBCA\",\n                    \"statusDate\": \"2023-01-03T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Active\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.7467532467,\n                    \"nameScore\": 0.7214285714,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 1,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"STRING FX INC.\",\n                    \"corporationNumber\": \"1000405729\",\n                    \"incorporationDate\": \"2023-01-03T00:00:00\",\n                    \"corporationStatus\": \"Active\",\n                    \"isActive\": true,\n                    \"province\": \"ON\",\n                    \"city\": \"Toronto\",\n                    \"homeJurisdiction\": \"_C\",\n                    \"businessEntityType\": \"Corporation\",\n                    \"entityType\": \"FD_Share\",\n                    \"statusDate\": \"2023-01-06T00:00:00\",\n                    \"nameStatus\": \"Current\",\n                    \"isCorporationStatusActive\": true,\n                    \"fullStatus\": \"Registered\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.6558441558,\n                    \"nameScore\": 0.7214285714,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"G-STRING\",\n                    \"corporationNumber\": \"2262603485\",\n                    \"incorporationDate\": \"2004-11-11T00:00:00\",\n                    \"corporationStatus\": \"Information Not Available\",\n                    \"isActive\": null,\n                    \"province\": \"QC\",\n                    \"city\": \"Saint-Ours\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"Sole Proprietorship\",\n                    \"entityType\": \"Sl_Prpshp\",\n                    \"statusDate\": \"2004-11-11T00:00:00\",\n                    \"nameStatus\": \"Information Not Available\",\n                    \"isCorporationStatusActive\": null,\n                    \"fullStatus\": \"Information Not Available\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.712121212,\n                    \"nameScore\": 0.7833333333,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                },\n                {\n                    \"corporationName\": \"C STRING\",\n                    \"corporationNumber\": \"1454974\",\n                    \"incorporationDate\": \"2009-10-13T00:00:00\",\n                    \"corporationStatus\": \"Inactive\",\n                    \"isActive\": false,\n                    \"province\": \"_C\",\n                    \"city\": \"\",\n                    \"homeJurisdiction\": \"\",\n                    \"businessEntityType\": \"TradeMark\",\n                    \"entityType\": \"TMA\",\n                    \"statusDate\": null,\n                    \"nameStatus\": \"Not Applicable\",\n                    \"isCorporationStatusActive\": false,\n                    \"fullStatus\": \"Aband-36\",\n                    \"annualReturnCompliance\": null,\n                    \"isCloseMatch\": false,\n                    \"changeType\": null,\n                    \"changeNumber\": null,\n                    \"changeName\": null,\n                    \"score\": null,\n                    \"confidenceScore\": 0.7272727272,\n                    \"nameScore\": 0.8,\n                    \"numberScore\": null,\n                    \"formationDateScore\": null,\n                    \"jurisdictionScore\": 0,\n                    \"typeScore\": null\n                }\n            ]\n        },\n        \"isSuccessful\": true,\n        \"errors\": []\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"b7cab7b6-aa3a-43b3-85a8-ed61263bbc24"},{"name":"IDV Check","id":"b86ae8a5-336d-4a5f-a62c-bbc91b87ba6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"string@test.com\",\r\n  \"name\": \"Test\",\r\n  \"phoneNumber\": \"+14033334445\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/check/idv-check","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint provides an IDV check.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Email</td>\n<td>varchar(100)</td>\n<td>100</td>\n<td>The email of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>Name</td>\n<td>varchar(100)</td>\n<td>100</td>\n<td>The name of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>PhoneNumber</td>\n<td>varchar(100)</td>\n<td>100</td>\n<td>The phone number of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CaasOpErr01</td>\n<td>Check Parameter List for more details</td>\n</tr>\n<tr>\n<td>CaasOpErr02</td>\n<td>Configuration error.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Permissions denied.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Route not found</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","caas","check","idv-check"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0e9c8317-316d-413f-ba0f-63b0f6db5544","name":"IDV Check","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"string@test.com\",\r\n  \"name\": \"Test\",\r\n  \"phoneNumber\": \"+14033334445\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/check/idv-check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 16:48:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": null,\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"b86ae8a5-336d-4a5f-a62c-bbc91b87ba6b"},{"name":"Name Screening Check","id":"6e9539de-8a3e-491f-aaf8-4b07a345c115","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"type\": \"Individual\",\r\n\"firstName\": \"Test\",\r\n\"lastName\": \"Last\",\r\n\"legalName\": \"string\",\r\n\"doingBusinessAs\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/check/kyc","description":"<h3 id=\"description\">Description</h3>\n<p>This endpoint provides the results of a KYC check.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Title</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Max Length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required/ Optional</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td><em>String</em></td>\n<td>-</td>\n<td>The client type:  <br />Individual or Corporate.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td><em>Varchar</em>(50)</td>\n<td>50</td>\n<td>The first name of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LastName</td>\n<td><em>Varchar</em>(50)</td>\n<td>50</td>\n<td>The last name of the person being checked.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td><em>Varchar</em>(50)</td>\n<td>50</td>\n<td>Legal Name.</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td>DoingBusinessAs</td>\n<td><em>Varchar</em>(50)</td>\n<td>50</td>\n<td>Name doing business as, if applicable.</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters\">Response Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>esc</td>\n<td><em>String</em></td>\n<td>External system code/reference.</td>\n</tr>\n<tr>\n<td>merchantAddressesCheck</td>\n<td><em>Array</em></td>\n<td>Results for address-specific risk screening.</td>\n</tr>\n<tr>\n<td>bridgeBlackListCheck</td>\n<td><em>Array</em></td>\n<td>Results from internal (bridge) blacklist databases.</td>\n</tr>\n<tr>\n<td>kyc2020</td>\n<td><em>Object</em></td>\n<td>Main container for the KYC2020 screening results.</td>\n</tr>\n<tr>\n<td>kyc2020.uniqueClientId</td>\n<td><em>Integer</em></td>\n<td>Internal unique ID for this client record.</td>\n</tr>\n<tr>\n<td>kyc2020.website</td>\n<td><em>String</em></td>\n<td>URL associated with the entity.</td>\n</tr>\n<tr>\n<td>kyc2020.clientType</td>\n<td><em>Integer</em></td>\n<td>Code for entity type. Individual/Corporate.</td>\n</tr>\n<tr>\n<td>kyc2020.legalNameOfBusiness</td>\n<td><em>String</em></td>\n<td>Official registered business name.</td>\n</tr>\n<tr>\n<td>kyc2020.doingBusinessAs</td>\n<td><em>String</em></td>\n<td>Trade name or DBA.</td>\n</tr>\n<tr>\n<td>kyc2020.businessIdentificationNumber</td>\n<td><em>String</em></td>\n<td>Tax or registration ID.</td>\n</tr>\n<tr>\n<td>kyc2020.anticipatedVolume</td>\n<td><em>String</em></td>\n<td>Expected transaction volume for the account.</td>\n</tr>\n<tr>\n<td>kyc2020.firstName</td>\n<td><em>String</em></td>\n<td>The first name of the individual.</td>\n</tr>\n<tr>\n<td>kyc2020.middleName</td>\n<td><em>String</em></td>\n<td>The middle name of the individual.</td>\n</tr>\n<tr>\n<td>kyc2020.lastName</td>\n<td><em>String</em></td>\n<td>The last name of the individual.</td>\n</tr>\n<tr>\n<td>kyc2020.dateOfBirth</td>\n<td><em>DateTime</em></td>\n<td>Birthdate.</td>\n</tr>\n<tr>\n<td>kyc2020.phoneNumber</td>\n<td><em>String</em></td>\n<td>Contact phone number.</td>\n</tr>\n<tr>\n<td>kyc2020.natureOfBusiness</td>\n<td><em>String</em></td>\n<td>industry/purpose of the account.</td>\n</tr>\n<tr>\n<td>kyc2020.geographyIn/Out</td>\n<td><em>String</em></td>\n<td>Regional risk markers for incoming/outgoing funds.</td>\n</tr>\n<tr>\n<td>kyc2020.industrySector</td>\n<td><em>String</em></td>\n<td>Primary industry classification.</td>\n</tr>\n<tr>\n<td>kyc2020.industrySubSector</td>\n<td><em>String</em></td>\n<td>Specific niche within the industry.</td>\n</tr>\n<tr>\n<td>kyc2020.address</td>\n<td><em>String</em></td>\n<td>Residential or business physical address.</td>\n</tr>\n<tr>\n<td>kyc2020.occupation</td>\n<td><em>String</em></td>\n<td>Profession of the individual.</td>\n</tr>\n<tr>\n<td>kyc2020.email</td>\n<td><em>String</em></td>\n<td>Contact email address.</td>\n</tr>\n<tr>\n<td>kycHits</td>\n<td><em>Object</em></td>\n<td>Main container for the KYC2020 hits.</td>\n</tr>\n<tr>\n<td>kycHits.hitId</td>\n<td><em>String</em></td>\n<td>Unique identifier for a specific match result.</td>\n</tr>\n<tr>\n<td>kycHits.screenedName</td>\n<td><em>String</em></td>\n<td>The name as it was parsed for the check.</td>\n</tr>\n<tr>\n<td>kycHits.overallDecision</td>\n<td><em>String</em></td>\n<td>The systems calculated risk factor. Pass/Fail.</td>\n</tr>\n<tr>\n<td>kycHits.finalDecision</td>\n<td><em>String</em></td>\n<td>The final human-adjudicated decision.</td>\n</tr>\n<tr>\n<td>kycHits.isAlert</td>\n<td><em>Boolean</em></td>\n<td><code>True</code> or <code>False</code> flag indicating if the hit requires a manual review or not.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaCheck</td>\n<td><em>Object</em></td>\n<td>Status of the news-based risk check.</td>\n</tr>\n<tr>\n<td>kycHits.watchlistScreening</td>\n<td><em>Object</em></td>\n<td>Status of the official watchlist check.</td>\n</tr>\n<tr>\n<td>kycHits.watchlistHitsSummary</td>\n<td><em>Object</em></td>\n<td>Aggregated count of watchlist matches.</td>\n</tr>\n<tr>\n<td>kycHits.IndividualInformation</td>\n<td><em>Object</em></td>\n<td>Additional bio data from the match source.</td>\n</tr>\n<tr>\n<td>kycHits.businessInformation</td>\n<td><em>Object</em></td>\n<td>Additional corporate data from the match source.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType</td>\n<td><em>Array</em></td>\n<td>An array of results relating to the watchlist types.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.sanction</td>\n<td><em>String</em></td>\n<td>Status for gloab sanctions lists.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.regulatoryAuthority</td>\n<td><em>String</em></td>\n<td>Matches on law enforcement/regulator lists.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.criminal</td>\n<td><em>String</em></td>\n<td>Matches on general criminal databases.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.politicallyExposesPerson</td>\n<td><em>String</em></td>\n<td>Status for PEP (public official) screening.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.headInternationalOrg</td>\n<td><em>String</em></td>\n<td>Matches for HIO (UN, World Bank, etc.)</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.relatviesCloseAssociates</td>\n<td><em>String</em></td>\n<td>Matches for family members of PEP's.</td>\n</tr>\n<tr>\n<td>kycHits.resultsByWatchListType.others</td>\n<td><em>String</em></td>\n<td>Other miscellaneous risk categories.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits</td>\n<td><em>Array</em></td>\n<td>An array of information pertaining to any adverse media hits.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.id</td>\n<td><em>Integer</em></td>\n<td>Internal ID for the specific hit record.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.hitName</td>\n<td><em>String</em></td>\n<td>Name found in the article/list.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.articleUrl</td>\n<td><em>String</em></td>\n<td>Link to the source news/article.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.crimeCategories</td>\n<td><em>String</em></td>\n<td>Identified risks (ex: Fraud, Violent Crime, etc.)</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.title</td>\n<td><em>String</em></td>\n<td>Headline or title of the source document.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.matchConfidence</td>\n<td><em>Numeric</em></td>\n<td>Confidence percentage of the name match.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.hitDecision</td>\n<td><em>String</em></td>\n<td>Status of this specific piece of evidence.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.nrsScore</td>\n<td><em>Numeric</em></td>\n<td>Numerical rank score.</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.listId</td>\n<td><em>String</em></td>\n<td>Code for the specific database. (Ex: Diplomats)</td>\n</tr>\n<tr>\n<td>kycHits.adverseMediaHits.listType</td>\n<td><em>String</em></td>\n<td>Name of the database (Ex: All Diplomats)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"related-errors\">Related Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CaasOpErr01</td>\n<td>Check Parameter List For More Details.</td>\n</tr>\n<tr>\n<td>CaasOpErr02</td>\n<td>Configuration Error.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Permissions Denied.</td>\n</tr>\n<tr>\n<td>CaasOpErr03</td>\n<td>Route Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"version\">Version</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Version Supported</th>\n<th>Date Released</th>\n<th><strong>Deprecation Date</strong></th>\n<th>End of Life Date</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>v1.0</td>\n<td>December 2019</td>\n<td>TBD</td>\n<td>TBD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["integrationapi","v1.0","caas","check","kyc"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"af44191f-080f-4c67-923e-bf52d1d389b8","name":"KYC","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"type\": \"Individual\",\r\n\"firstName\": \"Test\",\r\n\"lastName\": \"Last\",\r\n\"legalName\": \"string\",\r\n\"doingBusinessAs\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/integrationapi/v1.0/caas/check/kyc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 17:04:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.5"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"}],"cookie":[],"responseTime":null,"body":"{\n    \"ErrorCode\": \"0\",\n    \"ErrorDescription\": \"Successfull\",\n    \"StackTrace\": null,\n    \"Item\": {\n        \"esc\": null,\n        \"merchantAddressesCheck\": null,\n        \"bridgeBlacklistCheck\": null,\n        \"kyc2020\": {\n            \"response\": {\n                \"clientCheck\": {\n                    \"entity\": {\n                        \"uniqueClientId\": 0,\n                        \"website\": null,\n                        \"clientType\": 0,\n                        \"legalNameOfBusiness\": null,\n                        \"doingBusinessAs\": null,\n                        \"businessIdentificationNumber\": null,\n                        \"anticipatedVolume\": null,\n                        \"firstName\": \"string\",\n                        \"middleName\": null,\n                        \"lastName\": \"string\",\n                        \"dateOfBirth\": \"01/01/0001\",\n                        \"phoneNumber\": null,\n                        \"natureOfBusiness\": null,\n                        \"geographyIn\": null,\n                        \"geographyOut\": null,\n                        \"industrySector\": null,\n                        \"industrySubsector\": null,\n                        \"address\": null,\n                        \"occupation\": null,\n                        \"email\": null\n                    },\n                    \"kycHits\": [\n                        {\n                            \"hitId\": null,\n                            \"screenedName\": \"string string\",\n                            \"overallDecision\": \"Fail\",\n                            \"finalDecision\": \"None\",\n                            \"isAlert\": false,\n                            \"adverseMediaCheck\": null,\n                            \"watchlistScreening\": null,\n                            \"watchlistHitsSummary\": null,\n                            \"resultsByWatchlistType\": {\n                                \"sanction\": \"Clear\",\n                                \"regulatoryAuthority\": \"Clear\",\n                                \"criminal\": \"Clear\",\n                                \"politicallyExposedPerson\": \"Verify\",\n                                \"headInternationalOrganization\": \"Clear\",\n                                \"relativesCloseAssociates\": \"Clear\",\n                                \"others\": \"Clear\"\n                            },\n                            \"adverseMediaHits\": [\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"David Syring\",\n                                    \"articleUrl\": \"https://abc7ny.com/post/laura--lee-day-20-20-speaks-drowning-murder-stepson/15031652/\",\n                                    \"crimeCategories\": \"Violent Crime, Fraud\",\n                                    \"title\": \"Laura Lee Day speaks out on drowning murder of her stepson - ABC7 New York\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Sting\",\n                                    \"articleUrl\": \"https://www.abc.net.au/news/2021-09-01/italian-heir-accuses-sting-of-slander-over-winery-comments/100423586\",\n                                    \"crimeCategories\": \"\",\n                                    \"title\": \"Sting issues apology to son of heir after claiming he was misled into purchasing Italian winery\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Stringe\",\n                                    \"articleUrl\": \"https://www.yahoo.com/lifestyle/robert-hicks-sentenced-36-years-032500787.html\",\n                                    \"crimeCategories\": \"Robbery & theft, Violent Crime, Fraud\",\n                                    \"title\": \"Robert Hicks <b>sentenced</b> to 36 years in prison for Boulder murder - Yahoo News\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Spring Mountain’s\",\n                                    \"articleUrl\": \"https://bankruptcy.einnews.com/article_detail/594188485/QR0vAqkbR97HR-L-?ref=rss&lcode=ivEewU1XA5zrN8meWuqlrA%3D%3D\",\n                                    \"crimeCategories\": \"\",\n                                    \"title\": \"Bankruptcy, wildfires, $192 million in debt: What happened to Napa’s ‘Falcon Crest’ winery\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Sean Strang, Strang\",\n                                    \"articleUrl\": \"https://www.biv.com/news/economy-law-politics/slap-in-the-face-bc-communities-frustrated-with-new-federal-disaster-funding-10217454\",\n                                    \"crimeCategories\": \"\",\n                                    \"title\": \"'Slap in the face': B.C. communities frustrated with new federal disaster funding\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Lee Paul Streng, Streng\",\n                                    \"articleUrl\": \"https://www.abc.net.au/news/2023-05-17/man-accused-of-murdering-louise-hughes-charged-with-bail-breach/102357506\",\n                                    \"crimeCategories\": \"Violent Crime, Fraud\",\n                                    \"title\": \"Man accused of murdering Adelaide mum charged with breaching bail\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Robert Strang, Strang\",\n                                    \"articleUrl\": \"https://globalnews.ca/?p=7711661\",\n                                    \"crimeCategories\": \"\",\n                                    \"title\": \"Nova Scotia’s top doctor not concerned province is farthest behind in vaccination rollout\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Sting\",\n                                    \"articleUrl\": \"https://www.indiatimes.com/trending/sting-finally-breaks-silence-on-diddys-arrest-it-doesnt-effect-our-song-645692.html\",\n                                    \"crimeCategories\": \"Fraud\",\n                                    \"title\": \"Sting finally breaks his silence on Diddy&#39;s arrest — &#39;it doesn&#39;t affect our song&#39; - Indiatimes\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Stringe\",\n                                    \"articleUrl\": \"https://www.dailycamera.com/2022/09/23/robert-hicks-sentenced-to-36-years-in-prison-for-boulder-murder\",\n                                    \"crimeCategories\": \"Robbery & theft, Violent Crime, Fraud\",\n                                    \"title\": \"Robert Hicks <b>sentenced</b> to 36 years in prison for Boulder murder\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                },\n                                {\n                                    \"id\": 0,\n                                    \"hitName\": \"Baring, the Baring Decision\",\n                                    \"articleUrl\": \"https://www.bccourts.ca/jdb-txt/sc/25/04/2025BCSC0414.htm\",\n                                    \"crimeCategories\": \"Violent Crime\",\n                                    \"title\": \"MacAdams v. Grewal, 2025 BCSC 414 - 2025/03/12\",\n                                    \"matchConfidence\": null,\n                                    \"hitDecision\": \"None\"\n                                }\n                            ],\n                            \"watchlistHits\": [\n                                {\n                                    \"id\": 0,\n                                    \"name\": \"William Strang, 1st Baron Strang\",\n                                    \"nrsScore\": \"99.0\",\n                                    \"supportingDocumentsLink\": \"https://en.wikipedia.org/w/index.php?title=Category:Diplomats_by_nationality&from=A\",\n                                    \"matchConfidence\": null,\n                                    \"listId\": \"diplomats\",\n                                    \"listType\": \"All Diplomats \",\n                                    \"hitDecision\": \"None\"\n                                }\n                            ],\n                            \"individualInformation\": null,\n                            \"businessInformation\": null\n                        }\n                    ]\n                },\n                \"signingOfficersCheck\": [],\n                \"beneficialOwnersCheck\": [],\n                \"directorsCheck\": []\n            },\n            \"isSuccessful\": true,\n            \"errors\": []\n        }\n    },\n    \"IsSucceeded\": true,\n    \"ErrorList\": [],\n    \"ParameterList\": [],\n    \"PaymentType\": null\n}"}],"_postman_id":"6e9539de-8a3e-491f-aaf8-4b07a345c115"}],"id":"37dc2318-6ad8-4421-8f6a-dc7eb26c1d68","_postman_id":"37dc2318-6ad8-4421-8f6a-dc7eb26c1d68","description":"","auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":true,"source":{"_postman_id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","id":"9d10e398-0ee6-4a59-877f-3c1e789a0859","name":"Client API (ClientSandbox)","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"{{token}}"}},"event":[{"listen":"prerequest","script":{"id":"91f46bb7-4bb3-40fc-b55c-af370c50a6b1","type":"text/javascript","exec":["\r","\r",""]}},{"listen":"test","script":{"id":"da7f5db8-d9db-4900-bf3d-38f896d7e9e1","type":"text/javascript","exec":[""]}}],"variable":[{"key":"stableVersion","value":"v1.0"},{"key":"docsBaseUrl","value":"https://clientprod.dcbankapi.com"},{"key":"docsStagingBaseUrl","value":"https://connect.dcbankapi.ca:35345"},{"key":"Company","value":"DCBank"},{"key":"Support","value":"apisupport@dcbank.ca"},{"key":"Contact","value":"https://www.dcbank.ca/get-started"}]}