{"info":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","description":"<html><head></head><body><p>The Interchecks RESTful API enables payers to manage recipients, recipient payment accounts, and generate payments.</p>\n<h1 id=\"latest-news\">Latest News</h1>\n<h4 id=\"01-07-2021\">01-07-2021</h4>\n<h5 id=\"api-v2-documentation\">API V2 Documentation</h5>\n<p>API V2 documentation has been published to <a href=\"https://docs.interchecks.io\">https://docs.interchecks.io</a>.</p>\n<h4 id=\"09-09-2021\">09-09-2021</h4>\n<h5 id=\"production-url-updates\">Production URL Updates</h5>\n<p>New implementations will not use the interchecks.com domain for API interaction.  Please contact <a href=\"mailto:tech@interchecks.com\">tech@interchecks.com</a> to discuss the new production URL.</p>\n<h4 id=\"05-26-2020\">05-26-2020</h4>\n<h5 id=\"url-housekeeping\">URL Housekeeping</h5>\n<p>We have updated our sandbox URL to <a href=\"https://test.interchecks.com\">https://test.interchecks.com</a>.  The previous URL of <a href=\"https://sandbox.icapps.io\">https://sandbox.icapps.io</a> will still work in the meantime, however Widget URLs will be test.interchecks.com.  Customers with a White Labeled domain will receive a custom sandbox URL.</p>\n<h4 id=\"10-09-2018\">10-09-2018</h4>\n<h5 id=\"widget-ui-for-card-collection\">Widget UI for <code>CARD</code> collection</h5>\n<p>Don't want to handle card data, but want to process <code>CARD</code> transactions?  For PCI Compliance, we can handle the card data collection using a secure form.  See the <strong>Create Account with UI URL</strong> call detail.  The saved account information (<code>account_id</code> and <code>account_type</code>) can be posted back to the callback URL or can be retrieved via API call.</p>\n<h5 id=\"payment-transactions\">Payment Transactions</h5>\n<p>We've introduced a new process for sending payments if a UI/Widget is not required and you would like to fully handle the user interface.  The <code>transactions</code> endpoint will accept direct transactions with type of <code>CREDIT</code>.  The caveat is an account must be created for each method to be passed via <code>account_id</code> in the request.  The Workflows area has been updated to note this option.</p>\n<h4 id=\"08-29-2019\">08-29-2019</h4>\n<h5 id=\"debit-updated-to-card\">DEBIT updated to CARD</h5>\n<p>In order to enable a single CARD account to be used for both money-in and money-out, we have moved to a single account type of <code>CARD</code> - We will no longer store payment accounts of the type <code>DEBIT</code>.  If you send in a type of <code>DEBIT</code> for a <code>Create Account</code> call, it will be stored as <code>CARD</code>.</p>\n<h1 id=\"environments\">Environments</h1>\n<h4 id=\"developmentsandbox-httpstestintercheckscom\">Development/Sandbox: <a href=\"https://test.interchecks.com\">https://test.interchecks.com</a></h4>\n<h4 id=\"production-contact-techintercheckscom-for-the-production-url\">Production: Contact <a href=\"mailto:tech@interchecks.com\">tech@interchecks.com</a> for the production URL</h4>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Every request must contain the Basic Authentication header using the <strong>Account ID</strong> and <strong>Secret Key</strong> values, base64 encoded as the Authorization header and prefixed with “Basic “.</p>\n<p>Example: Account ID abc and Secret Key xyz would be joined with a colon (abc:xyz) and base64 encoded.  The resulting Authorization header value would be: <code>Basic YWJjOnh5eg==</code></p>\n<p>Every request must also contain your <strong>Payer ID</strong> in the URL path.  Contact <a href=\"mailto:support@interchecks.com\">support@interchecks.com</a> to receive your set of API Credentials to begin testing.</p>\n<h1 id=\"response-codes\">Response Codes</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response Code</th>\n<th>Detail</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Successful request.  The server received the request and processed it.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad request caused from data structure or invalid parameters.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>The account used to invoke the request is not found.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>The account used to invoke the request does not have the appropriate API access.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Invalid path to the API or API is being deployed.</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method not allowed error - could be caused by a POST to an invalid URL.</td>\n</tr>\n<tr>\n<td>409</td>\n<td>Duplicate request based on request_reference_id</td>\n</tr>\n<tr>\n<td>500</td>\n<td>The application encountered an error while processing the request.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"error-structure\">Error Structure</h1>\n<p>Each object returned in the response can indicate there is an error with the corresponding request object.  The error contain the following fields as an example:</p>\n<p><code>{     \"error\": true,     \"error_message\": \"Invalid recipient data\",     \"error_code\": \"R02\",     \"errors\": [         \"Invalid first name\",         \"Invalid last name\"     ] }</code></p>\n<h2 id=\"error-codes\">Error Codes</h2>\n<p>Error codes are provided in the case you would like to translate the codes into your own error messaging.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GE01</td>\n<td>An unknown error occured. Support has been notified</td>\n</tr>\n<tr>\n<td>P01</td>\n<td>Invalid Payer ID passed in the URL</td>\n</tr>\n<tr>\n<td>PR01</td>\n<td>Duplicate payment request based on Request Reference ID</td>\n</tr>\n<tr>\n<td>TR01</td>\n<td>Duplicate transaction request based on Request Reference ID</td>\n</tr>\n<tr>\n<td>R01</td>\n<td>Invalid recipient ID passed in the URL</td>\n</tr>\n<tr>\n<td>R02</td>\n<td>Invalid recipient data</td>\n</tr>\n<tr>\n<td>R03</td>\n<td>Error orccured while processing recipient data</td>\n</tr>\n<tr>\n<td>R04</td>\n<td>Recipient email already exists.  Existing ID is reflected in the response</td>\n</tr>\n<tr>\n<td>R05</td>\n<td>Recipient not found</td>\n</tr>\n<tr>\n<td>R06</td>\n<td>TIN Verification error</td>\n</tr>\n<tr>\n<td>R07</td>\n<td>Recipient email exists with a different verified TIN. Correct the TIN or remove it from the request.</td>\n</tr>\n<tr>\n<td>PE01</td>\n<td>Payment amount must be greater than zero</td>\n</tr>\n<tr>\n<td>PE02</td>\n<td>Error occurred while processing payments request</td>\n</tr>\n<tr>\n<td>PE03</td>\n<td>Request contains no valid payments, check the payment_failures response for detail</td>\n</tr>\n<tr>\n<td>PE04</td>\n<td>Error processing payment</td>\n</tr>\n<tr>\n<td>PE05</td>\n<td>Recipient not found for payment</td>\n</tr>\n<tr>\n<td>PE06</td>\n<td>Payment amount greater than allowed maximum amount</td>\n</tr>\n<tr>\n<td>PE07</td>\n<td>Payment amount requires approval</td>\n</tr>\n<tr>\n<td>PE08</td>\n<td>Payer not setup for account type, contact your account manager</td>\n</tr>\n<tr>\n<td>PB01</td>\n<td>Invalid Request ID passed in the URL</td>\n</tr>\n<tr>\n<td>PB02</td>\n<td>Invalid Request Reference ID passed in the URL</td>\n</tr>\n<tr>\n<td>PB03</td>\n<td>Payments within this request have been paid</td>\n</tr>\n<tr>\n<td>S01</td>\n<td>Invalid or missing search parameters</td>\n</tr>\n<tr>\n<td>PO00</td>\n<td>Invalid amount</td>\n</tr>\n<tr>\n<td>PO01</td>\n<td>Payout error, see error message for detail</td>\n</tr>\n<tr>\n<td>PO02</td>\n<td>Payout error, see error message for detail</td>\n</tr>\n<tr>\n<td>PO03</td>\n<td>Payout method not available</td>\n</tr>\n<tr>\n<td>PO04</td>\n<td>Payout not found</td>\n</tr>\n<tr>\n<td>PO05</td>\n<td>Payout in immutable status</td>\n</tr>\n<tr>\n<td>RA00</td>\n<td>Invalid account ID</td>\n</tr>\n<tr>\n<td>RA01</td>\n<td>Missing account details</td>\n</tr>\n<tr>\n<td>RA02</td>\n<td>Invalid Routing Number</td>\n</tr>\n<tr>\n<td>RA03</td>\n<td>Invalid account details</td>\n</tr>\n<tr>\n<td>RA04</td>\n<td>Invalid account type</td>\n</tr>\n<tr>\n<td>RA05</td>\n<td>Account type does not match method</td>\n</tr>\n<tr>\n<td>RA06</td>\n<td>Account requires verification or not eligible for TransactionType</td>\n</tr>\n<tr>\n<td>RA07</td>\n<td>Error adding card</td>\n</tr>\n<tr>\n<td>RA08</td>\n<td>Error validating card</td>\n</tr>\n<tr>\n<td>RA09</td>\n<td>Invalid expiration date</td>\n</tr>\n<tr>\n<td>RA10</td>\n<td>Account not created</td>\n</tr>\n<tr>\n<td>RA11</td>\n<td>Account creation is processing, callback process will include final status</td>\n</tr>\n<tr>\n<td>RA12</td>\n<td>Invalid or missing Address</td>\n</tr>\n<tr>\n<td>PA00</td>\n<td>Payment method is not valid for Payer</td>\n</tr>\n<tr>\n<td>PA01</td>\n<td>Invalid account type</td>\n</tr>\n<tr>\n<td>PA02</td>\n<td>Invalid routing number</td>\n</tr>\n<tr>\n<td>PA03</td>\n<td>Invalid account number</td>\n</tr>\n<tr>\n<td>PA04</td>\n<td>Invalid account email</td>\n</tr>\n<tr>\n<td>PA05</td>\n<td>Invalid address - State or Province</td>\n</tr>\n<tr>\n<td>PA06</td>\n<td>Invalid account ID</td>\n</tr>\n<tr>\n<td>PA07</td>\n<td>Invalid address - Country Code</td>\n</tr>\n<tr>\n<td>PA08</td>\n<td>Invalid Security Code/CVV</td>\n</tr>\n<tr>\n<td>PA09</td>\n<td>Invalid zip code for account</td>\n</tr>\n<tr>\n<td>PA10</td>\n<td>Account not eligible</td>\n</tr>\n<tr>\n<td>PA11</td>\n<td>Account not eligible for requested action</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"workflows\">Workflows</h1>\n<p>If you have any questions on the best workflow for your use-case please email <a href=\"mailto:tech@interchecks.com\">tech@interchecks.com</a>.</p>\n<h2 id=\"payouts\">Payouts</h2>\n<h3 id=\"payment-with-widgetui\">Payment with Widget/UI</h3>\n<p>The <strong>Create Payment API</strong> call with the optional UI URL request parameter will create/find a recipient, create a payment, and generate a URL that can be framed-in or shown in any manner to the recipient.  The recipient can select from the available payout methods and accept payment.</p>\n<h3 id=\"payment-with-payout\">Payment with Payout</h3>\n<p>The <strong>Create Payment API</strong> call supports 3 operations in a nested structure: Create Recipient, Payment, and Payout Transaction or request a URL for the Recipient to accept payment.  We'll maintain this legacy process for those who want a one-call-does-it-all integration.  Payout Methods for <code>INSTANT_DEPOSIT</code> and any type of <code>PREPAID</code> require an <code>account_id</code> to be used.  Review the <strong>Create with INSTANT DEPOSIT payout</strong> detail.</p>\n<p>Standard process for Payments with Payout</p>\n<ul>\n<li>Create Account (if applicable - only required for <code>INSTANT_DEPOSIT</code> payout methods)</li>\n<li>Create Payment w/ Payout Transaction structure</li>\n</ul>\n<p>Procedural process</p>\n<ul>\n<li>Create Recipient</li>\n<li>Create Account (if applicable - only required for <code>INSTANT_DEPOSIT</code> payout methods)</li>\n<li>Create Payment w/ Payout Transaction structure\n** The Direct Payments process below is better suited for procedural processing.</li>\n</ul>\n<h3 id=\"payment-transaction\">Payment Transaction</h3>\n<p>The <strong>Transactions</strong> API call now handles direct transactions (CREDIT).  This process does not create a payment on the Interchecks platform, but performs a direct transaction for the recipient to the <code>account_id</code> specified.  The request/response structure is greatly simplified from the <strong>Payments</strong> process.  Transactions appear under the <strong>Payments Completed</strong> section of the Payer Portal.</p>\n<p>There are 3 required steps.</p>\n<ul>\n<li>Create Recipient</li>\n<li>Create Account - For PCI Compliance, we can handle the card data collection using a secure form.  See the <strong>Create Account with UI URL</strong> call detail.</li>\n<li>Create Transaction with <code>CREDIT</code> transaction type.</li>\n</ul>\n<h1 id=\"test-debitcredit-cards\">Test Debit/Credit Cards</h1>\n<p>Any future expiration date will work.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Card Number</th>\n<th>Type</th>\n<th>Pull (Money-In)</th>\n<th>Push (Money-Out)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>9400100999999993</td>\n<td>DEBIT</td>\n<td>N</td>\n<td>N</td>\n</tr>\n<tr>\n<td>9400101999999991</td>\n<td>DEBIT</td>\n<td>N</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400102999999999</td>\n<td>DEBIT</td>\n<td>N</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400103999999997</td>\n<td>DEBIT</td>\n<td>N</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400110999999992</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>N</td>\n</tr>\n<tr>\n<td>9400111999999990</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400112999999998</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400113999999996</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400120999999991</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>N</td>\n</tr>\n<tr>\n<td>9400121999999999</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400122999999997</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400123999999995</td>\n<td>DEBIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400200999999991</td>\n<td>CREDIT</td>\n<td>N</td>\n<td>N</td>\n</tr>\n<tr>\n<td>9400201999999999</td>\n<td>CREDIT</td>\n<td>N</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400202999999997</td>\n<td>CREDIT</td>\n<td>N</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400203999999995</td>\n<td>CREDIT</td>\n<td>N</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400210999999990</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>N</td>\n</tr>\n<tr>\n<td>9400211999999998</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400212999999996</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400213999999994</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400220999999999</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>N</td>\n</tr>\n<tr>\n<td>9400221999999997</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400222999999995</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>9400223999999993</td>\n<td>CREDIT</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Latest News","slug":"latest-news"},{"content":"Environments","slug":"environments"},{"content":"Authentication","slug":"authentication"},{"content":"Response Codes","slug":"response-codes"},{"content":"Error Structure","slug":"error-structure"},{"content":"Workflows","slug":"workflows"},{"content":"Test Debit/Credit Cards","slug":"test-debitcredit-cards"}],"owner":"598227","collectionId":"7815deea-f46d-4e86-aa69-68eeda68f98f","publishedId":"UVJfjvS3","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-12-02T19:09:13.000Z"},"item":[{"name":"Recipients","item":[{"name":"Create","id":"142c31af-f87f-45d7-9ca1-6fee7328aaee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\"\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}","description":"<p>Create recipient with first name, last name, and email.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","recipients","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"3fe93c73-2e87-4bfb-bd94-1dc3f976c310","name":"Recipient Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\"\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Wed, 17 Oct 2018 20:14:00 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"JSESSIONID=B2CD25034FB879E7A249FE026BA1583F; Path=/; Secure; HttpOnly"},{"key":"Set-Cookie","value":"__VCAP_ID__=7fb485c1-5cfc-4032-758c-74f3; Path=/; HttpOnly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"60b74231-d65c-4a7c-7c4b-d3ec2f37a12b"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"205"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n    \"recipient_email\": \"art@interchecks.com\",\n    \"recipient_first_name\": \"ART\",\n    \"recipient_last_name\": \"VANDELAY\",\n    \"recipient_w9_verified\": false,\n    \"recipient_w9_required\": true\n}"}],"_postman_id":"142c31af-f87f-45d7-9ca1-6fee7328aaee"},{"name":"Create w/ W9 data","id":"5c6867a6-21f6-446c-9c31-3acd4f9f155f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1.3@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\",\n\t\"recipient_tin\": \"559001111\",\n\t\"recipient_1099_delivery\" : \"EMAIL\",\n\t\"recipient_address\": {\n\t\t\"address_1\" : \"901 NW 35th Street\",\n\t\t\"city\" : \"Boca Raton\",\n\t\t\"state\" : \"FL\",\n\t\t\"zip\" : \"33431\"\n\t}\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}","description":"<p>Create recipient with first name, last name, email, TIN, and address.</p>\n<ul>\n<li><p>If your payer profile is configured for W9 collection and the TIN is provided, we will perform a KYC check on the recipient.  Two additional fields will be returned with the recipient <code>recipient_w9_required</code> and <code>recipient_w9_verified</code> to provide you insight into your recipient's account.</p>\n</li>\n<li><p><code>recipient_reference_id</code> is an optional parameter to add your identifier to the recipient's account</p>\n</li>\n<li><p><code>recipient_1099_delivery</code> is an optional parameter to define how we will deliver the 1099 if applicable.  Optional values are <code>EMAIL</code>, <code>MAIL</code>.  The default value is <code>EMAIL</code>.</p>\n</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","recipients","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"aa184a70-15aa-4079-b655-1f10b8a733f8","name":"Create w/ TIN data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1.2@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\",\n\t\"recipient_tin\": \"999001111\",\n\t\"recipient_address\": {\n\t\t\"address_1\" : \"901 NW 35th Street\",\n\t\t\"city\" : \"Boca Raton\",\n\t\t\"state\" : \"FL\",\n\t\t\"zip\" : \"33431\"\n\t}\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 11:42:54 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=NTVlNjUwN2YtYjc5Mi00Zjg4LTg3Y2UtZjljNmU3MTMyYWQ3; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4e84c3428984cfdc-GRU"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"recipient_id\": \"REwzx_Biu3Q1KXF258dyRO8w\",\n    \"recipient_email\": \"art1.2@interchecks.com\",\n    \"recipient_first_name\": \"ART\",\n    \"recipient_last_name\": \"VANDELAY\",\n    \"recipient_w9_verified\": true,\n    \"recipient_w9_required\": false,\n    \"recipient_w9_date\": \"2019-06-17T11:42:54+0000\",\n    \"recipient_tin\": \"999001111\",\n    \"recipient_legal_entity_type\": \"INDIVIDUAL\",\n    \"recipient_address\": {\n        \"address_1\": \"901 NW 35TH STREET\",\n        \"city\": \"BOCA RATON\",\n        \"state\": \"FL\",\n        \"zip\": \"33431\"\n    }\n}"},{"id":"543f48dc-15fe-4695-8256-494a1a6b9c76","name":"Create w/ TIN data failure","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1.3@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\",\n\t\"recipient_tin\": \"559001111\",\n\t\"recipient_address\": {\n\t\t\"address_1\" : \"901 NW 35th Street\",\n\t\t\"city\" : \"Boca Raton\",\n\t\t\"state\" : \"FL\",\n\t\t\"zip\" : \"33431\"\n\t}\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 11:45:11 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=OTdmMzE3ZjEtM2NmMy00ODQzLWI1NDktYjE2NmVmNzFiYTVh; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4e84c698aa96cfdc-GRU"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": true,\n    \"error_message\": \"TIN Verification error: No IRS Match found.\",\n    \"error_code\": \"R06\",\n    \"recipient_id\": \"REJSjgM4gLSWCAgURGQ2EElQ\",\n    \"recipient_email\": \"art1.3@interchecks.com\",\n    \"recipient_first_name\": \"ART\",\n    \"recipient_last_name\": \"VANDELAY\",\n    \"recipient_w9_verified\": false,\n    \"recipient_w9_required\": true,\n    \"recipient_tin\": \"559001111\",\n    \"recipient_legal_entity_type\": \"INDIVIDUAL\",\n    \"recipient_address\": {\n        \"address_1\": \"901 NW 35TH STREET\",\n        \"city\": \"BOCA RATON\",\n        \"state\": \"FL\",\n        \"zip\": \"33431\"\n    }\n}"}],"_postman_id":"5c6867a6-21f6-446c-9c31-3acd4f9f155f"},{"name":"Update w/ W9 data","id":"9b62d385-aa03-469b-a247-7603f5ccd56f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1.4@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\",\n\t\"recipient_tin\": \"999001111\",\n\t\"recipient_address\": {\n\t\t\"address_1\" : \"901 NW 35th Street\",\n\t\t\"city\" : \"Boca Raton\",\n\t\t\"state\" : \"FL\",\n\t\t\"zip\" : \"33431\"\n\t}\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/REwzx_Biu3Q1KXF258dyRO8w","description":"<p>Update recipient with TIN and address.</p>\n<ul>\n<li>If you are collecting TIN after an amount threshold and the recipient's account is already created, issue a PUT request to add TIN and perform a KYC check on the recipient.</li>\n<li><code>recipient_1099_delivery</code> is an optional parameter to define how we will deliver the 1099 if applicable.  Optional values are <code>EMAIL</code>, <code>MAIL</code>.  The default value is <code>EMAIL</code>.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","recipients","{{payer_id}}","REwzx_Biu3Q1KXF258dyRO8w"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"86aec1b0-b9a2-4607-9c92-3513565e83fa","name":"Update w/ W9 data","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art1.4@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\",\n\t\"recipient_tin\": \"999001111\",\n\t\"recipient_address\": {\n\t\t\"address_1\" : \"901 NW 35th Street\",\n\t\t\"city\" : \"Boca Raton\",\n\t\t\"state\" : \"FL\",\n\t\t\"zip\" : \"33431\"\n\t}\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/REwzx_Biu3Q1KXF258dyRO8w"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 11:55:48 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=NjdiMmEzZjMtZjUwZi00N2I5LTgzMTAtNjAzOTkyMGUyMDM0; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4e84d629cd24d020-GRU"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"recipient_id\": \"REwzx_Biu3Q1KXF258dyRO8w\",\n    \"recipient_email\": \"art1.4@interchecks.com\",\n    \"recipient_first_name\": \"ART\",\n    \"recipient_last_name\": \"VANDELAY\",\n    \"recipient_w9_verified\": true,\n    \"recipient_w9_required\": false,\n    \"recipient_w9_date\": \"2019-06-17T11:42:54+0000\",\n    \"recipient_tin\": \"999001111\",\n    \"recipient_legal_entity_type\": \"INDIVIDUAL\",\n    \"recipient_address\": {\n        \"address_1\": \"901 NW 35TH STREET\",\n        \"city\": \"BOCA RATON\",\n        \"state\": \"FL\",\n        \"zip\": \"33431\"\n    }\n}"}],"_postman_id":"9b62d385-aa03-469b-a247-7603f5ccd56f"},{"name":"Update","id":"6594b455-93ae-4893-9364-119071c00d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\"\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/REtrOlA_A8R6q6Iegs0xFsXg","description":"<p>Update recipient first name, last name, and email using the recipient ID.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","recipients","{{payer_id}}","REtrOlA_A8R6q6Iegs0xFsXg"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"c7c892a6-07d8-4edd-8ec1-2e9b813776eb","name":"Recipient Update","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art@interchecks.com\",\n\t\"recipient_first_name\": \"Art\",\n\t\"recipient_last_name\": \"Vandelay\"\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/REtrOlA_A8R6q6Iegs0xFsXg"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Wed, 17 Oct 2018 20:20:46 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"cbf2960f-0221-4e90-6a8c-14cca1ffbec7"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n    \"recipient_email\": \"art@interchecks.com\",\n    \"recipient_first_name\": \"ART\",\n    \"recipient_last_name\": \"VANDELAY\"\n}"}],"_postman_id":"6594b455-93ae-4893-9364-119071c00d98"},{"name":"Get","id":"48da47d4-c298-42c3-8559-8b0654db2f61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/REtrOlA_A8R6q6Iegs0xFsXg","description":"<p>Get recipient using the recipient ID.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","recipients","{{payer_id}}","REtrOlA_A8R6q6Iegs0xFsXg"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"b88d6cdf-d35e-48b3-9b56-84190cc53311","name":"Recipient Get","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/REtrOlA_A8R6q6Iegs0xFsXg"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Wed, 17 Oct 2018 20:19:26 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"ade4113f-9c0e-4bb7-655d-fa5f09945cd1"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"146"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"48da47d4-c298-42c3-8559-8b0654db2f61"},{"name":"Search","id":"db9c1f89-491e-44d6-aefc-c0320d28915e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art@interchecks.com\"\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/search","description":"<p>Search for a recipient using an email address.  A recipient not found will return a 404 response code and an error structure.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","recipients","{{payer_id}}","search"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"82c5a8f5-046b-435f-8fe9-6fd41ac3c656","name":"Recipient Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient_email\": \"art@interchecks.com\"\n}\n\n"},"url":"https://test.interchecks.com/api/v1.0/recipients/{{payer_id}}/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Wed, 17 Oct 2018 20:21:03 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"4efa6825-ab1c-4c44-65d9-f1beca5138de"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n    \"recipient_email\": \"art@interchecks.com\",\n    \"recipient_first_name\": \"ART\",\n    \"recipient_last_name\": \"VANDELAY\"\n}"}],"_postman_id":"db9c1f89-491e-44d6-aefc-c0320d28915e"}],"id":"c4ff980d-138e-47d9-8e78-9a5c10e0c99a","description":"<h2 id=\"api-calls-to-manage-recipients\">API calls to manage recipients</h2>\n<ul>\n<li><code>recipient_reference_id</code> is an optional parameter to add your identifier to the recipient's account</li>\n<li><code>UPDATE</code> with a new email address will add a new primary email address for the recipient</li>\n<li><code>UPDATE</code> with new first and last name will only update if recipient has not setup their profile and a KYC has not been completed</li>\n<li>If your payer profile is configured for W9 collection, two additional fields will be returned with the recipient <code>recipient_w9_required</code> and <code>recipient_w9_verified</code> to provide you insight into your recipient's account.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"f70e3600-04dc-48d0-a250-ca1dd89fe0b3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"779b98d7-81d0-4253-a0b8-723c988ec843","type":"text/javascript","exec":[""]}}],"_postman_id":"c4ff980d-138e-47d9-8e78-9a5c10e0c99a","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}}},{"name":"Accounts","item":[{"name":"Create Account","id":"5d1496da-ce06-4139-bf99-5fcca12f4905","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CARD\",\n\t\"account_number\" : 9400110999999992,\n\t\"exp_date\": \"12/22\",\n\t\"zip_code\" : 99999,\n\t\"security_code\" : 888\n}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ","description":"<p>Create a payment account for a recipient.  The required URL structure is /accounts/<code>payer_id</code>/<code>recipient_id</code> in order to correctly assign an account to a Recipient.</p>\n<h2 id=\"requiredoptional-payload-fields-for-each-account-type-below\">Required/Optional payload fields for each Account Type below.</h2>\n<ul>\n<li><p><code>ACH</code> Account</p>\n</li>\n<li><p><code>type</code> - <code>ACH</code> - required.</p>\n</li>\n<li><p><code>account_type</code> - required.  Values are <code>CHECKING</code>,<code>SAVINGS</code>,<code>BUSINESS</code></p>\n</li>\n<li><p><code>account_number</code> - required.</p>\n</li>\n<li><p><code>routing_number</code> - required.</p>\n</li>\n<li><p><code>CARD</code> Account for <strong>Instant Deposit</strong>. Evaluate the <code>push_available</code> and/or <code>pull_available</code> to determine if the <code>CARD</code> account meets the criteria for the required action.  Optionally, pass in the <code>pull_required</code>/<code>push_required</code> and we validate the the criteria and supply an error response.</p>\n</li>\n<li><p><code>type</code> - <code>CARD</code> - required. </p>\n</li>\n<li><p><code>account_number</code> - required - 16 Digit Debit Card number.</p>\n</li>\n<li><p><code>exp_date</code> - required - format of MM/YY.</p>\n</li>\n<li><p><code>push_required</code> - optional - we will validate the CARD is available for money-out/push transactions.</p>\n</li>\n<li><p><code>pull_required</code> - optional - we will validate the CARD is available for money-in/pull transactions.</p>\n</li>\n<li><p><code>CHECK</code> Account</p>\n</li>\n<li><p><code>type</code> - <code>CHECK</code> - required. </p>\n</li>\n<li><p><code>address</code> - Object</p>\n</li>\n<li><p><code>address</code> - required</p>\n</li>\n<li><p><code>city</code> - required</p>\n</li>\n<li><p><code>state</code> - required. 2 character state code.</p>\n</li>\n<li><p><code>zip</code> - required. 5 or 9 digit zip code</p>\n</li>\n<li><p><code>country</code> - optional.  US is default</p>\n</li>\n<li><p><code>ECHECK</code> Account</p>\n</li>\n<li><p><code>type</code> - <code>EMAIL</code> - required. </p>\n</li>\n<li><p><code>email</code> - optional.  If no email is provided, the payment will be delivered to the recipient's primary email</p>\n</li>\n<li><p><code>PAYPAL</code> Account</p>\n</li>\n<li><p><code>type</code> - <code>PAYPAL</code> - required. </p>\n</li>\n<li><p><code>email</code> - required.  The recipient's paypal email address.</p>\n</li>\n<li><p><code>VIRTUALCARD_MASTERCARD</code>, <code>PHYSICALCARD_MASTERCARD</code>, <code>VIRTUALCARD_VISA</code>, <code>PHYSICALCARD_VISA</code> Account</p>\n</li>\n<li><p><code>type</code> - <code>VIRTUALCARD_MASTERCARD</code> or <code>PHYSICALCARD_MASTERCARD</code> or <code>VIRTUALCARD_VISA</code> or <code>PHYSICALCARD_VISA</code> - required</p>\n</li>\n<li><p><code>address</code> - Object</p>\n</li>\n<li><p><code>address_1</code> - required</p>\n</li>\n<li><p><code>address_2</code> - optional</p>\n</li>\n<li><p><code>city</code> - required</p>\n</li>\n<li><p><code>state</code> - required. 2 character state code.</p>\n</li>\n<li><p><code>zip</code> - required. 5 or 9 digit zip code</p>\n</li>\n<li><p><code>country</code> - optional.  US is default</p>\n</li>\n<li><p><code>dob</code> - required. YYYY-MM-DD format</p>\n</li>\n<li><p><code>phone</code> - required. 10 digits</p>\n</li>\n<li><p><code>ssn</code> - required.  9 digits</p>\n</li>\n</ul>\n<p>In addition to the account type parameters, two callback parameters are available: <code>callback_url</code> and <code>callback_params</code>.</p>\n<ul>\n<li>Callback parameters to receive the relevant data after the account is saved.</li>\n<li><code>callback_url</code> - fully qualified URL of your postback handler</li>\n<li><code>callback_params</code> - string array of requested params.  Available options are [<code>recipient_id</code>, <code>account_id</code>]</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","accounts","{{payer_id}}","RELT4PQbqqTUSVOYwP4KXcvQ"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"5bae7946-c388-475b-aaa4-dc8236940ae3","name":"Create CARD Account - Valid","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CARD\",\n\t\"account_number\" : 9400110999999992,\n\t\"exp_date\": \"12/22\",\n\t\"zip_code\" : 99996,\n\t\"security_code\" : 888\n}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Aug 2019 14:07:01 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=MTk4MDc0ZjItZWNhMy00Njk4LTk0OTktYjFhZDE0NzU2OWZl; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"503a4b2f6f0dc86b-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"RPA-q-Z0D4gARrugekd0CHfPhQ\",\n    \"type\": \"CARD\",\n    \"account_type\": \"DEBIT\",\n    \"account_number\": \"940011******9992\",\n    \"created_date\": \"2019-08-09T14:06:59+0000\",\n    \"description\": \"Visa Debit\",\n    \"push_available\": false,\n    \"pull_available\": true,\n    \"avs_return_code\": \"Z\",\n    \"avs_security_code\": \"M\"\n}"},{"id":"8bf8e453-8d50-4261-acad-f9d58b96b7d4","name":"Create PREPAID Account","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"\"type\": \"PHYSICALCARD_VISA\",\n    \"first_name\" : \"ART\",\n    \"last_name\" : \"VANDELAY\",\n    \"dob\" : \"2000-01-01\",\n    \"phone\" : \"9545555555\",\n    \"ssn\" : \"234567890\",\n\t\"address\" : {\n\t\t\"address_1\" : \"901 NW 35th Street\",\n\t\t\"city\" : \"Boca Raton\",\n\t\t\"state\" : \"FL\",\n\t\t\"zip\" : \"33431\"\n\t\t\"country\" : \"US\"\n\t}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/{{recipient_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Aug 2019 14:07:01 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=MTk4MDc0ZjItZWNhMy00Njk4LTk0OTktYjFhZDE0NzU2OWZl; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"503a4b2f6f0dc86b-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"RPA-123456ABCDEF\",\n    \"type\": \"PHYSICALCARD_VISA\",\n    \"email\": \"art@interchecks.com\",\n    \"account_type\": \"Visa® Prepaid Card\",\n    \"routing_number\": \"073972181\",\n    \"account_number\": \"123456789\",\n    \"created_date\": \"2021-08-05T15:24:23+0000\",\n    \"account_status\": \"PENDING_ACTIVATION\",\n    \"account_balance\": 0.0,\n    \"card_number\": \"4***********1418\"\n}"},{"id":"bac55056-93c1-4977-88f7-a4a30529d193","name":"Create CARD Account - Invalid Zip Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CARD\",\n\t\"account_number\" : 9400110999999992,\n\t\"exp_date\": \"12/22\",\n\t\"zip_code\" : 99992,\n\t\"security_code\" : 888\n}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Aug 2019 14:09:49 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=NDhkNTcyYWUtMTIxMi00OTFlLTlmNzUtYTZhNzk5ODlkYTNl; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"503a4f51ff7fc86b-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": true,\n    \"error_message\": \"Invalid zip code for account\",\n    \"error_code\": \"PA09\"\n}"},{"id":"8056bafd-e79c-485c-beea-d1ccd98b5a8e","name":"Create CARD Account - Invalid CVV","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CARD\",\n\t\"account_number\" : 9400110999999992,\n\t\"exp_date\": \"12/22\",\n\t\"zip_code\" : 99999,\n\t\"security_code\" : 999\n}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Aug 2019 14:10:24 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=YTFjZjA3ZWQtMzdjZC00NjU4LWFjZDQtZTJiMzNjYWJhMjA5; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"503a502f5acec86b-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": true,\n    \"error_message\": \"Invalid Security Code/CVV\",\n    \"error_code\": \"PA08\"\n}"}],"_postman_id":"5d1496da-ce06-4139-bf99-5fcca12f4905"},{"name":"Create Account with UI URL","id":"f6e4a244-afab-486a-9550-58bcffd027d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CARD\",\n\t\"ui_url\" : true,\n\t\"push_required\" : true,\n\t\"pull_required\" : true,\n\t\"callback_url\" : \"https://my-domain-url/webhooks/callback\",\n\t\"callback_params\": [\"recipient_id\", \"account_id\"]\n}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ","description":"<p>Generate a secure URL for the recipient to add an Account.  This is relevant for clients not collecting card data who want to add a <code>CARD</code> account.  We recommend adding your <code>callback_url</code> and the shown <code>callback_params</code> to receive the ID for the account added.</p>\n<p>To improve the user-experience, we can customize the account validation process depending on the <code>CARD</code> account requirements.  </p>\n<ul>\n<li><p>If you require the <code>CARD</code> to only be used to send <code>CREDIT</code> transactions, include <code>push_required : true</code> in the request.  We will validate the card can accept payments.</p>\n</li>\n<li><p>If no <code>push_required</code>, <code>pull_required</code> are included in the request, <code>pull_required</code> will default to <code>true</code>.</p>\n</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","accounts","{{payer_id}}","RELT4PQbqqTUSVOYwP4KXcvQ"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"94ad28bb-3c29-4e54-8536-39b1cea7d5f3","name":"Create Account with UI URL","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CARD\",\n\t\"ui_url\" : true,\n\t\"callback_url\" : \"https://my-domain-url/webhooks/callback\",\n\t\"callback_params\": [\"recipient_id\", \"account_id\"]\n}"},"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Jul 2019 20:35:52 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=YjI4NmI3OTctZTkwMC00ODAxLThmMTQtMThiYThhNGFiNjVm; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4f34d8db79fbd509-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"ui_url\": \"https://demo.icapps.io/wui/accounts/PATY2vn10sTrG5h5FSA_CBZw/UTN7nLYOtASf65YZkTEESh2Q\"\n}"}],"_postman_id":"f6e4a244-afab-486a-9550-58bcffd027d5"},{"name":"Get Account by ID","id":"ea5fab8b-cc51-4a96-bdce-4a95e3ea6f0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RPA-cL8WPtZNSU6zoNQcH4KvSA","description":"<p>Retrieve account by ID.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","accounts","{{payer_id}}","RPA-cL8WPtZNSU6zoNQcH4KvSA"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"65652191-a26f-4407-9f19-3ea289bd7dbc","name":"Get Account by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RPA-cL8WPtZNSU6zoNQcH4KvSA"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Jul 2019 20:36:30 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=NTg1NjNjODYtYTExNi00ZmY3LTkyZTgtNDcxOGRiMmIzNzJl; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4f34d9c59a58d509-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"RPA-cL8WPtZNSU6zoNQcH4KvSA\",\n    \"type\": \"CARD\",\n    \"account_number\": \"940011******9992\",\n    \"created_date\": \"2019-07-08T20:35:09+0000\",\n    \"description\": \"Visa Debit\",\n    \"push_available\": false,\n    \"pull_available\": true\n}"}],"_postman_id":"ea5fab8b-cc51-4a96-bdce-4a95e3ea6f0f"},{"name":"Delete Account by ID","id":"ec94202f-754f-46f1-810d-fdbd8898c013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RPA-3A3vLoP6SE2nvWwp_f3imA","description":"<p>Delete account by ID.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","accounts","{{payer_id}}","RPA-3A3vLoP6SE2nvWwp_f3imA"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"f86834ae-e3a6-4708-a208-3fa7c7db36f3","name":"Delete Account by ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RPA-3A3vLoP6SE2nvWwp_f3imA"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Jul 2019 20:38:17 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=YTYxM2M0MGUtZTUyZS00MjRiLWE0NzQtZTYwYjMxYTQ1ZTBk; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4f34dc665cefd509-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"RPA-3A3vLoP6SE2nvWwp_f3imA deleted\"\n}"}],"_postman_id":"ec94202f-754f-46f1-810d-fdbd8898c013"},{"name":"Get Accounts by Type","id":"a58047f5-941a-4d29-8855-8d5448b27279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ/CARD","description":"<p>Retrieve array list of Accounts by <code>TYPE</code>: <code>CARD</code>, <code>DEBIT</code>, <code>ACH</code>, <code>PAYPAL</code>, <code>ECHECK</code>, <code>CHECK</code></p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","accounts","{{payer_id}}","RELT4PQbqqTUSVOYwP4KXcvQ","CARD"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"08f94a81-256b-45ee-a75c-5cd84bb0db10","name":"Get Accounts by Type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/accounts/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ/CARD"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Jul 2019 20:37:08 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=MmUwZTZhZTYtYTc1ZC00MWM2LThmNDctYmIwYWZhZmRjMWQy; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4f34dab47902d509-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"accounts\": [\n        {\n            \"id\": \"RPA-cL8WPtZNSU6zoNQcH4KvSA\",\n            \"type\": \"CARD\",\n            \"account_number\": \"940011******9992\",\n            \"created_date\": \"2019-07-08T20:35:09+0000\",\n            \"description\": \"Visa Debit\",\n            \"push_available\": false,\n            \"pull_available\": true\n        }\n    ]\n}"}],"_postman_id":"a58047f5-941a-4d29-8855-8d5448b27279"}],"id":"51de373e-54f4-422e-876a-ac5375d9e422","description":"<h2 id=\"account-api-calls-to-facilitate-payouts-and-transactions-and-manage-recipient-accounts\">Account API calls to facilitate Payouts and Transactions and manage recipient accounts</h2>\n<p>The Account ID can be used to complete a Payment with Payout Transaction or issue <code>DEBIT</code>/<code>CREDIT</code> Payment Transactions.  </p>\n<p><strong><code>CARD</code> and <code>PREPAID</code> account types are required to be created prior to initiating a Payout or Transaction.</strong></p>\n","event":[{"listen":"prerequest","script":{"id":"26815059-4a94-45b6-b327-78d1ca6f0251","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0cbd625e-c523-43c1-916f-bcd9369d63f0","type":"text/javascript","exec":[""]}}],"_postman_id":"51de373e-54f4-422e-876a-ac5375d9e422","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}}},{"name":"Payments","item":[{"name":"Create","id":"8b073882-4ec8-4b2a-bd34-53734b605c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"request_reference_id\" : \"txn-900001\",\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 25\n\t\t\t}\n\t\t]\n\t},\n\t\"callback_url\" : \"https://myserver.com/callback/url\",\n\t\"callback_params\" : [\"request_id\",\"payment_status\"]\n\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<h1 id=\"create-a-payment-for-portal-acceptance\">Create a Payment for Portal Acceptance</h1>\n<p>Post a Payment to the Interchecks Portal for the Recipient to enroll and accept.  The Recipient will have the option of selecting from 1 or more payout methods configured for your payer account.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"d612fd12-b72e-4516-ba2d-594803326e53","name":"Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"request_reference_id\" : \"txn-900001\",\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 25\n\t\t\t}\n\t\t]\n\t},\n\t\"callback_url\" : \"https://myserver.com/callback/url\",\n\t\"callback_params\" : [\"request_id\",\"payment_status\"]\n\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Mar 2021 18:06:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=NzVkZDdiY2YtOTM3OC00M2Q2LTg5ODYtZTUxZGViYTFkYzhl; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"cf-request-id","value":"0920c3d9290000ef224f8b4000000001"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report?s=0aGn%2BM96RwGMqSm8vrBKK7hqNexrxgS7qRQzFiqUfPWeuxXoVuNjxJyI%2Bhh8D9J4PEgMRO2393okMwRf%2BLUi0pCGFNy8zn4%2BvdgcHSlHa23WqQ%3D%3D\"}],\"max_age\":604800,\"group\":\"cf-nel\"}"},{"key":"NEL","value":"{\"max_age\":604800,\"report_to\":\"cf-nel\"}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"637b08d50cc9ef22-MIA"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"ARsbMDjBjuRQaF4JK6fNaYlg\",\n    \"request_reference_id\": \"txn-900001\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"recipient_w9_verified\": true,\n        \"recipient_w9_required\": false,\n        \"recipient_w9_date\": \"2019-09-12T19:27:07+0000\",\n        \"recipient_tin\": \"987654321\",\n        \"recipient_legal_entity_type\": \"INDIVIDUAL\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PMOB4BlafJQJ-4UcR3MKPRqw\",\n                \"payment_amount\": 25,\n                \"payment_reference_id\": \"AP85667-A-20210329-180651947\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PENDING\",\n                \"payment_created_date\": \"2021-03-29T18:06:51+0000\"\n            }\n        ],\n        \"recipient_address\": {\n            \"address_1\": \"901 NW 35TH STREET\",\n            \"city\": \"BOCA RATON\",\n            \"state\": \"FL\",\n            \"zip\": \"33431\"\n        }\n    }\n}"}],"_postman_id":"8b073882-4ec8-4b2a-bd34-53734b605c90"},{"name":"Create with UI URL","id":"2bcb4f77-ba53-4487-a410-e20c5c2fa87b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"request_reference_id\" : \"txn-900000\",\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments_ui_url\": true,\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 25\n\t\t\t}\n\t\t]\n\t},\n\t\"callback_url\" : \"https://myserver.com/callback/url\",\n\t\"callback_params\" : [\"request_id\",\"payment_status\"]\n\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<h1 id=\"payment-ui-url\">Payment UI URL</h1>\n<p>Using the parameter <code>\"payments_ui_url\": true</code> in the <code>recipient</code> object will generate a secure URL for the recipient to accept their payment.  The URL can be used in an iFrame or the user can be redirected.  Appending the parameter <code>?redirectUrl=http://www.yoursite.com</code> to the returned URL will force a redirect after the process is complete.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"2510824c-15e6-4c8e-acf2-a07ff0ef1478","name":"Create with Widget URL","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"request_reference_id\" : \"txn-900000\",\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments_ui_url\": true,\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 25\n\t\t\t}\n\t\t]\n\t},\n\t\"callback_url\" : \"https://myserver.com/callback/url\",\n\t\"callback_params\" : [\"request_id\",\"payment_status\"]\n\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Fri, 19 Oct 2018 11:59:27 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"88582e7b-0abd-4352-6045-7268a91ad593"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"675"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-20181019-115927\",\n    \"request_reference_id\": \"txn-900000\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"payments_failed\": 0,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"payments_ui_url\": \"https://interchecks-dev.cfapps.io/wui/payments/PATY2vn10sTrG5h5FSA_CBZw/UTQY646IpfQBudHoAaJLgT-w\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PMF-yPAsEDTCmzHpeCm2hlLQ\",\n                \"payment_amount\": 25,\n                \"payment_reference_id\": \"AP85667-A-20181019-115927396\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PENDING\",\n                \"payment_created_date\": \"2018-10-19T11:59:27+0000\"\n            }\n        ]\n    }\n}"}],"_postman_id":"2bcb4f77-ba53-4487-a410-e20c5c2fa87b"},{"name":"Create with Account ID","id":"ed3d21d0-e4b9-4044-b585-8fc01b6afcda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandaley\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 13.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"INSTANT_DEPOSIT\",\n\t\t\t\"account_id\" : \"RPA-7-eMwiQASxOrDgLcrTwLBw\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<h2 id=\"paying-with-an-account-id\">Paying with an Account ID</h2>\n<p>After creating an account (via Payout Request), Payouts can be processed using the <code>account_id</code>.  This is most useful for Debit accounts but can be used for any Payout in which we create an account for: PayPal, ACH, and Debit (Instant deposit)</p>\n<h2 id=\"requiredoptional-fields-for-payout-method\">Required/Optional fields for Payout method</h2>\n<ul>\n<li><code>method</code> - required.</li>\n<li><code>account_id</code> - required.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"c8236bc8-60f8-496f-91d0-2f0e35ac1666","name":"Create with INSTANT DEPOSIT Payout with ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandaley\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 13.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"INSTANT_DEPOSIT\",\n\t\t\t\"account_id\" : \"RPA-7-eMwiQASxOrDgLcrTwLBw\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Jun 2019 12:41:44 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"JSESSIONID=0AD991501069475D11A6CDCCD2F1D9C8; Path=/; Secure; HttpOnly"},{"key":"Set-Cookie","value":"__VCAP_ID__=5410f32c-2977-4df0-4231-09d7; Path=/; HttpOnly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"d77d582d-086f-4c5d-4e93-648861639eef"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4e19fb8d3ef8b8ff-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-20190604-124143\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDALEY\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PMB0VzJs5bT2OLSuH3Q-4wuQ\",\n                \"payment_amount\": 13,\n                \"payment_reference_id\": \"AP85667-A-20190604-124143667\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2019-06-04T12:41:43+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"POteGTDpRGRe6j26lkzLnRrA\",\n            \"payout_amount\": 13,\n            \"paid_amount\": 13,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"PAID\",\n            \"payout_date\": \"2019-06-04T12:41:44+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-35991\",\n            \"payout_method\": \"INSTANT_DEPOSIT\",\n            \"payout_destination\": \"9***********9990\",\n            \"account_id\": \"RPA-7-eMwiQASxOrDgLcrTwLBw\"\n        }\n    }\n}"}],"_postman_id":"ed3d21d0-e4b9-4044-b585-8fc01b6afcda"},{"name":"Create with ACH Payout","id":"562f98a6-2767-4972-ae45-508ce8f99435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandaley\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 25.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"ACH_STANDARD\",\n\t\t\t\"account_type\" : \"CHECKING\",\n\t\t\t\"account_number\" : \"123456789\",\n\t\t\t\"routing_number\" : \"021502011\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<h2 id=\"requiredoptional-fields-for-payout-methods\">Required/Optional fields for Payout methods</h2>\n<ul>\n<li><code>ACH_STANDARD</code>, <code>ACH_SAME_DAY</code>, <code>CHECK_DEPOSIT</code></li>\n<li><code>account_type</code> - required.  Values are <code>CHECKING</code>,<code>SAVINGS</code>,<code>BUSINESS</code></li>\n<li><code>account_number</code> - required.</li>\n<li><code>routing_number</code> - required.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"a34b8d43-18fc-44b5-b83d-9528379a795b","name":"Create with ACH Payout","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandaley\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 25.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"ACH_STANDARD\",\n\t\t\t\"account_type\" : \"CHECKING\",\n\t\t\t\"account_number\" : \"123456789\",\n\t\t\t\"routing_number\" : \"021502011\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Fri, 19 Oct 2018 14:25:07 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"98008cf1-9edc-44fa-60ed-9ca863993f8f"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"811"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-20181019-142501\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"payments_failed\": 0,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PM4KN82SxvTJKBr6mBHkT8dg\",\n                \"payment_amount\": 25,\n                \"payment_reference_id\": \"AP85667-A-20181019-142501985\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2018-10-19T14:25:01+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"POhc3PfZdbTm2sLpnjUCweSg\",\n            \"payout_amount\": 25,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"PAID\",\n            \"payout_date\": \"2018-10-19T14:25:06+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_method\": \"ACH_STANDARD\",\n            \"payout_destination\": \"CHECKING 1****6789\"\n        }\n    }\n}"}],"_postman_id":"562f98a6-2767-4972-ae45-508ce8f99435"},{"name":"Create with CHECK Payout","id":"455a8fcc-5ed6-4e8c-a880-651abf37f64e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 17.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"CHECK\",\n\t\t\t\"address\" : \"20 W 34th St\",\n\t\t\t\"city\" : \"New York\",\n\t\t\t\"state\" : \"NY\",\n\t\t\t\"zip\" : \"10001\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<ul>\n<li><code>CHECK</code></li>\n<li><code>address</code> - required</li>\n<li><code>city</code> - required.</li>\n<li><code>state</code> - required.  2 character state code.</li>\n<li><code>zip</code> - required.  5 or 9 digit zip code.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"699f405f-aa03-453a-a344-09c54804d7a9","name":"Create with CHECK Payout","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 17.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"CHECK\",\n\t\t\t\"address\" : \"20 W 34th St\",\n\t\t\t\"city\" : \"New York\",\n\t\t\t\"state\" : \"NY\",\n\t\t\t\"zip\" : \"10001\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Oct 2019 14:24:44 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=NDlhYTI4MzEtNjA3Ny00ZmEyLWFmMzEtODk3MWJiNzkzN2I3; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5231050c7cb35318-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-PB-bPKUPh22QaeRvn1fMZLtAw\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"recipient_w9_verified\": true,\n        \"recipient_w9_required\": false,\n        \"recipient_w9_date\": \"2019-09-12T19:27:07+0000\",\n        \"recipient_tin\": \"987654321\",\n        \"recipient_legal_entity_type\": \"INDIVIDUAL\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PMxousk5qRRm2HAmkC9cvoug\",\n                \"payment_amount\": 17,\n                \"payment_reference_id\": \"AP85667-A-20191009-142443431\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2019-10-09T14:24:43+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"PO6Q6l9XOURCOlVt-yyRAeXQ\",\n            \"payout_amount\": 17,\n            \"paid_amount\": 17,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"PAID\",\n            \"payout_date\": \"2019-10-09T14:24:44+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-36313\",\n            \"payout_method\": \"CHECK\",\n            \"payout_destination\": \"20 W 34TH ST, NEW YORK, NEW YORK 10001\",\n            \"account_id\": \"RPA-HYtUcbNWSrOfIbNICOnCiA\",\n            \"provider_transaction_id\": \"10001\"\n        }\n    }\n}"}],"_postman_id":"455a8fcc-5ed6-4e8c-a880-651abf37f64e"},{"name":"Create with ECHECK Payout","id":"e5c7e89d-add6-4c21-98ed-1b7c4430be86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 17.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"ECHECK\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<h2 id=\"requiredoptional-fields-for-payout-methods\">Required/Optional fields for Payout methods</h2>\n<ul>\n<li><code>ECHECK</code></li>\n<li><code>email</code> - optional.  If no email is provided, the payment will be delivered to the recipient's primary email</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"24174fc8-57c8-4392-8622-9d062de7b863","name":"Create with ECHECK Payout","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 17.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"ECHECK\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jul 2019 21:18:50 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=YTVjZmQxYTEtMGI5Mi00NjU2LTkyODctZDU0YTNhMmQxYmRl; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4fc12b258ae6c877-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-PB-TB-20F3lQlSxdab43iHiag\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"recipient_w9_verified\": false,\n        \"recipient_w9_required\": false,\n        \"payments\": [\n            {\n                \"payment_id\": \"PMTmBH8I0NTfW_wwMtd0Vnhg\",\n                \"payment_amount\": 17,\n                \"payment_reference_id\": \"AP85667-A-20190725-211849517\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2019-07-25T21:18:49+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"POWdEHVRP9QPSFpTYXB2By4A\",\n            \"payout_amount\": 17,\n            \"paid_amount\": 17,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"PAID\",\n            \"payout_date\": \"2019-07-25T21:18:50+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-36150\",\n            \"payout_method\": \"ECHECK\",\n            \"payout_destination\": \"ART@INTERCHECKS.COM\",\n            \"account_id\": \"RPA--lFZ4ZF_Sf2nAkMXfBBPeQ\",\n            \"provider_transaction_id\": \"VV264\"\n        }\n    }\n}"}],"_postman_id":"e5c7e89d-add6-4c21-98ed-1b7c4430be86"},{"name":"Create with INSTANT DEPOSIT payout","id":"ebe0e186-7847-454f-8075-4e0bd6e311f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandaley\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 12.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"INSTANT_DEPOSIT\",\n\t\t\t\"account_number\" : \"9400111999999990\",\n\t\t\t\"exp_date\" : \"12/22\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<h2 id=\"paying-with-a-card-number---important\">Paying with a Card Number - Important</h2>\n<p>The first payout request for Instant Deposit requires the card number (account number) and expiration date.  We validate the Debit Card is eligible for instant deposits prior to processing the transaction.  If successful, the <code>payout_transaction</code> response object will contain an <code>account_id</code> value which is to be used for all subsequent Instant Deposit requests.  </p>\n<p><strong>Failure to use the <code>account_id</code> in subsequent payout requests could result in failed transactions due to duplicate debit card accounts being created on the platform.</strong></p>\n<p><strong>If the recipient's card number has changed, send the new card number and expiration date to receive a new <code>account_id</code>.</strong> </p>\n<p><strong>Multiple active Debit accounts per recipient are allowed</strong></p>\n<p><strong>Please contact <a href=\"mailto:tech@interchecks.com\">tech@interchecks.com</a> to receive test card numbers related to your Payer account</strong></p>\n<h2 id=\"requiredoptional-fields-for-payout-method\">Required/Optional fields for Payout method</h2>\n<ul>\n<li><code>INSTANT_DEPOSIT</code></li>\n<li><code>account_number</code> - required - 16 Digit Debit Card number.</li>\n<li><code>exp_date</code> - required - format of MM/YY.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"f1ec3bb8-2b0f-417e-a76b-6dcf3dab32b1","name":"Create with INSTANT DEPOSIT Payout","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandaley\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 12.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"INSTANT_DEPOSIT\",\n\t\t\t\"account_number\" : \"9400111999999990\",\n\t\t\t\"exp_date\" : \"12/22\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Jun 2019 12:39:40 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"JSESSIONID=904EECA57319D260FABD4A7D103313AC; Path=/; Secure; HttpOnly"},{"key":"Set-Cookie","value":"__VCAP_ID__=5410f32c-2977-4df0-4231-09d7; Path=/; HttpOnly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"2e32eeea-17f4-4d00-4a73-10a302463e3f"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4e19f87ddedfb8ff-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-20190604-123938\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDALEY\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PM8jdlN8DmSByghEGI84C3Ww\",\n                \"payment_amount\": 12,\n                \"payment_reference_id\": \"AP85667-A-20190604-123938944\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2019-06-04T12:39:38+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"POwd2CCfJxSJuMSOFUmFXCtw\",\n            \"payout_amount\": 12,\n            \"paid_amount\": 12,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"PAID\",\n            \"payout_date\": \"2019-06-04T12:39:39+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-35990\",\n            \"payout_method\": \"INSTANT_DEPOSIT\",\n            \"payout_destination\": \"9***********9990\",\n            \"account_id\": \"RPA-7-eMwiQASxOrDgLcrTwLBw\"\n        }\n    }\n}"}],"_postman_id":"ebe0e186-7847-454f-8075-4e0bd6e311f3"},{"name":"Create with PAYPAL Payout","id":"f4ede621-fda3-4a8a-a24b-c55918db9527","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 17.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"PAYPAL\",\n\t\t\t\"email\" : \"art@interchecks.com\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<ul>\n<li><code>PAYPAL</code></li>\n<li><code>email</code> - required.  The recipient's paypal email address.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"960ced86-d895-4b8d-90b3-f1547e149567","name":"Create with PAYPAL Payout","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_first_name\" : \"Art\",\n\t\t\"recipient_last_name\" : \"Vandelay\",\n\t\t\"recipient_email\": \"art@interchecks.com\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 17.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"PAYPAL\",\n\t\t\t\"email\" : \"art@interchecks.com\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Fri, 19 Oct 2018 14:24:33 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"JSESSIONID=40B055F4E6E2234589EB569AB2AED89B; Path=/; Secure; HttpOnly"},{"key":"Set-Cookie","value":"__VCAP_ID__=0cf9ab5f-baae-4df5-765e-72dd; Path=/; HttpOnly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"749d0b22-b95e-4a53-4f8f-bfb9c04fb002"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"804"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-20181019-142431\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"payments_failed\": 0,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PMpDMguPXMRr-4dGHauvo6Rw\",\n                \"payment_amount\": 17,\n                \"payment_reference_id\": \"AP85667-A-20181019-142431978\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2018-10-19T14:24:31+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"PO2uetqO0KRRq9C5NufIrnIg\",\n            \"payout_amount\": 17,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"PAID\",\n            \"payout_date\": \"2018-10-19T14:24:33+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-35328\",\n            \"payout_method\": \"PAYPAL\",\n            \"payout_destination\": \"PayPal art@interchecks.com\"\n        }\n    }\n}"}],"_postman_id":"f4ede621-fda3-4a8a-a24b-c55918db9527"},{"name":"Create with Recipient ID","id":"4b842d41-bd9b-4c3b-b8d0-ee31bb47ca8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_id\" : \"REtrOlA_A8R6q6Iegs0xFsXg\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 32.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"ECHECK\",\n\t\t\t\"email\" : \"art.vandelay@interchecks.com\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}","description":"<p>A <code>recipient_id</code> can be supplied in favor of recipient email, first name, and last name.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"7895d200-9748-4433-a1f6-12dd9fef8af6","name":"Create with Recipient ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"recipient\":\n\t{\n\t\t\"recipient_id\" : \"REtrOlA_A8R6q6Iegs0xFsXg\",\n\t\t\"payments\":[\n\t\t\t{\n\t\t\t\"payment_amount\": 32.00\n\t\t\t}\n\t\t],\n\t\t\"payout\" : {\n\t\t\t\"method\" : \"ECHECK\",\n\t\t\t\"email\" : \"art.vandelay@interchecks.com\"\n\t\t}\n\t}\n}\n"},"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Fri, 19 Oct 2018 14:25:45 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"4d57124f-5a4e-48ec-64ef-d5b514bd4b40"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"813"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"AP85667-20181019-142544\",\n    \"request_status\": \"FUNDED\",\n    \"payments_processed\": 1,\n    \"payments_created\": 1,\n    \"payments_failed\": 0,\n    \"recipient\": {\n        \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n        \"recipient_email\": \"art@interchecks.com\",\n        \"recipient_first_name\": \"ART\",\n        \"recipient_last_name\": \"VANDELAY\",\n        \"payments\": [\n            {\n                \"payment_id\": \"PMbM4UEWE_TuegE9qH4Yq3JA\",\n                \"payment_amount\": 32,\n                \"payment_reference_id\": \"AP85667-A-20181019-142544798\",\n                \"payment_currency\": \"USD\",\n                \"payment_status\": \"PAID\",\n                \"payment_created_date\": \"2018-10-19T14:25:44+0000\"\n            }\n        ],\n        \"payout_transaction\": {\n            \"payout_id\": \"POrNg-6hWBTt2uZCT_MVauJw\",\n            \"payout_amount\": 32,\n            \"payout_currency\": \"USD\",\n            \"payout_status\": \"Paid\",\n            \"payout_date\": \"2018-10-19T14:25:45+0000\",\n            \"payout_transaction_id\": \"IC-22039-198-35330\",\n            \"payout_method\": \"eCheck\",\n            \"payout_destination\": \"art.vandelay@interchecks.com\"\n        }\n    }\n}"}],"_postman_id":"4b842d41-bd9b-4c3b-b8d0-ee31bb47ca8f"},{"name":"Request Status by ID","id":"230e42b8-4bb2-4439-9108-fe9c2a059742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}/status/AP85667-20181019-142501","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}","status","AP85667-20181019-142501"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"4882023d-5cb0-4a7b-b99b-faf45e46def3","name":"Request Status by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}/status/AP85667-20181019-142501"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Fri, 19 Oct 2018 15:05:55 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"JSESSIONID=6D609B9B382BF9F52F5C9830CEA3A25E; Path=/; Secure; HttpOnly"},{"key":"Set-Cookie","value":"__VCAP_ID__=0cf9ab5f-baae-4df5-765e-72dd; Path=/; HttpOnly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"a1952021-f96a-4745-7577-5654c9c32dcc"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"835"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"payments\": [\n        {\n            \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n            \"recipient_email\": \"art@interchecks.com\",\n            \"recipient_first_name\": \"ART\",\n            \"recipient_last_name\": \"VANDELAY\",\n            \"recipient_w9_verified\": false,\n            \"recipient_w9_required\": false,\n            \"payment_id\": \"PM4KN82SxvTJKBr6mBHkT8dg\",\n            \"payment_amount\": 25,\n            \"payment_reference_id\": \"AP85667-A-20181019-142501985\",\n            \"payment_currency\": \"USD\",\n            \"payment_status\": \"PAID\",\n            \"payment_created_date\": \"2018-10-19T14:25:01+0000\",\n            \"payment_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_transaction\": {\n                \"payout_id\": \"POhc3PfZdbTm2sLpnjUCweSg\",\n                \"payout_amount\": 25,\n                \"payout_currency\": \"USD\",\n                \"payout_status\": \"PAID\",\n                \"payout_date\": \"2018-10-19T14:25:06+0000\",\n                \"payout_transaction_id\": \"IC-22039-198-35329\",\n                \"payout_method\": \"Direct Deposit\"\n            }\n        }\n    ],\n    \"request_id\": \"AP85667-20181019-142501\",\n    \"payments_total\": 1\n}"}],"_postman_id":"230e42b8-4bb2-4439-9108-fe9c2a059742"},{"name":"Approve by ID","id":"fb79fd0c-9ee0-4633-a9fb-4d45b870b36a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}/approve/AP85667-20181019-142501","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}","approve","AP85667-20181019-142501"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"73708249-3972-4ed3-b0fb-abf03565bc27","name":"Approve by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}/status/AP85667-20181019-142501"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Fri, 19 Oct 2018 15:05:55 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Set-Cookie","value":"JSESSIONID=6D609B9B382BF9F52F5C9830CEA3A25E; Path=/; Secure; HttpOnly"},{"key":"Set-Cookie","value":"__VCAP_ID__=0cf9ab5f-baae-4df5-765e-72dd; Path=/; HttpOnly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"a1952021-f96a-4745-7577-5654c9c32dcc"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"835"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"payments\": [\n        {\n            \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n            \"recipient_email\": \"art@interchecks.com\",\n            \"recipient_first_name\": \"ART\",\n            \"recipient_last_name\": \"VANDELAY\",\n            \"payment_id\": \"PM4KN82SxvTJKBr6mBHkT8dg\",\n            \"payment_amount\": 25,\n            \"payment_reference_id\": \"AP85667-A-20181019-142501985\",\n            \"payment_currency\": \"USD\",\n            \"payment_status\": \"PAID\",\n            \"payment_created_date\": \"2018-10-19T14:25:01+0000\",\n            \"payment_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_transaction\": {\n                \"payout_id\": \"POhc3PfZdbTm2sLpnjUCweSg\",\n                \"payout_amount\": 25,\n                \"payout_currency\": \"USD\",\n                \"payout_status\": \"PAID\",\n                \"payout_date\": \"2018-10-19T14:25:06+0000\",\n                \"payout_transaction_id\": \"IC-22039-198-35329\",\n                \"payout_method\": \"Direct Deposit\"\n            }\n        }\n    ],\n    \"request_id\": \"AP85667-20181019-142501\",\n    \"payments_total\": 1\n}"}],"_postman_id":"fb79fd0c-9ee0-4633-a9fb-4d45b870b36a"},{"name":"Cancel by ID","id":"e5b0f547-51f7-451f-bced-0702674f0f6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}/cancel/AP85667-20181019-142501","description":"<p>A Payment request can be cancelled if the payment has not been paid to the recipient.  For example, if the request processed successfully, but the payout fails or in an APPROVAL_REQUIRED status.  You can cancel all payments of the original request.</p>\n<p>If payment(s) were paid, the current status of the payments and corresponding payouts are returned.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","payments","{{payer_id}}","cancel","AP85667-20181019-142501"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"05dbb095-c848-48ca-a049-7915db84f159","name":"Cancel by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://test.interchecks.com/api/v1.0/payments/{{payer_id}}/cancel/AP85667-20181019-142501"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Date","value":"Thu, 29 Nov 2018 00:41:52 GMT"},{"key":"Expires","value":"0"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Vcap-Request-Id","value":"249e5d58-688f-4931-5626-f87ae9269172"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"payments\": [\n        {\n            \"recipient_id\": \"REtrOlA_A8R6q6Iegs0xFsXg\",\n            \"recipient_email\": \"art@interchecks.com\",\n            \"recipient_first_name\": \"ART\",\n            \"recipient_last_name\": \"VANDELAY\",\n            \"payment_id\": \"PM4KN82SxvTJKBr6mBHkT8dg\",\n            \"payment_amount\": 25,\n            \"payment_reference_id\": \"AP85667-A-20181019-142501985\",\n            \"payment_currency\": \"USD\",\n            \"payment_status\": \"CANCELLED\",\n            \"payment_created_date\": \"2018-10-19T14:25:01+0000\",\n            \"payment_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_transaction_id\": \"IC-22039-198-35329\",\n            \"payout_transaction\": {\n                \"payout_id\": \"POhc3PfZdbTm2sLpnjUCweSg\",\n                \"payout_amount\": 25,\n                \"payout_currency\": \"USD\",\n                \"payout_status\": \"CANCELLED\",\n                \"payout_date\": \"2018-10-19T14:25:06+0000\",\n                \"payout_transaction_id\": \"IC-22039-198-35329\",\n                \"payout_method\": \"Direct Deposit\"\n            }\n        }\n    ],\n    \"request_id\": \"AP85667-20181019-142501\",\n    \"payments_total\": 1\n}"}],"_postman_id":"e5b0f547-51f7-451f-bced-0702674f0f6a"}],"id":"acecef65-7855-42bb-8e46-2af71200f480","description":"<h2 id=\"payment-bundling\">Payment Bundling</h2>\n<p>The <code>payments</code> structure is an array of 1-to-n <code>payment</code> objects.  The payments will be bundled into a single payout when processed.</p>\n<h2 id=\"payment-request-information\">Payment Request Information</h2>\n<ul>\n<li><code>request_reference_id</code> is an optional parameter that can be included in the root object of the request. It serves as an external reference ID for a payments batch (1 or more payments).  Uniqueness for this ID will be enforced for your account for all valid requests.  If an existing ID is sent new payments will not be created and a <code>409 Conflict</code> will be returned.  If <code>payments_ui_url</code> is set to <code>true</code>, a new Widget URL will be generated and returned in the response.</li>\n</ul>\n<h2 id=\"callback-option\">Callback Option</h2>\n<ul>\n<li>Every create payment request can include <code>callback_url</code> and <code>callback_params</code> in the root object of the request</li>\n<li><code>callback_params</code> is a string array with the optional values:</li>\n<li><code>request_id</code>, <code>request_reference_id</code>, <code>payment_reference_id</code>, and <code>payment_status</code></li>\n<li>The callback URL will be invoked after the payment process is complete or the status of a payment changes.</li>\n</ul>\n<h2 id=\"payout-request\">Payout Request</h2>\n<p>Supplying a <code>payout</code> object within the <code>recipient</code> object will automatically disburse funds to the recipient's account.  The <code>method</code> provided must be a payment method your payer profile supports.</p>\n<ul>\n<li>Available payment methods: <code>ECHECK</code>, <code>ACH_STANDARD</code>, <code>ACH_SAME_DAY</code>, <code>CHECK</code>, <code>PAYPAL</code>,<code>INSTANT_DEPOSIT</code>,<code>VENMO_ACH</code>,<code>PHYSICAL_CARD_MASTERCARD</code>,<code>VIRTUAL_CARD_MASTERCARD</code>,<code>PHYSICAL_CARD_VISA</code>,<code>VIRTUAL_CARD_VISA</code></li>\n<li>For more information on available payment methods and disbursement SLAs contact <a href=\"mailto:support@interchecks.com\">support@interchecks.com</a></li>\n<li>A Payout Response will contain <code>provider_transaction_id</code> - if the payment method is <code>CHECK</code> or <code>ECHECK</code>, this value will be the check number.  Other payment methods will contain a transaction ID that may or may not be reflected on your bank statement.</li>\n</ul>\n<h2 id=\"requiredoptional-fields-for-payout-methods\">Required/Optional fields for Payout methods</h2>\n<ul>\n<li><p><code>ECHECK</code> - the payment will be delivered to the recipient's primary email</p>\n</li>\n<li><p><code>ACH_STANDARD</code>, <code>ACH_SAME_DAY</code>, <code>VENMO_ACH</code></p>\n</li>\n<li><p><code>account_type</code> - required.  Values are <code>CHECKING</code>,<code>SAVINGS</code>,<code>BUSINESS</code></p>\n</li>\n<li><p><code>account_number</code> - required.</p>\n</li>\n<li><p><code>routing_number</code> - required.</p>\n</li>\n<li><p><code>PAYPAL</code></p>\n</li>\n<li><p><code>email</code> - required.  The recipient's paypal email address.</p>\n</li>\n<li><p><code>CHECK</code></p>\n</li>\n<li><p><code>address</code> - required</p>\n</li>\n<li><p><code>city</code> - required.</p>\n</li>\n<li><p><code>state</code> - required.  2 character state code.</p>\n</li>\n<li><p><code>zip</code> - required.  5 or 9 digit zip code.</p>\n</li>\n<li><p><code>INSTANT_DEPOSIT</code></p>\n</li>\n<li><p><code>account_id</code> - required.</p>\n</li>\n<li><p><code>PHYSICAL_CARD_MASTERCARD</code>,<code>VIRTUAL_CARD_MASTERCARD</code>,<code>PHYSICAL_CARD_VISA</code>,<code>VIRTUAL_CARD_VISA</code></p>\n</li>\n<li><p><code>account_id</code> - required.</p>\n</li>\n</ul>\n<p><strong>The requests below shows examples for referenced parameters above</strong></p>\n","event":[{"listen":"prerequest","script":{"id":"82e995e5-6bc3-480b-975c-3af511e5cd86","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8a0720c6-0936-4acb-b795-c637958d528e","type":"text/javascript","exec":[""]}}],"_postman_id":"acecef65-7855-42bb-8e46-2af71200f480","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}}},{"name":"Transactions","item":[{"name":"Create CREDIT Transaction","id":"be2c68ab-d0a9-4d0c-a039-cc12c5199bbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"request_reference_id\": \"txn-test-9-26\",\n\t\"account_id\" : \"RPA-9LXznEKXTpqx3hAc-6RTiw\",\n\t\"amount\": 25.00,\n\t\"type\": \"CREDIT\",\n\t\"method\" : \"INSTANT_DEPOSIT\"\n}\n"},"url":"https://test.interchecks.com/api/v1.0/transactions/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ","description":"<p>Issue a Transaction request using the Recipient's Payment Account ID (<code>account_id</code>).  The <code>TYPE</code> of <code>DEBIT</code> or <code>CREDIT</code> indicates the direction of funds movement.</p>\n<h2 id=\"requiredoptional-params\">Required/Optional Params</h2>\n<ul>\n<li><code>account_id</code> - Required.</li>\n<li><code>amount</code> - Required.</li>\n<li><code>type</code> - <code>DEBIT</code> or <code>CREDIT</code> - Required.</li>\n<li><code>method</code> - <code>ACH_STANDARD</code>,<code>ECHECK</code>,<code>CHECK</code>,<code>INSTANT_DEPOSIT</code>,<code>VIRTUAL_CARD</code>, etc - Required.</li>\n<li><code>request_reference_id</code> - Optional.  Serves as an external reference ID if applicable for your tracking.</li>\n<li><code>memo</code> - Optional. Additional detail for the transaction to be displayed to the recipient.</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}},"urlObject":{"path":["api","v1.0","transactions","{{payer_id}}","RELT4PQbqqTUSVOYwP4KXcvQ"],"host":["https://test.interchecks.com"],"query":[],"variable":[]}},"response":[{"id":"83f19b13-450b-42b0-b616-0319cdc29c20","name":"Create with Account ID w/ Approval Code","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"\n{\n\t\"request_reference_id\": \"txn-test-2\",\n\t\"account_id\" : \"RPA-cL8WPtZNSU6zoNQcH4KvSA\",\n\t\"amount\": 12.22,\n\t\"type\": \"DEBIT\"\n}\n"},"url":"https://test.interchecks.com/api/v1.0/transactions/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 30 Jul 2019 13:16:49 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=Y2NlZmY0NjItMmI0Yy00ZDlkLWI2YjAtNWY1NGU3ZGEyZTAy; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4fe79bef9f7db90b-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_reference_id\": \"txn-test-2\",\n    \"transaction_id\": \"ICT-22169-198-2666\",\n    \"paid_amount\": 12.22,\n    \"currency\": \"USD\",\n    \"transaction_status\": \"Paid\",\n    \"paid_date\": \"2019-07-30T13:16:49.760Z\",\n    \"detail\": \"Visa Debit 9***********9992\",\n    \"account_id\": \"RPA-cL8WPtZNSU6zoNQcH4KvSA\",\n    \"provider_transaction_id\": \"Q-EjnmlVsOvu1M3sTqT59Q\",\n    \"provider_approval_code\": \"131649\"\n}"},{"id":"2af30b85-89fb-4dff-b15e-31cbd1f52193","name":"Create with Account ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"\n{\n\t\"request_reference_id\": \"txn-test-1\",\n\t\"account_id\" : \"RPA-cL8WPtZNSU6zoNQcH4KvSA\",\n\t\"amount\": 12.22,\n\t\"type\": \"DEBIT\"\n}\n"},"url":"https://test.interchecks.com/api/v1.0/transactions/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Jul 2019 21:18:06 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=M2JhMzkxMjMtZTIyMS00NDQyLThhMDEtYmE0YWMyZjc4ODRm; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4fc12a107c39c877-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_reference_id\": \"txn-test-1\",\n    \"transaction_id\": \"ICT-22169-198-2661\",\n    \"paid_amount\": 12.22,\n    \"currency\": \"USD\",\n    \"transaction_status\": \"Paid\",\n    \"paid_date\": \"2019-07-25T21:18:06.425Z\",\n    \"detail\": \"Visa Debit 9***********9992\",\n    \"account_id\": \"RPA-cL8WPtZNSU6zoNQcH4KvSA\",\n    \"provider_transaction_id\": \"i2AhiNNE0KMuigViFlpfAA\"\n}"},{"id":"8b610467-3de5-40fe-a494-d7981f0a284c","name":"Create CREDIT Transaction with CARD","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"request_reference_id\": \"txn-test-9-26\",\n\t\"account_id\" : \"RPA-9LXznEKXTpqx3hAc-6RTiw\",\n\t\"amount\": 25.00,\n\t\"type\": \"CREDIT\",\n\t\"method\" : \"INSTANT_DEPOSIT\"\n}\n"},"url":"https://test.interchecks.com/api/v1.0/transactions/{{payer_id}}/RELT4PQbqqTUSVOYwP4KXcvQ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Oct 2019 14:55:38 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000 ; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"SESSION=OTcxNDIxYjUtMDgzYy00YWZkLTgyNzktYjhjNmQxMGI1NTM1; Path=/; Secure; HttpOnly; SameSite=Lax"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"523132510a2a5336-MIA"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_reference_id\": \"txn-test-9-26\",\n    \"transaction_id\": \"ICT-22169-198-2953\",\n    \"paid_amount\": 25,\n    \"currency\": \"USD\",\n    \"transaction_status\": \"PAID\",\n    \"transaction_type\": \"CREDIT\",\n    \"paid_date\": \"2019-10-09T14:55:38.390Z\",\n    \"detail\": \"VISA PREPAID 9995\",\n    \"account_id\": \"RPA-9LXznEKXTpqx3hAc-6RTiw\",\n    \"provider_transaction_id\": \"SzwhxhGFuCuFSKt1qGYEjA\",\n    \"provider_approval_code\": \"165560\",\n    \"provider_network\": \"Visa\",\n    \"method\": \"INSTANT_DEPOSIT\"\n}"}],"_postman_id":"be2c68ab-d0a9-4d0c-a039-cc12c5199bbd"}],"id":"7c843cd9-42ae-4b5c-ae1f-2d7afacaa8cd","description":"<p>Issue a Payment Transaction request using the Recipient's Payment Account ID (<code>account_id</code>).  The <code>TYPE</code> of <code>DEBIT</code> or <code>CREDIT</code> indicates the direction of funds movement. A <code>DEBIT</code> Currently, Transaction is only supported with a valid <code>CARD</code> account that supports pulling funds from the Recipient's account.</p>\n<h2 id=\"card-processing-providers-often-require-the-display-of-certain-information-pre-and-post-transaction\">Card Processing Providers often require the display of certain information pre and post transaction</h2>\n<ul>\n<li>PRE Transaction</li>\n<li>Description of services</li>\n<li>Refund / cancellation policy available and agreed to by cardholder prior to transaction (click-through terms and conditions are fine)</li>\n<li>Prices and fees for services and total amount all shown separately</li>\n<li>Merchant name and contact information shown. Contact information can be shown on “Contact” link if displayed obvious to cardholder.</li>\n<li>POST Transaction</li>\n<li>Date and Time of purchase</li>\n<li>Masked Card number used</li>\n<li>Price, description, and fees all shown separately</li>\n<li>Authorization Code (returned as provider_approval_code)</li>\n<li>Merchant name and contact information</li>\n<li>Card Network (returned as provider_network)</li>\n<li>Refund/Return policy</li>\n<li>Transaction Type: ex: Purchase, Disbursement, Credit, Cancellation, Refund, Return, Prepaid Load</li>\n</ul>\n<h2 id=\"callback-option\">Callback Option</h2>\n<ul>\n<li>Every transaction request can include <code>callback_url</code> and <code>callback_params</code> in the root object of the request</li>\n<li><code>callback_params</code> is a string array with the optional values:</li>\n<li><code>transaction_id</code>, <code>request_reference_id</code> and <code>transaction_status</code></li>\n<li>The callback URL will be invoked after the transaction process is complete or the status of a transaction changes.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"88cb9a44-722f-45b6-a7df-627e91a73c64","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0bd077f9-12ba-4277-9541-9a38a9949167","type":"text/javascript","exec":[""]}}],"_postman_id":"7c843cd9-42ae-4b5c-ae1f-2d7afacaa8cd","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]},"isInherited":true,"source":{"_postman_id":"7815deea-f46d-4e86-aa69-68eeda68f98f","id":"7815deea-f46d-4e86-aa69-68eeda68f98f","name":"Interchecks RESTful API v1","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}]}},"event":[{"listen":"prerequest","script":{"id":"7f93870e-9ab1-4761-92c6-c4bd4aa52e2e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bdd16a61-970b-42df-a6d2-6b78daee9b18","type":"text/javascript","exec":[""]}}],"variable":[{"key":"url","value":"https://test.interchecks.com"}]}