{"info":{"_postman_id":"3f7e8180-26d8-4195-a02f-2abaa84906a4","name":"Payment API Collection 1.0","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<hr>\n<p>To get a foreseeable and resource-oriented function call we have implemented our API with REST. All response objects will be delivered as JSON objects.</p>\n<p>For an easy switch from test to live mode the gateway supports test keys and live keys. The test key works in the exact same way as the live key, but doesn't do live credit card transactions. You can always use the test key even if you have activated the live key for your staging server.</p>\n<h1 id=\"content-type\">Content Type</h1>\n<hr>\n<p>The request format, which is required for operations with a request body. The syntax is:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"pagination\">Pagination</h2>\n<hr>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pageIndex</td>\n<td>integer</td>\n<td>The pageIndex number indicating which set of items will be returned in the response. So, the combination of pageIndex=1 and pageSize=20 returns the first 20 items. The combination of pageIndex=2 and pageSize=20 returns items 21 through 40</td>\n</tr>\n<tr>\n<td>pageSize</td>\n<td>integer</td>\n<td>The number of items to return in the response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"query-string-filtering\">Query string filtering</h2>\n<hr>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dateFrom</td>\n<td>DateTime</td>\n<td>From DateTime UTC parameter.</td>\n</tr>\n<tr>\n<td>dateTo</td>\n<td>DateTime</td>\n<td>To DateTime UTC parameter.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"authentication\">Authentication</h1>\n<hr>\n<p>Authentication to the API occurs via HTTP Basic Auth. \nPass the credentials as a Base64-encoded header or as parameters in an HTTP client.</p>\n<p>The credentials must be Base64-encoded. The following is an example of an encoded HTTP Basic Authentication header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic dGVzdF9yNnIxNGl6c3JlYms2c255b3kxajZoYnpqejF4Ym8w\n</code></pre><p>The credentials are defined per websites. To get your credentials:</p>\n<ol>\n<li>Log in to your Merchant portal.</li>\n<li>Go to Developer settings &gt; Website settings &gt; API Keys.</li>\n<li>Select the website for your integration.</li>\n<li>On the modal copy API key value, set and copy API secret value for sandbox and live mode (if available).</li>\n</ol>\n<h1 id=\"error-codes\">Error Codes</h1>\n<h1 id=\"errors\">Errors</h1>\n<hr>\n<p>The conventional HTTP response codes are used to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a charge failed, etc.). Codes in the 5xx range indicate an error with the gateway's servers (these are rare).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>errorType</td>\n<td>string</td>\n<td>The type of error returned.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>string</td>\n<td>Error code.</td>\n</tr>\n<tr>\n<td>parameter</td>\n<td>string</td>\n<td>If the error is parameter-specific, the parameter related to the error.</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>A human-readable message providing more details about the error.</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    {\n      \"errorType\": \"invalidRequest\",\n      \"code\": \"validationError\",\n      \"parameter\": \"Amount\",\n      \"message\": \"Amount must be greater than 0\"\n    }\n  ]\n}\n</code></pre>\n<h2 id=\"http-status-codes\">HTTP status codes</h2>\n<hr>\n<ul>\n<li>2xx indicates a successful request</li>\n<li>4xx informs you about an error</li>\n<li>5xx tells you that we did something wrong</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Meaning</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n<td>Everything worked as expected.</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Created</td>\n<td>The requested resource is successfuly created.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n<td>The request was unacceptable, often due to missing a required parameter.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>No valid API key provided.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n<td>The requested resource doesn't exist.</td>\n</tr>\n<tr>\n<td>5xx</td>\n<td>Server Error</td>\n<td>Something went wrong on the gateway side.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-types\">Error types</h2>\n<hr>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invalidRequest</td>\n<td>Invalid request errors arise when your request has invalid parameters</td>\n</tr>\n<tr>\n<td>paymentError</td>\n<td>Error related to payment proccess. The most common type of error</td>\n</tr>\n<tr>\n<td>authentication_error</td>\n<td>Failure to properly authenticate yourself in the request.</td>\n</tr>\n<tr>\n<td>api_error</td>\n<td>API errors cover any other type of problem (e.g., a temporary problem with the gateway's servers), and are extremely uncommon</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-codes-1\">Error codes</h2>\n<hr>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>invalidTransactionStatus</td>\n<td>Invalid transaction status.</td>\n</tr>\n<tr>\n<td>invalidTransactionType</td>\n<td>Invalid transaction type.</td>\n</tr>\n<tr>\n<td>invalidPaymentMethod</td>\n<td>Invalid payment method.</td>\n</tr>\n<tr>\n<td>invalidPaymentChannel</td>\n<td>Invalid payment channel.</td>\n</tr>\n<tr>\n<td>invalidCvc</td>\n<td>Invalid or not provided CVC parameter.</td>\n</tr>\n<tr>\n<td>invalidRefundAmount</td>\n<td>Refund amount needs to be less or equal to available refund amount.</td>\n</tr>\n<tr>\n<td>declinedByAcquirer</td>\n<td>Declined by acquirer.</td>\n</tr>\n<tr>\n<td>amountTooLarge</td>\n<td>The specified amount is greater than the maximum amount allowed.</td>\n</tr>\n<tr>\n<td>amountTooSmall</td>\n<td>The specified amount is less than the minimum amount allowed.</td>\n</tr>\n<tr>\n<td>maxVolumeExceeded</td>\n<td>Max volume exceeded.</td>\n</tr>\n<tr>\n<td>restrictionByPid</td>\n<td>Restriction by Payment ID.</td>\n</tr>\n<tr>\n<td>restrictionByEmail</td>\n<td>Restriction by email.</td>\n</tr>\n<tr>\n<td>blacklisted</td>\n<td>Transaction blacklisted.</td>\n</tr>\n<tr>\n<td>invalidPaymentSource</td>\n<td>Invalid Payment Source.</td>\n</tr>\n<tr>\n<td>invalidBillingAddressCountry</td>\n<td>Invalid Billing AddressCountry.</td>\n</tr>\n<tr>\n<td>invalidCurrency</td>\n<td>Invalid Currency.</td>\n</tr>\n<tr>\n<td>declinedByBank</td>\n<td>Common decline by bank.</td>\n</tr>\n<tr>\n<td>declinedByThreeDSecure</td>\n<td>Declined by 3D Secure.</td>\n</tr>\n<tr>\n<td>authorizationFailure</td>\n<td>Authorization failure.</td>\n</tr>\n<tr>\n<td>authorizationToTheChannelFailure</td>\n<td>Authorization to the channel failure.</td>\n</tr>\n<tr>\n<td>channelConnectionError</td>\n<td>Channel connection error.</td>\n</tr>\n<tr>\n<td>channelInvalidRefundRequest</td>\n<td>Channel error, invalid refund request.</td>\n</tr>\n<tr>\n<td>threeDSecureCardNotEnrolled</td>\n<td>The requested card is not 3D Secure enrolled.</td>\n</tr>\n<tr>\n<td>threeDSecureEnrolmentError</td>\n<td>3D Secure Enrolment Error.</td>\n</tr>\n<tr>\n<td>threeDSecureAuthenticationError</td>\n<td>3D Secure Authentication Error.</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":"Introduction","slug":"introduction"},{"content":"Content Type","slug":"content-type"},{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Errors","slug":"errors"}],"owner":"20832549","collectionId":"3f7e8180-26d8-4195-a02f-2abaa84906a4","publishedId":"Uyxbr9o5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-05-05T12:15:56.000Z"},"item":[{"name":"Transactions","item":[{"name":"Authorize transaction","item":[{"name":"Authorize transaction AVS","event":[{"listen":"test","script":{"exec":["//pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"96e9d7a9-c53d-4038-bec2-b4c2abeb660b"}}],"id":"ff133dcd-700c-4a85-ae5c-77a5801134b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"d09528b9-1483-449d-a08c-fa41431b23ec"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"authorizationMode\": \"AVS\",\n    \"address\": \"My fake address\",\n    \"postcode\": \"5235\",\n    \"city\": \"Mile\",\n    \"country\": \"NG\",\n    \"state\": \"AN\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/authorization","urlObject":{"path":["v1","transactions","{{transactionId}}","authorization"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff133dcd-700c-4a85-ae5c-77a5801134b1"},{"name":"Authorize transaction PIN","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"e97ca364-626b-4ec5-99c6-f0f5e6624889"}}],"id":"05659b2a-5776-466c-8673-c910cfc90245","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"c6880539-e0d4-4b82-893c-035bf52aba6b"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"authorizationMode\": \"PIN\",\n    \"pin\": \"3310\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/authorization","urlObject":{"path":["v1","transactions","{{transactionId}}","authorization"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"05659b2a-5776-466c-8673-c910cfc90245"},{"name":"Authorize transaction OTP","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"f24ad7e5-7d7b-4629-849c-1e6baa868e7a"}}],"id":"7e083f0f-e512-46d9-b178-0b4c4039998a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"d3d67ccb-929b-43d5-9cb3-a21f16949ba6"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"authorizationMode\": \"OTP\",\n    \"otp\": \"5235\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/authorization","urlObject":{"path":["v1","transactions","{{transactionId}}","authorization"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e083f0f-e512-46d9-b178-0b4c4039998a"}],"id":"bdd002fb-54a1-4e87-ae18-a49127579eac","_postman_id":"bdd002fb-54a1-4e87-ae18-a49127579eac","description":""},{"name":"Create APM transaction","item":[{"name":"Create USSD transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"c437ab2b-a2cb-4024-910e-368e3c0a89f8"}}],"id":"756ecef2-bc29-4770-beb1-4b04bcdc8d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"d4d232f5-7c68-4c50-8ee1-14240e908759"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.18,\n\t\"currency\":\"NGN\",\n    \"customer\":{\n\t\t\"firstName\": \"Estelle\",\n\t\t\"lastName\": \"Mante\",\n\t\t\"email\": \"Delbert7@example.org\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"USSD\",\n        \"bankCode\":\"044\"\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"756ecef2-bc29-4770-beb1-4b04bcdc8d81"},{"name":"Create TigerPay transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"7ac75645-3aaf-40ed-bea1-5ac35c09de94"}}],"id":"0a146394-b709-4d9c-a912-afc883febfcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"db113b22-d058-4cc7-ae38-d2dd30c81a9e"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.18,\n\t\"currency\":\"JPY\",\n    \"customer\":{\n\t\t\"firstName\": \"Roma\",\n\t\t\"lastName\": \"Wiegand\",\n\t\t\"email\": \"Lloyd.Welch88@example.com\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"TIGERPAY\"\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a146394-b709-4d9c-a912-afc883febfcb"},{"name":"Create Direct Debit transaction Nigeria","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"004504ab-c5b0-4c76-9dea-88f4bd195347"}}],"id":"d9072096-01c7-47c1-bdf0-48b274f9bdd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"26cc9383-2cd7-4fc0-8964-950dc18940ec"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.18,\n\t\"currency\":\"NGN\",\n    \"customer\":{\n\t\t\"firstName\": \"Sven\",\n\t\t\"lastName\": \"Rau\",\n\t\t\"email\": \"Elenora35@example.com\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"DIRECTDEBIT\",\n        \"bankCode\":\"044\",\n        \"accountNumber\":\"044\"\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9072096-01c7-47c1-bdf0-48b274f9bdd0"},{"name":"Create Direct Debit transaction Canada","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"f5d6ace8-ff77-4b9b-b88b-a143ba826e11"}}],"id":"af2f468f-7733-4143-b51c-3cd46027f3d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"12a74671-26f0-4aff-88e7-4e38c578235a"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Alexzander\",\n\t\t\"lastName\": \"Cremin\",\n\t\t\"email\": \"Kaylah85@example.net\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"DIRECTDEBIT\",\n        \"accountHolderName\": \"Mike Welch\",\n\t\t\"accountNumber\":\"123456789\",\n\t\t\"bankCode\": \"123\",\n\t\t\"transitNumber\": \"12345\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Toronto\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n\t\t}\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af2f468f-7733-4143-b51c-3cd46027f3d2"},{"name":"Create Interac Online transaction Canada","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"db081bca-9117-4e3f-9be9-9a341f2ad7b0"}}],"id":"d1a7f757-796a-4c2b-a55b-f46ad3f21662","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"8ec8e966-12fc-4263-b4b7-214a6c63ec70"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Vella\",\n\t\t\"lastName\": \"Donnelly\",\n\t\t\"email\": \"Zetta_Bayer@example.com\",\n        \"phone\": \"+14034881071\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"INTERAC\",\n        \"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Toronto\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n\t\t}\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d1a7f757-796a-4c2b-a55b-f46ad3f21662"},{"name":"Create Interac E-Transfer transaction Canada","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"5fa44548-26dd-433a-a3c1-b2d38a18d257"}}],"id":"3c3245f7-beb9-4984-82c3-de4d9fcb4022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"bba2529e-af35-413f-a431-a2f80f02ec6c"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Scotty\",\n\t\t\"lastName\": \"Bernier\",\n\t\t\"email\": \"Naomi28@example.net\",\n        \"phone\": \"+14034881071\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"ETRANSFER\",\n        \"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Toronto\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n\t\t}\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c3245f7-beb9-4984-82c3-de4d9fcb4022"},{"name":"Create PayTM transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"b1ff00d2-7d31-40d3-a4ba-31c9f13e84e9"}}],"id":"8face7bb-ef59-4910-b798-92eaa46f616c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"a4a7a653-4445-420a-9766-18d092feada4"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"INR\",\n    \"customer\":{\n\t\t\"firstName\": \"Wiley\",\n\t\t\"lastName\": \"Tromp\",\n\t\t\"email\": \"Abdul_Cummerata@example.com\",\n        \"phone\": \"+14034881071\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"PAYTM\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Rutherford Mission\",\n\t\t\t\"city\": \"North Lilianton\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n        }\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2001:0db8:11a3:09d7:1f34:8a2e:07a0:765d\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8face7bb-ef59-4910-b798-92eaa46f616c"},{"name":"Create UPI transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"f551fe3d-fc20-4c84-9e6d-9f33cd891e68"}}],"id":"3763be98-e322-468c-80d4-bc7a8ba9999f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"99bfaf6a-fa7f-40f2-8285-db558f992675"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"INR\",\n    \"customer\":{\n\t\t\"firstName\": \"Francis\",\n\t\t\"lastName\": \"Satterfield\",\n\t\t\"email\": \"Rolando33@example.org\",\n        \"phone\": \"+14034881071\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"PAYTM\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Skye Mews\",\n\t\t\t\"city\": \"Port Cassie\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n        }\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2001:0db8:11a3:09d7:1f34:8a2e:07a0:765d\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3763be98-e322-468c-80d4-bc7a8ba9999f"},{"name":"Create Interac Direct Debit + transaction Canada","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"a1c4a0f0-a547-4e12-85d2-0cd1a91e7d05"}}],"id":"0ff75ae9-85c5-4c5b-a8f1-f52e17a791ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"4380bb17-14b7-48a4-a1ae-4b26fbe9daea"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Mathias\",\n\t\t\"lastName\": \"Daniel\",\n\t\t\"email\": \"Axel.Deckow95@example.org\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"DIRECTDEBITPLUS\",\n        \"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Toronto\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n\t\t}\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ff75ae9-85c5-4c5b-a8f1-f52e17a791ae"},{"name":"Create Cash transaction Argentina, Chile, Peru, Ecuador","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"e12da61a-f733-4776-a5ff-8ea8224418a4"}}],"id":"4135ec62-18ac-4895-bae0-05199ec9349b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"8c57d4fd-9439-4d1e-beba-15296293c5fa"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":5.18,\n\t\"currency\":\"CLP\",\n    \"customer\":{\n\t\t\"firstName\": \"Beaulah\",\n\t\t\"lastName\": \"Crooks\",\n\t\t\"email\": \"Luella.Lang@example.org\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"CASH\",\n        \"documentType\":\"RUT\",\n\t\t\"documentNumber\": \"3534234234\",\n        \"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Toronto\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CL\",\n            \"state\": \"AR\"\n\t\t}\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4135ec62-18ac-4895-bae0-05199ec9349b"},{"name":"Create Bank transfer transaction Chile, Peru, Ecuador","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"f7294047-e77f-4d4c-b103-4c4b1c4e9766"}}],"id":"e5f26524-57f5-4449-9e4f-73b236f96f3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"5f262db0-90d1-4741-bac0-053ae4faaa00"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":5.18,\n\t\"currency\":\"CLP\",\n    \"customer\":{\n\t\t\"firstName\": \"Humberto\",\n\t\t\"lastName\": \"Sawayn\",\n\t\t\"email\": \"Dallas23@example.com\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"BANKTRANSFER\",\n        \"documentType\":\"RUT\",\n\t\t\"documentNumber\": \"3534234234\",\n        \"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Toronto\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CL\",\n            \"state\": \"AR\"\n\t\t}\n    },\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"0cd7754a-178a-433d-9878-20e222a2f833\",\n\t\"ipAddress\":\"2409:4041:6e86:a5b:d80b:b2bc:e709:ef3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\",\n    \"userDefinedField1\": \"myudfsomerefhah1a\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5f26524-57f5-4449-9e4f-73b236f96f3a"}],"id":"a8e2ae37-c1c5-44a2-a5f6-de1b2003e250","_postman_id":"a8e2ae37-c1c5-44a2-a5f6-de1b2003e250","description":""},{"name":"Create card transaction","item":[{"name":"Create VISA transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"da19e02a-9149-49f5-8ff4-23d0a4bdad9c"}}],"id":"4d577e4e-0d76-40b2-9f71-dc68099e65cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"de5cdf71-8c29-400d-872c-42fc1af5ca8b","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":7.55,\n\t\"currency\":\"EUR\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Brooks\",\n\t\t\"lastName\": \"Jenkins\",\n\t\t\"email\": \"Corrine19@example.org\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming2\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"VISA\",\n\t\t\"holder\": \"Elise Wolf\",\n\t\t\"cardNumber\":\"5531 8866 5214 2950\",\n\t\t\"expiryMonth\": 1,\n\t\t\"expiryYear\": 23,\n\t\t\"cvc\": \"003\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d577e4e-0d76-40b2-9f71-dc68099e65cc"},{"name":"Create VISA transaction Chile","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"99467405-41b9-4a1e-ba81-7691728b7cb9"}}],"id":"fa62f606-12cf-4396-b595-cf76e7af61e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"cf8cd614-38d5-4364-848e-06f4655898c4","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":7.55,\n\t\"currency\":\"CLP\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Vincenza\",\n\t\t\"lastName\": \"Carroll\",\n\t\t\"email\": \"Sherman70@example.org\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming2\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"VISA\",\n\t\t\"documentType\": \"RUT\",\n        \"documentNumber\": \"235423466\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n            \"city\": \"Toronto\",\n            \"postcode\":\"01010\",\n            \"country\":\"CL\",\n            \"state\": \"AR\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa62f606-12cf-4396-b595-cf76e7af61e8"},{"name":"Create Mastercard transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"c2ea08dd-9938-4ddb-ba12-b08e75b7a92b"}}],"id":"750131ea-8577-4594-bb10-39ef49204699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"b026bf33-1a3d-45d7-94dc-1801c49b56c0","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.55,\n\t\"currency\":\"EUR\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Hardy\",\n\t\t\"lastName\": \"Prohaska\",\n\t\t\"email\": \"Israel_Huels33@example.org\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming2\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"MASTERCARD\",\n\t\t\"holder\": \"Petra Haag\",\n\t\t\"cardNumber\":\"4012000300001003\",\n\t\t\"expiryMonth\": 1,\n\t\t\"expiryYear\": 23,\n\t\t\"cvc\": \"003\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"http://68.183.64.149:5005/home/success\",\n\t\"cancelUrl\":\"http://68.183.64.149:5005\",\n\t\"failureUrl\":\"http://68.183.64.149:5005/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"750131ea-8577-4594-bb10-39ef49204699"},{"name":"Create Mastercard transaction NGN","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"451470fc-ed33-4c44-a5d7-516b715f2925"}}],"id":"21ddf066-2b7e-43b5-8344-e904f2c59e75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"09a5e8aa-029a-4aab-a8f7-0d7d82dd64ec","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.55,\n\t\"currency\":\"NGN\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Selena\",\n\t\t\"lastName\": \"Price\",\n\t\t\"email\": \"Roselyn61@example.com\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming2\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"MASTERCARD\",\n\t\t\"holder\": \"Zoie Treutel\",\n\t\t\"cardNumber\":\"5531 8866 5214 2950\",\n\t\t\"expiryMonth\": 1,\n\t\t\"expiryYear\": 23,\n\t\t\"cvc\": \"003\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21ddf066-2b7e-43b5-8344-e904f2c59e75"},{"name":"Create JCB transaction JPY","event":[{"listen":"test","script":{"id":"451470fc-ed33-4c44-a5d7-516b715f2925","exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript"}}],"id":"a923164a-1e83-4707-a216-fd03cb516546","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"5c72f47c-209c-4350-b475-166dba138609","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":50,\n\t\"currency\":\"JPY\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Jenifer\",\n\t\t\"lastName\": \"McDermott\",\n\t\t\"email\": \"Maximus0@example.org\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"JCB\",\n\t\t\"holder\": \"Belle Ebert\",\n\t\t//\"cardNumber\":\"5377 2836 4507 7450\",\n        \"cardNumber\":\"3565426602158102\",\n\t\t\"expiryMonth\": 1,\n\t\t\"expiryYear\": 26,\n\t\t\"cvc\": \"789\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a923164a-1e83-4707-a216-fd03cb516546"},{"name":"Create VISA transaction NGN","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"8218945f-c5ba-4d82-8bda-b25e6551fcd4"}}],"id":"61a57d46-1c00-4b4b-a249-85bcc8260be4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"928eadfe-addc-467b-9e9b-f4cf513801a7","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.55,\n\t\"currency\":\"NGN\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Maximus\",\n\t\t\"lastName\": \"Grady\",\n\t\t\"email\": \"Hunter_DuBuque98@example.net\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming2\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"VISA\",\n\t\t\"holder\": \"Dylan Schneider\",\n\t\t\"cardNumber\":\"4187427415564246\",\n\t\t\"expiryMonth\": 1,\n\t\t\"expiryYear\": 23,\n\t\t\"cvc\": \"003\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"61a57d46-1c00-4b4b-a249-85bcc8260be4"}],"id":"96e028b8-793c-4825-8bbb-3af06a1c66d1","_postman_id":"96e028b8-793c-4825-8bbb-3af06a1c66d1","description":""},{"name":"Create Other Transactions","item":[{"name":"Create EU APMs Transaction (BTCBIT)","event":[{"listen":"test","script":{"id":"da19e02a-9149-49f5-8ff4-23d0a4bdad9c","exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript"}}],"id":"c5f880ab-b263-44f7-aa39-d977dec1d6d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"a450b849-5c72-499c-8313-26e745384b56","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":10.50,\n\t\"currency\":\"EUR\",\n\t\"action\":\"Purchase\",\n    \"customer\":{\n\t\t\"firstName\": \"Stefan\",\n\t\t\"lastName\": \"Hayes\",\n\t\t\"email\": \"Christopher62@example.net\",\n\t\t\"accountReference\":\"acc-0007\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"GIROPAY\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"Street Address\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"description\":\"T-Shirt XXL\",\n\t\"reference\":\"ORD24234\",\n\t\"ipAddress\":\"43.248.24.130\",\n    \"userDefinedField1\": \"blah1\",\n    \"userDefinedField2\": \"blah2\",\n    \"userDefinedField3\": \"blah3\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5f880ab-b263-44f7-aa39-d977dec1d6d5"}],"id":"16d142c8-af2c-4a25-bca2-e85873c21938","_postman_id":"16d142c8-af2c-4a25-bca2-e85873c21938","description":""},{"name":"Get transactions","id":"5d123fec-b860-41bc-80ad-61d16d0ec913","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"0ec80822-2d81-4db1-a0a3-6a9910c1425f","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d123fec-b860-41bc-80ad-61d16d0ec913"},{"name":"Get transactions by Id","id":"717ac273-4795-41f6-88b1-70f4a63fb884","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"35fbb116-5a6a-4d2d-ab1f-afb2de553cb2"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":""},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}","urlObject":{"path":["v1","transactions","{{transactionId}}"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"717ac273-4795-41f6-88b1-70f4a63fb884"},{"name":"Get transactions by order reference","id":"fd377d27-402a-4057-a07b-f534f42f7e56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"011f20fe-02c5-4d5b-b149-1ad9e19b578b"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":""},"url":"{{GATEWAY_API_URL}}/v1/transactions/reference/{referenceID}","urlObject":{"path":["v1","transactions","reference","{referenceID}"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd377d27-402a-4057-a07b-f534f42f7e56"},{"name":"Create transaction using existing customer Id","id":"ebf69c88-3bfd-4822-91ed-5dd6bca139df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"35eb23f4-08cb-46b2-a18e-e83de926b428"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":10.55,\n\t\"currency\":\"EUR\",\n\t\"action\":\"Purchase\",\n\t\"customer\":{\n\t\t\"customerId\": \"cus_4z8bm0wzvo\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"DINERS\",\n\t\t\"holder\": \"Irving Windler\",\n\t\t\"cardNumber\":\"4000000000000002\",\n\t\t\"expiryMonth\": 12,\n\t\t\"expiryYear\": 20,\n\t\t\"cvc\": \"123\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"StreetAddress\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"Description\":\"T-Shirt XXL\",\n\t\"Reference\":\"ORD24234\",\n\t\"ipAddress\":\"127.0.0.1\",\n\t\"successUrl\":\"http://68.183.64.149:5005/home/success\",\n\t\"cancelUrl\":\"http://68.183.64.149:5005\",\n\t\"failureUrl\":\"http://68.183.64.149:5005/home/cancel\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ebf69c88-3bfd-4822-91ed-5dd6bca139df"},{"name":"Capture Auth request","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"c2b064b1-024d-4037-a624-20980191333e"}}],"id":"3cc4b961-6ae2-4b8c-9c04-a3e3d5819218","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"467af5d9-4647-45d9-9bd2-893bf20b6655"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"reference\": \"ORD-345235\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/captures","urlObject":{"path":["v1","transactions","{{transactionId}}","captures"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cc4b961-6ae2-4b8c-9c04-a3e3d5819218"},{"name":"Create Card transaction using source Id","id":"0f0921b0-4632-4efc-8a27-805dd3655669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"6687efa6-007d-4f82-860e-d8afc2f4d569","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":10.55,\n\t\"currency\":\"EUR\",\n\t\"action\":\"Purchase\",\n\t\"customer\":{\n\t\t\"firstName\": \"Cecil\",\n\t\t\"lastName\": \"Dach\",\n\t\t\"email\": \"john2@doe.com\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\",\n\t\t\"address\": {\n\t\t\t\"streetAddress\":\"StreetAddress\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"source\":{\n\t\t\"sourceId\":\"src_cfzhu0a861\",\n\t\t\"cvc\": \"123\"\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"Description\":\"T-Shirt XXL\",\n\t\"Reference\":\"ORD24234\",\n\t\"ipAddress\":\"127.0.0.1\",\n\t\"successUrl\":\"http://68.183.64.149:5005/home/success\",\n\t\"cancelUrl\":\"http://68.183.64.149:5005\",\n\t\"failureUrl\":\"http://68.183.64.149:5005/home/cancel\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f0921b0-4632-4efc-8a27-805dd3655669"}],"id":"8cdb9140-272e-4342-b2a0-392fd40b1488","_postman_id":"8cdb9140-272e-4342-b2a0-392fd40b1488","description":""},{"name":"Recurring","item":[{"name":"Create first recurring transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"6ca01de4-1daa-49fa-81bc-bcea1103008b"}}],"id":"a7da8826-fb26-44f2-a6b2-03d9b8eee031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"728301ae-0552-448d-b06b-60b650885b6d"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.51,\n\t\"currency\":\"USD\",\n\t\"action\":\"Authorize\",\n    \"recurring\": true,\n\t\"customer\":{\n\t\t\"firstName\": \"Domenica\",\n\t\t\"lastName\": \"Trantow\",\n\t\t\"email\": \"Ford_Ortiz@example.net\",\n\t\t\"phone\": \"+234323423\",\n\t\t\"accountReference\":\"rec-0002\",\n        \"category\": \"gaming\",\n\t\t\"address\": {\n\t\t\t\"streetAddress\":\"Street Address 12/1\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"VISA\",\n\t\t\"holder\": \"Kaitlin Goodwin\",\n\t\t\"cardNumber\":\"4000000000000002\",\n\t\t\"expiryMonth\": 12,\n\t\t\"expiryYear\": 21,\n\t\t\"cvc\": \"123\",\n\t\t\"billingAddress\": {\n\t\t\t\"streetAddress\":\"StreetAddress\",\n\t\t\t\"city\": \"Boston\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"US\"\n\t\t}\n\t},\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"Description\":\"T-Shirt XXL\",\n\t\"Reference\":\"ORD24234\",\n\t\"ipAddress\":\"127.0.0.1\",\n\t\"successUrl\":\"http://68.183.64.149:5005/home/success\",\n\t\"cancelUrl\":\"http://68.183.64.149:5005\",\n\t\"failureUrl\":\"http://68.183.64.149:5005/home/cancel\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7da8826-fb26-44f2-a6b2-03d9b8eee031"},{"name":"Create 2nd recurring transaction","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"41381173-538a-4a74-98c8-97bc8ae40690"}}],"id":"9825aa13-bc87-4c74-991f-112923ae668c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"b6c25f0b-c032-4fd6-ba68-638580fadb20"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.52,\n\t\"currency\":\"GBP\",\n\t\"action\":\"Purchase\",\n    \"recurring\": true,\n    \"merchantInitiated\": true,\n\t\"firstRecurringTransactionId\": \"{{transactionId}}\",\n    \"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"Description\":\"T-Shirt XXL\",\n\t\"Reference\":\"ORD24234\",\n\t\"ipAddress\":\"127.0.0.1\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9825aa13-bc87-4c74-991f-112923ae668c"}],"id":"4af512a4-27dc-464c-bc17-ebd2733654af","description":"<p>To create card recurring transactions merchant has to set the \"Recurring\" transaction to 'true' on the transaction request. A merchant should provide the identifier of the first recurring transaction in the series to create a subsequent transaction.</p>\n<p>The recurring transactions could be initiated by Customers (Customer initiated transaction - CIT) or initiated by a merchant (Merchant initiated transaction - MIT). </p>\n<p>For the subsequest recurring transactions, the cardholder or merchant will not have to provide card details, CVV2/CVC2/CAV2 (Secure code), or pass 3-D Secure again.</p>\n","_postman_id":"4af512a4-27dc-464c-bc17-ebd2733654af"},{"name":"Sources","item":[{"name":"Create Card source","id":"9eabcdb4-9c96-4b05-8d58-e6cc9887716f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"24412d74-d5db-4e96-9476-ebde3da1f6ad"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"paymentMethod\": \"VISA\",\n    \"holder\": \"Pat Beatty\",\n    \"cardNumber\":\"4000000000000002\",\n    \"expiryMonth\": 5,\n    \"expiryYear\": 21,\n    \"cvc\": \"123\",\n    \"billingAddress\": {\n        \"streetAddress\":\"StreetAddress\",\n        \"city\": \"Boston\",\n        \"postcode\":\"01010\",\n        \"country\":\"US\"\n    }\n}"},"url":"{{GATEWAY_API_URL}}/v1/sources/","urlObject":{"path":["v1","sources",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9eabcdb4-9c96-4b05-8d58-e6cc9887716f"}],"id":"288d001b-1d66-432a-9a95-3620a7dd3000","description":"<p>Create a payment source object for a customer that you can use for one or more payments. The payment source data is saved in the secure data vault and can be used for later payments.</p>\n<p>Please, check Transactions -&gt; Create transaction with existing payment source.</p>\n<p>Creating a transaction using an existing source is very similar to Recurring, but the difference is that in this case each transaction is made with Cardholder presence and requires CVV2/CVC2/CAV2 (Secure code) and 3-D Secure if available. The cardholder will not have to enter card details again, only CVV2/CVC2/CAV2 (Secure code) and pass 3-D Secure if needed.</p>\n","_postman_id":"288d001b-1d66-432a-9a95-3620a7dd3000"},{"name":"Customers","item":[{"name":"Create customer","id":"ac0cd0f8-4126-47db-96fa-ed5b330df3e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-Request-Id","type":"text","value":"be385a40-b3b7-4653-a0a1-8b1a1b964f87"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Mustafa\",\n    \"lastName\": \"Labadie\",\n    \"email\": \"john2@doe.com\",\n    \"phone\": \"+234323423\",\n    \"accountReference\":\"acc0002\",\n    \"category\": \"gaming\",\n    \"address\": {\n        \"streetAddress\":\"StreetAddress\",\n        \"city\": \"Boston\",\n        \"postcode\":\"01010\",\n        \"country\":\"US\"\n    }\n}"},"url":"{{GATEWAY_API_URL}}/v1/customers/","description":"<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>paymentMethod</td>\n<td>string</td>\n<td>Yes</td>\n<td>Payment method code</td>\n</tr>\n<tr>\n<td>cardNumber</td>\n<td>string</td>\n<td>Only for card methods</td>\n<td>Customer's card number (PAN)</td>\n</tr>\n<tr>\n<td>holder</td>\n<td>string &lt;= 50 characters</td>\n<td>Only for card methods</td>\n<td>The name of the cardholder</td>\n</tr>\n<tr>\n<td>expiryMonth</td>\n<td>integer mm</td>\n<td>Only for card methods</td>\n<td>The expiry month</td>\n</tr>\n<tr>\n<td>expiryYear</td>\n<td>integer yy</td>\n<td>Only for card methods</td>\n<td>The expiry year</td>\n</tr>\n<tr>\n<td>cvc</td>\n<td>string</td>\n<td>Only for card methods</td>\n<td>Card Verification Value/Code)</td>\n</tr>\n<tr>\n<td>billingAddress.streetAddress</td>\n<td>string  &lt;= 50 characters</td>\n<td>Yes, if the address object is used</td>\n<td>The street address</td>\n</tr>\n<tr>\n<td>billingAddress.city</td>\n<td>string  &lt;= 50 characters</td>\n<td>Yes, if the address object is used</td>\n<td>The address city</td>\n</tr>\n<tr>\n<td>billingAddress.postcode</td>\n<td>string  &lt;= 12 characters</td>\n<td>Yes, if the address object is used</td>\n<td>The address zip/postal code</td>\n</tr>\n<tr>\n<td>billingAddress.country</td>\n<td>string</td>\n<td>Yes, if the address object is used</td>\n<td>The two-letter ISO country code of the address</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","customers",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac0cd0f8-4126-47db-96fa-ed5b330df3e4"}],"id":"5e2a5af5-ee00-4f61-8fa3-cfb8df052259","description":"<p>Create and store the customer object to reuse it for later payments.</p>\n","_postman_id":"5e2a5af5-ee00-4f61-8fa3-cfb8df052259"},{"name":"Refunds","item":[{"name":"Create Refund request","id":"cc015032-99ea-479b-be6b-d43e554d8c73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\":1.55,\r\n    \"currency\": \"GBP\",\r\n    \"reason\": \"becouse of\",\r\n    \"reference\": \"ORD-2354234\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/refunds","urlObject":{"path":["v1","transactions","{{transactionId}}","refunds"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc015032-99ea-479b-be6b-d43e554d8c73"}],"id":"c7fd0406-c4d6-4077-93bd-c34902c76486","_postman_id":"c7fd0406-c4d6-4077-93bd-c34902c76486","description":""},{"name":"Reversals","item":[{"name":"Create Reversal","id":"b7cd0cd7-51e3-457f-b77b-980d3a2ec45c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"reason\": \"becouse of\",\r\n    \"reference\": \"ORD-2354234\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/reversals","urlObject":{"path":["v1","transactions","{{transactionId}}","reversals"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7cd0cd7-51e3-457f-b77b-980d3a2ec45c"}],"id":"24688a9e-c79e-4554-bfc7-e2b7aa1aa842","_postman_id":"24688a9e-c79e-4554-bfc7-e2b7aa1aa842","description":""},{"name":"Payouts","item":[{"name":"Direct Payouts","item":[{"name":"Create PayTM Payout Direct","id":"d9812d3f-9512-4318-bc46-a400b275693d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":195,\r\n\t\"currency\":\"INR\",\r\n\t\"recipient\":{\r\n        \"firstName\": \"Garry\",\r\n\t\t\"lastName\": \"Auer\",\r\n\t\t\"email\": \"Willy.Carter@hotmail.com\",\r\n\t\t\"phone\": \"506-271-0892\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"PAYTM\",\r\n        \"walletnumber\":\"3737462123\",\r\n        \"walletname\":\"My walletX\"\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"T-Shirt XXL\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9812d3f-9512-4318-bc46-a400b275693d"},{"name":"Create UPI Payout Direct","id":"bd132618-e71f-40f0-92ab-c5cb9c19d6c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":50,\r\n\t\"currency\":\"INR\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Francisco\",\r\n\t\t\"lastName\": \"Hartmann\",\r\n\t\t\"email\": \"Joshuah.Gottlieb41@hotmail.com\",\r\n\t\t\"phone\": \"494-325-2345\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"UPI\",\r\n\t\t\"bankAccountNumber\":\"85131429\",\r\n        \"bankAccountHolder\": \"Anahi Walsh\",\r\n        \"ifscCode\":\"01022\",\r\n        \"bankName\":\"Wells Fargo\"\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd132618-e71f-40f0-92ab-c5cb9c19d6c8"},{"name":"Create IMPS Payout Direct","id":"acd6a535-65af-4cd5-b3a0-52c2e7960aee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":50,\r\n\t\"currency\":\"INR\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Brody\",\r\n\t\t\"lastName\": \"Mohr\",\r\n\t\t\"email\": \"Nathaniel.Zieme69@yahoo.com\",\r\n\t\t\"phone\": \"753-685-0056\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"IMPS\",\r\n\t\t\"bankAccountNumber\":\"16366029\",\r\n        \"bankAccountHolder\": \"Devyn Orn\",\r\n        \"ifscCode\":\"01022\",\r\n        \"bankName\":\"Wells Fargo\"\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"acd6a535-65af-4cd5-b3a0-52c2e7960aee"},{"name":"Create Direct Credit Nigeria","id":"7139d14f-0397-4703-a99c-05ec08586ed0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":20,\r\n\t\"currency\":\"NGN\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Ahmed\",\r\n\t\t\"lastName\": \"Bogan\",\r\n\t\t\"email\": \"Caroline.OHara@yahoo.com\",\r\n\t\t\"phone\": \"515-963-5739\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"DIRECTCREDIT\",\r\n\t\t\"accountHolderName\": \"Chesley Bode\",\r\n        \"accountNumber\":\"58121238\",\r\n        \"bankCode\":\"34565\"\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7139d14f-0397-4703-a99c-05ec08586ed0"},{"name":"Create VISA Direct Payout Canada","id":"21f4fd1c-06a4-4aa6-a9f1-0073eebdb7dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":50,\r\n\t\"currency\":\"CAD\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Eriberto\",\r\n\t\t\"lastName\": \"Johns\",\r\n\t\t\"email\": \"Mandy.Murazik@hotmail.com\",\r\n\t\t\"phone\": \"+14034881071\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"VISADIRECT\",\r\n\t\t\"holder\": \"Emilio Johns\",\r\n\t\t\"cardNumber\":\"5531 8866 5214 2950\",\r\n\t\t\"expiryMonth\": 1,\r\n\t\t\"expiryYear\": 23,\r\n\t\t\"cvc\": \"003\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\":\"Street Address\",\r\n\t\t\t\"city\": \"Toronto\",\r\n\t\t\t\"postcode\":\"01010\",\r\n\t\t\t\"country\":\"CA\",\r\n            \"state\": \"AB\"\r\n\t\t}\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21f4fd1c-06a4-4aa6-a9f1-0073eebdb7dc"},{"name":"Create MasterCard Send Payout Canada","id":"a7878672-06e0-41bd-b7ed-4a2008514582","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":50,\r\n\t\"currency\":\"CAD\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Jerrod\",\r\n\t\t\"lastName\": \"Weimann\",\r\n\t\t\"email\": \"Mattie_Stoltenberg15@hotmail.com\",\r\n\t\t\"phone\": \"+14034881071\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"MASTERCARDSEND\",\r\n\t\t\"holder\": \"Deanna Kiehn\",\r\n\t\t\"cardNumber\":\"5531 8866 5214 2950\",\r\n\t\t\"expiryMonth\": 1,\r\n\t\t\"expiryYear\": 23,\r\n\t\t\"cvc\": \"003\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\":\"Street Address\",\r\n\t\t\t\"city\": \"Toronto\",\r\n\t\t\t\"postcode\":\"01010\",\r\n\t\t\t\"country\":\"CA\",\r\n            \"state\": \"AB\"\r\n\t\t}\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7878672-06e0-41bd-b7ed-4a2008514582"},{"name":"Create Direct Credit Payout Canada","id":"6e94bc19-b033-44ad-b688-2ae692395f24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":50,\r\n\t\"currency\":\"CAD\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Bill\",\r\n\t\t\"lastName\": \"Haag\",\r\n\t\t\"email\": \"Easter.OKeefe60@yahoo.com\",\r\n\t\t\"phone\": \"+14034881071\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"DIRECTCREDIT\",\r\n\t\t\"accountHolderName\": \"Mireille Kshlerin\",\r\n\t\t\"accountNumber\":\"123456789\",\r\n\t\t\"bankCode\": \"123\",\r\n\t\t\"transitNumber\": \"12345\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\":\"Street Address\",\r\n\t\t\t\"city\": \"Toronto\",\r\n\t\t\t\"postcode\":\"01010\",\r\n\t\t\t\"country\":\"CA\",\r\n            \"state\": \"AB\"\r\n\t\t}\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e94bc19-b033-44ad-b688-2ae692395f24"},{"name":"Create Direct Credit Payout Argentina","id":"b7bbc970-bc69-4b48-a22d-76e9f48143de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 20,\r\n    \"currency\": \"ARS\",\r\n    \"recipient\": {\r\n        \"firstName\": \"Myra\",\r\n        \"lastName\": \"Schimmel\",\r\n        \"email\": \"Harrison_Herzog64@gmail.com\",\r\n        \"phone\": \"655-970-2288\",\r\n        \"accountReference\": \"acc-0007\",\r\n        \"category\": \"gaming\"\r\n    },\r\n    \"destination\": {\r\n        \"paymentMethod\": \"DIRECTCREDIT\",\r\n        \"accountNumber\": \"1234567891\",\r\n        \"accountHolder\": \"Stevie Hermiston\",\r\n        \"bankName\": \"CITIBANK N.A.\",\r\n        \"country\": \"AR\",\r\n        \"documentType\": \"2\",\r\n        \"documentNumber\": \"123456789\",\r\n        \"accountType\": \"1\"\r\n    },\r\n    \"statementDescriptor\": \"Purchase my-shop.com\",\r\n    \"description\": \"Reward for good grades\",\r\n    \"reference\": \"ORD24234\",\r\n    \"ipAddress\": \"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[{"id":"259b82a8-24f3-4374-b8f0-5963c5b2652c","name":"Response Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"po_8gt7j6fnvp\",\r\n    \"status\": \"Pending\",\r\n    \"amount\": 20,\r\n    \"currency\": \"ARS\",\r\n    \"created\": \"2022-11-23T16:07:23.1363983Z\",\r\n    \"links\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{GATEWAY_API_URL}}/v1/payouts"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b7bbc970-bc69-4b48-a22d-76e9f48143de"},{"name":"Create E-Transfer Payout Canada","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"e50445c1-c2a3-426e-808f-cbb2db2c689e"}}],"id":"e6c888e7-266d-4c06-ad87-554ce98e621b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":50,\r\n\t\"currency\":\"CAD\",\r\n\t\"recipient\":{\r\n\t\t\"firstName\": \"Marilie\",\r\n\t\t\"lastName\": \"Howell\",\r\n\t\t\"email\": \"Verla.McClure84@yahoo.com\",\r\n\t\t\"phone\": \"+14034881071\",\r\n\t\t\"accountReference\":\"acc-0007\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"ETRANSFER\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\":\"Street Address\",\r\n\t\t\t\"city\": \"Toronto\",\r\n\t\t\t\"postcode\":\"01010\",\r\n\t\t\t\"country\":\"CA\",\r\n            \"state\": \"AB\"\r\n\t\t}\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"Reward for good grades\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\",\r\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\r\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\r\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6c888e7-266d-4c06-ad87-554ce98e621b"},{"name":"Create TigerPay Payout","event":[{"listen":"test","script":{"exec":["pm.globals.set(\"transactionId\", pm.response.json().id);"],"type":"text/javascript","id":"5a18a4e6-c653-4380-b8fa-ad9f5163153c"}}],"id":"932849f3-3d14-4218-a9fb-09de001d113b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"amount\":1000,\r\n\t\"currency\":\"USD\",\r\n\t\"recipient\":{\r\n        \"firstName\": \"Peter\",\r\n\t\t\"lastName\": \"Trantow\",\r\n\t\t\"email\": \"Rosario_Crist93@yahoo.com\",\r\n\t\t\"phone\": \"494-583-6815\",\r\n\t\t\"accountReference\":\"0003\",\r\n        \"category\": \"gaming\"\r\n\t},\r\n\t\"destination\":{\r\n\t\t\"paymentMethod\": \"TIGERPAY\"\r\n\t},\r\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\r\n\t\"description\":\"T-Shirt XXL\",\r\n\t\"reference\":\"ORD24234\",\r\n\t\"ipAddress\":\"43.248.24.130\",\r\n    \"userDefinedField1\": \"blah1\",\r\n    \"userDefinedField2\": \"blah2\",\r\n    \"userDefinedField3\": \"blah3\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/payouts","urlObject":{"path":["v1","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"932849f3-3d14-4218-a9fb-09de001d113b"}],"id":"8722507c-3ab0-4fb0-835f-8ca9ed4e4935","_postman_id":"8722507c-3ab0-4fb0-835f-8ca9ed4e4935","description":""},{"name":"Create Payout","event":[{"listen":"test","script":{"id":"f60470f4-d144-47ca-b9dd-ee7aceef8849","exec":[""],"type":"text/javascript"}}],"id":"675a7d15-7b7f-4570-abca-6f3f7e7421f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\":1,\r\n    \"currency\": \"EUR\",\r\n    \"reason\": \"because of\",\r\n    \"reference\": \"ORD-2354234\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/payouts","urlObject":{"path":["v1","transactions","{{transactionId}}","payouts"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"675a7d15-7b7f-4570-abca-6f3f7e7421f5"}],"id":"c6a08916-484d-40ee-84cb-e441191f9383","_postman_id":"c6a08916-484d-40ee-84cb-e441191f9383","description":""},{"name":"Voids","item":[{"name":"Void Auth request","id":"5e0ceb09-f3b7-4ae9-b201-f2bc29bfeb9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"reason\": \"becouse of\",\r\n    \"reference\": \"ORD-2354234\"\r\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/{{transactionId}}/voids","urlObject":{"path":["v1","transactions","{{transactionId}}","voids"],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e0ceb09-f3b7-4ae9-b201-f2bc29bfeb9b"}],"id":"6c71f332-2da2-4311-bf71-6aee9884cc95","_postman_id":"6c71f332-2da2-4311-bf71-6aee9884cc95","description":""},{"name":"Hosted Payment Page","item":[{"name":"Create HPP request","id":"5930e060-826a-4060-b82d-ffccc364bfb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{API_KEY}}"},{"key":"password","value":"{{API_SECRET}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Request-Id","value":"589c6836-4045-4d8d-ac16-37f5006de5b7","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\":30,\n\t\"currency\":\"NGN\",\n\t\"action\":\"Purchase\",\n\t\"customer\":{\n\t\t\"firstName\": \"Norbert\",\n\t\t\"lastName\": \"Watsica\",\n\t\t\"email\": \"Lenny57@example.net\",\n\t\t\"phone\": \"425-625-2131\",\n\t\t\"accountReference\":\"acc-23456\",\n        \"category\": \"gaming\",\n\t\t\"address\": {\n\t\t\t\"streetAddress\":\"Travis Lights\",\n\t\t\t\"city\": \"Guaynabo\",\n\t\t\t\"postcode\":\"01010\",\n\t\t\t\"country\":\"CA\",\n            \"state\": \"AB\"\n\t\t}\n\t},\n    //\"paymentMethods\": [\"PAYTM\"],\n\t\"statementDescriptor\":\"Purchase my-shop.com\",\n\t\"Description\":\"T-Shirt XXL\",\n\t\"Reference\":\"ORD24234\",\n\t\"ipAddress\":\"127.0.0.1\",\n\t\"successUrl\":\"https://demo.turnstiles.io/home/success\",\n\t\"cancelUrl\":\"https://demo.turnstiles.io\",\n\t\"failureUrl\":\"https://demo.turnstiles.io/home/cancel\"\n}"},"url":"{{GATEWAY_API_URL}}/v1/transactions/","urlObject":{"path":["v1","transactions",""],"host":["{{GATEWAY_API_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5930e060-826a-4060-b82d-ffccc364bfb1"}],"id":"0ffe8e7b-68d1-4ae5-8531-4d402130ef63","_postman_id":"0ffe8e7b-68d1-4ae5-8531-4d402130ef63","description":""}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"019bc8d5-757c-46dc-b596-b9eb4fc78961"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"751d9705-ae49-4cca-b500-1d5fd517c358"}}]}