{"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":"6f01b219-5a91-4592-8f92-f4a11f0e4b73"},{"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":"de76a1b4-a227-487d-9860-ce0072505534"},{"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":"0b8650bd-05fc-4d37-ba60-82607e7c4fff"},{"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":"40e79f68-a1ee-4c90-875f-7290ce4f3349"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.18,\n\t\"currency\":\"NGN\",\n    \"customer\":{\n\t\t\"firstName\": \"Ariel\",\n\t\t\"lastName\": \"Corkery\",\n\t\t\"email\": \"Kailey.Keeling@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":"4a82788e-d7bd-4598-b4a8-11ea1c8e1c1b"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.18,\n\t\"currency\":\"JPY\",\n    \"customer\":{\n\t\t\"firstName\": \"Elmo\",\n\t\t\"lastName\": \"Yost\",\n\t\t\"email\": \"Dovie_Streich6@example.org\",\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":"0762f178-f770-4255-959b-46570cbad318"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":3.18,\n\t\"currency\":\"NGN\",\n    \"customer\":{\n\t\t\"firstName\": \"Kathryn\",\n\t\t\"lastName\": \"Hessel\",\n\t\t\"email\": \"Barney_Swift@example.org\",\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":"3833d6fa-b2eb-4737-9ae0-3ea9a8fdf9b7"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Mckenna\",\n\t\t\"lastName\": \"Gulgowski\",\n\t\t\"email\": \"Ramona_Luettgen@example.com\",\n        \"phone\": \"054709929220\",\n\t\t\"accountReference\":\"acc0002\",\n        \"category\": \"gaming\"\n\t},\n\t\"source\":{\n\t\t\"paymentMethod\": \"DIRECTDEBIT\",\n        \"accountHolderName\": \"Taya Hane\",\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":"bd04ecbe-4862-4b0f-b41e-0d9290f3beec"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Mason\",\n\t\t\"lastName\": \"Runte\",\n\t\t\"email\": \"Hector_Ondricka79@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":"8034f519-e297-4b1a-b979-8be0298b4d74"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Florida\",\n\t\t\"lastName\": \"Powlowski\",\n\t\t\"email\": \"Buddy10@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":"954af592-3354-4588-bf55-c5add838ee1c"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"INR\",\n    \"customer\":{\n\t\t\"firstName\": \"Ruthie\",\n\t\t\"lastName\": \"Yundt\",\n\t\t\"email\": \"Brown.Friesen41@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\":\"Harris Road\",\n\t\t\t\"city\": \"Dorianberg\",\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":"a65cec15-3694-42b2-95d2-fa29f4ecb716"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"INR\",\n    \"customer\":{\n\t\t\"firstName\": \"Finn\",\n\t\t\"lastName\": \"King\",\n\t\t\"email\": \"Orion18@example.net\",\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\":\"Pierre Fort\",\n\t\t\t\"city\": \"Dashawnfurt\",\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":"6f7d7b11-f6d0-4d8f-8e9f-d5d3eed137b3"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":4.18,\n\t\"currency\":\"CAD\",\n    \"customer\":{\n\t\t\"firstName\": \"Lesly\",\n\t\t\"lastName\": \"Reichert\",\n\t\t\"email\": \"Odie_Heidenreich@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":"30aefa85-f8f5-4d65-9407-9327affb358f"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":5.18,\n\t\"currency\":\"CLP\",\n    \"customer\":{\n\t\t\"firstName\": \"Drew\",\n\t\t\"lastName\": \"Blick\",\n\t\t\"email\": \"Norene6@example.net\",\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":"c5161843-29b0-4917-8d58-806d5d57b187"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n\t\"amount\":5.18,\n\t\"currency\":\"CLP\",\n    \"customer\":{\n\t\t\"firstName\": \"Jessy\",\n\t\t\"lastName\": \"Buckridge\",\n\t\t\"email\": \"Wallace_Torp@example.org\",\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":"1efe5e03-549e-4ba9-98af-9488df9e02f8","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\": \"Hershel\",\n\t\t\"lastName\": \"Schultz\",\n\t\t\"email\": \"Delta35@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\": \"VISA\",\n\t\t\"holder\": \"Darien Halvorson\",\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":"10cdb5af-5f6b-4050-8ea8-3709931702ea","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\": \"Christophe\",\n\t\t\"lastName\": \"Davis\",\n\t\t\"email\": \"Damon.McKenzie@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":"22c928e2-e034-4992-8ed6-0a2b6cbc43f7","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\": \"Joany\",\n\t\t\"lastName\": \"Windler\",\n\t\t\"email\": \"Carmella.Erdman@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\": \"Tommie Cole\",\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":"a2c2160d-e755-4df1-b5a3-faf8d078e01b","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\": \"Kira\",\n\t\t\"lastName\": \"Grant\",\n\t\t\"email\": \"Jaydon_Dibbert@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\": \"Oliver Mohr\",\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":"9e65846a-3d18-4d44-9161-b69df82869b6","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\": \"Leanna\",\n\t\t\"lastName\": \"Luettgen\",\n\t\t\"email\": \"Baylee_Langosh@example.com\",\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\": \"Consuelo Stoltenberg\",\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":"2a8f4d5a-3429-4e45-89db-8b97bffe6633","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\": \"Erick\",\n\t\t\"lastName\": \"Reynolds\",\n\t\t\"email\": \"Fredy.Smith43@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\": \"Jacinto Gislason\",\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":"fc179b7a-df33-41be-914e-95c149df9e69","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\": \"Dena\",\n\t\t\"lastName\": \"Purdy\",\n\t\t\"email\": \"Janie_Kihn27@example.org\",\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":"e14fa9dc-5a8c-4dde-9f20-fdf5fff6fe1c","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":"1e49d430-fe3d-4558-ae4d-30215c866e66"},{"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":"16f9a508-d9a8-4f91-a031-110280f7da4f"},{"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":"0900c1cd-7271-49c3-b277-85a8cbf8a804"},{"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\": \"Johnson Lueilwitz\",\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":"a516c4ff-7242-429f-a4cd-dde53b0b1ec6"},{"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":"bf6bff1f-8d6a-4f82-b150-5b61bc2f77eb","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\": \"Lorine\",\n\t\t\"lastName\": \"Aufderhar\",\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":"222d5a9d-7577-450d-b103-27059d00b865"},{"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\": \"Jarrell\",\n\t\t\"lastName\": \"Parisian\",\n\t\t\"email\": \"Luis.Johns@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\": \"Lavada Davis\",\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":"194c3b83-c8c1-4733-89ba-e850dde9639b"},{"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":"f850226e-6a9f-4186-89b2-07648398119d"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"paymentMethod\": \"VISA\",\n    \"holder\": \"Ara Gutkowski\",\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":"b0c9433f-c71a-4e54-b14b-dc81295165fa"},{"key":"","type":"text","value":""}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Amir\",\n    \"lastName\": \"Kautzer\",\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\": \"Ford\",\r\n\t\t\"lastName\": \"Schulist\",\r\n\t\t\"email\": \"Augustine5@gmail.com\",\r\n\t\t\"phone\": \"956-831-7799\",\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\": \"Anastasia\",\r\n\t\t\"lastName\": \"Bernier\",\r\n\t\t\"email\": \"Issac_Ferry30@hotmail.com\",\r\n\t\t\"phone\": \"745-852-8178\",\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\":\"05416906\",\r\n        \"bankAccountHolder\": \"Rey Mertz\",\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\": \"Zander\",\r\n\t\t\"lastName\": \"Braun\",\r\n\t\t\"email\": \"Angelita_Pacocha90@yahoo.com\",\r\n\t\t\"phone\": \"267-295-1752\",\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\":\"31365923\",\r\n        \"bankAccountHolder\": \"Jayme Gaylord\",\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\": \"Maximus\",\r\n\t\t\"lastName\": \"Waelchi\",\r\n\t\t\"email\": \"Norwood_Langworth@hotmail.com\",\r\n\t\t\"phone\": \"822-427-2459\",\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\": \"Magdalena Lockman\",\r\n        \"accountNumber\":\"27004867\",\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\": \"Russel\",\r\n\t\t\"lastName\": \"Morar\",\r\n\t\t\"email\": \"Jodie94@gmail.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\": \"Ora Bergnaum\",\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\": \"Toy\",\r\n\t\t\"lastName\": \"Emmerich\",\r\n\t\t\"email\": \"Kiera8@gmail.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\": \"Tommie Abernathy\",\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\": \"Madelynn\",\r\n\t\t\"lastName\": \"Reinger\",\r\n\t\t\"email\": \"Sandra.Smith@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\": \"DIRECTCREDIT\",\r\n\t\t\"accountHolderName\": \"Sigmund Bogisich\",\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\": \"Okey\",\r\n        \"lastName\": \"Mann\",\r\n        \"email\": \"George15@gmail.com\",\r\n        \"phone\": \"923-448-0054\",\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\": \"Mavis Schuster\",\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\": \"Torrance\",\r\n\t\t\"lastName\": \"Leffler\",\r\n\t\t\"email\": \"Antonia_Wunsch@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\": \"Osvaldo\",\r\n\t\t\"lastName\": \"Roberts\",\r\n\t\t\"email\": \"Dewayne14@hotmail.com\",\r\n\t\t\"phone\": \"243-956-2776\",\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":"6c13e5ea-06d6-4477-a39f-1155bcd1a8b1","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\": \"Frieda\",\n\t\t\"lastName\": \"McClure\",\n\t\t\"email\": \"Anya_OConner40@example.com\",\n\t\t\"phone\": \"836-968-4967\",\n\t\t\"accountReference\":\"acc-23456\",\n        \"category\": \"gaming\",\n\t\t\"address\": {\n\t\t\t\"streetAddress\":\"Cecilia Fork\",\n\t\t\t\"city\": \"Nampa\",\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"}}]}