{"info":{"_postman_id":"36bb0c1c-6499-47e7-aefc-d893077ffa57","name":"GuardPay","description":"<html><head></head><body><p>The following documentation describes the APIs available for PayIn and PayOut processes with GuardPay.</p>\n<p>Url: <a href=\"https://sandboxclient.guardpayapp.com\">https://sandboxclient.guardpayapp.com</a></p>\n<img src=\"https://content.pstmn.io/3a05be41-e562-4a1b-b5d3-8279440ccb5b/TG9nby5wbmc=\" alt=\"\"></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29465958","collectionId":"36bb0c1c-6499-47e7-aefc-d893077ffa57","publishedId":"2sBXinFpZx","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-29T03:03:47.000Z"},"item":[{"name":"Authentication","item":[{"name":"LogIn","id":"d09bd1ea-1cbe-4fc6-a26d-d6f20e43ba04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"\t\t{\r\n  \"User\": \"User\",\r\n  \"Password\": \"Password\",\r\n  \"Code\": \"Code\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/Aplication/Login","description":"<p>Functions</p>\n<ul>\n<li><p>Control access to requests.</p>\n</li>\n<li><p>Comply with security regulations for confidential information.</p>\n</li>\n<li><p>Generate a required bearer token for each request. (This ensures that only the user can view their own information.)</p>\n</li>\n<li><p>The generated token will be valid for 3 hours from its date and time of issuance. After this time, the token will automatically expire and a new one must be generated to continue using the services or making authenticated requests.</p>\n</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Tyoe</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>User</code></td>\n<td>unique customer user</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Password</code></td>\n<td>Password provided by customer</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Code</code></td>\n<td>Code provided by GuardPay</td>\n<td>GUID</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","Aplication","Login"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"f94144fc-a0ba-48ec-b126-b2126cd384fe","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"\t\t{\r\n  \"User\": \"AppDev\",\r\n  \"Password\": \"a1*i3Olw*q8bq\",\r\n  \"Code\": \"F0D7563C-DE3C-4451-8327-0C8AFE36E6CB\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/Aplication/Login"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:11:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"timeStamp\": \"2026-01-27T16:11:23.2541786Z\",\n        \"trackingIds\": \"F0D7563C-DE3C-4451-8327-0C8AFE36E6CB\",\n        \"mensaje\": \"Exitoso\",\n        \"userEmail\": \"user email\",\n        \"userName\": \"userName\",\n        \"token\": \"token\"\n    }\n}"}],"_postman_id":"d09bd1ea-1cbe-4fc6-a26d-d6f20e43ba04"}],"id":"72106c2d-047b-4b5b-9e69-1b74ef5d9ce1","_postman_id":"72106c2d-047b-4b5b-9e69-1b74ef5d9ce1","description":""},{"name":"Base Response","item":[],"id":"4587894a-194b-435e-beed-a0760c39f630","description":"<h1 id=\"api-base-response\">API Base Response</h1>\n<p>All platform APIs return a standardized response structure to ensure consistency across services and simplify response handling for integrations.</p>\n<p>The base response structure is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Ok\",\n  \"success\": true,\n  \"code\": 200,\n  \"data\": {}\n}\n\n</code></pre>\n<h2 id=\"field-description\">Field Description</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>Descriptive message associated with the result of the operation.</td>\n</tr>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>Indicates whether the operation was successful (<code>true</code>) or unsuccessful (<code>false</code>).</td>\n</tr>\n<tr>\n<td>code</td>\n<td>integer</td>\n<td>Response code of the operation. It generally corresponds to the HTTP status code returned by the service.</td>\n</tr>\n<tr>\n<td>data</td>\n<td>object</td>\n<td>array</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"considerations\">Considerations</h2>\n<p>The <code>data</code> field is dynamic and depends on the functionality exposed by each endpoint. The exact structure of this field will be documented individually within the corresponding endpoint documentation.</p>\n","_postman_id":"4587894a-194b-435e-beed-a0760c39f630"},{"name":"Colombia","item":[{"name":"PayIn","item":[{"name":"Account balance","id":"37492ac9-efb9-4478-ab6d-93b80dcf1378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Balance","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Displays the customer's account balance; this does not require input parameters as the token already contains them.</li>\n</ul>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>AvailableAmount</code></td>\n<td>Balance ID belonging to the customer</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>PayoutAvailable</code></td>\n<td>Total amount withdrawn by the customer</td>\n<td>DECIMAL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Balance"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"737a74f9-a055-4180-97e6-0d0edaf0aedb","name":"New Request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Balance"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:37:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"AvailableAmount\": 104023.4,\n        \"PayoutAvailable\": 104023.4\n    }\n}"}],"_postman_id":"37492ac9-efb9-4478-ab6d-93b80dcf1378"},{"name":"PayIn with GuardPay checkout","id":"a28efb8f-81af-4fdf-8a34-b17641f09488","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"SelectedPaymentMethods\": \"1,2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li><p>Create payment link with paycheck interface</p>\n</li>\n<li><p>To test PSE, select Banco Union Colombiana and request instructions for testing status changes on the platform.</p>\n</li>\n<li><p>To test the Bancolombia button, it will only work between 7am and 5pm Colombia time in the sandbox environment.</p>\n</li>\n<li><p>To test Nequi Push, keep in mind that it doesn't have a sandbox environment, so any tests you perform will be effective and will reduce balances if they accept payments from the app, just like it works in production.</p>\n</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PaymentMethodID</code></td>\n<td>Selected payment method (Must be sent with the value 1)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Designated amount to be charged (The minimum value is 5,000)</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Payment reference</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Payment description</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ExpirationDate</code></td>\n<td>Payment deadline</td>\n<td>DATETIME</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>CurrencyId</code></td>\n<td>Currency in which the payment will be made (1: COP)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the person making the payment</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Document</code></td>\n<td>Document of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone number of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Email address of the person making the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Username</code></td>\n<td>Name of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ClientURL</code></td>\n<td>URL to which the transaction will be returned once it is complete</td>\n<td>STRING</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>SelectedPaymentMethods</code></td>\n<td>Payment identifiers to display in interface</td>\n<td>STRING</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payin-states\">Payin States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id States</th>\n<th><strong>Descrition</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>Transaction Pending Payment. (The customer has not started the payment process)</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Payment Transaction Approved.</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Payment Transaction Rejected.</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Payment pending confirmation (The customer has already started the payment process; at this stage, we are waiting for payment completion so we can update the status to approved or rejected.)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payment-methods\">Payment Methods</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment ID</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>PSE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>NEQUI PUSH</td>\n</tr>\n<tr>\n<td><code>6</code></td>\n<td>BRE B QR</td>\n</tr>\n<tr>\n<td><code>7</code></td>\n<td>BANCOLOMBIA BUTTON</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Create"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"a20dcbb1-af59-4572-9a91-3d7de4649954","name":"PayIn with PayCheck checkout","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"SelectedPaymentMethods\": \"1,2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:18:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"IdPayin\": 12,\n        \"url\": \"URl CheckOut\"\n    }\n}"}],"_postman_id":"a28efb8f-81af-4fdf-8a34-b17641f09488"},{"name":"List of banks for PSE payments","id":"ff444dad-4b95-4743-82a9-be14a5582f24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Bank","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Displays the list of banks.</li>\n</ul>\n<h1 id=\"returned-parameters\">Returned parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>code</code></td>\n<td>Bank code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>Name of bank</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Bank"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"9db37f0e-5038-4a69-8189-1d47ac8399d2","name":"List of banks for PSE payments","originalRequest":{"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Bank"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:29:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": [\n        {\n            \"code\": \"1815\",\n            \"name\": \"ALIANZA FIDUCIARIA\"\n        },\n        {\n            \"code\": \"1558\",\n            \"name\": \"BAN100\"\n        },\n        {\n            \"code\": \"1059\",\n            \"name\": \"BANCAMIA S.A.\"\n        },\n        {\n            \"code\": \"1040\",\n            \"name\": \"BANCO AGRARIO\"\n        },\n        {\n            \"code\": \"1052\",\n            \"name\": \"BANCO AV VILLAS\"\n        },\n        {\n            \"code\": \"1013\",\n            \"name\": \"BANCO BBVA COLOMBIA S.A.\"\n        },\n        {\n            \"code\": \"1032\",\n            \"name\": \"BANCO CAJA SOCIAL\"\n        },\n        {\n            \"code\": \"1066\",\n            \"name\": \"BANCO COOPERATIVO COOPCENTRAL\"\n        },\n        {\n            \"code\": \"1051\",\n            \"name\": \"BANCO DAVIVIENDA\"\n        },\n        {\n            \"code\": \"1001\",\n            \"name\": \"BANCO DE BOGOTA\"\n        },\n        {\n            \"code\": \"1023\",\n            \"name\": \"BANCO DE OCCIDENTE\"\n        },\n        {\n            \"code\": \"1062\",\n            \"name\": \"BANCO FALABELLA \"\n        },\n        {\n            \"code\": \"1063\",\n            \"name\": \"BANCO FINANDINA S.A. BIC\"\n        },\n        {\n            \"code\": \"1012\",\n            \"name\": \"BANCO GNB SUDAMERIS\"\n        },\n        {\n            \"code\": \"1006\",\n            \"name\": \"BANCO ITAU\"\n        },\n        {\n            \"code\": \"1071\",\n            \"name\": \"BANCO J.P. MORGAN COLOMBIA S.A.\"\n        },\n        {\n            \"code\": \"1007\",\n            \"name\": \"BANCOLOMBIA\"\n        },\n        {\n            \"code\": \"1047\",\n            \"name\": \"BANCO MUNDO MUJER S.A.\"\n        },\n        {\n            \"code\": \"1061\",\n            \"name\": \"BANCOOMEVA S.A.\"\n        },\n        {\n            \"code\": \"1060\",\n            \"name\": \"BANCO PICHINCHA S.A.\"\n        },\n        {\n            \"code\": \"1002\",\n            \"name\": \"BANCO POPULAR\"\n        },\n        {\n            \"code\": \"1065\",\n            \"name\": \"BANCO SANTANDER COLOMBIA\"\n        },\n        {\n            \"code\": \"1069\",\n            \"name\": \"BANCO SERFINANZA\"\n        },\n        {\n            \"code\": \"1303\",\n            \"name\": \"BANCO UNION antes GIROS\"\n        },\n        {\n            \"code\": \"1808\",\n            \"name\": \"BOLD CF\"\n        },\n        {\n            \"code\": \"1283\",\n            \"name\": \"CFA COOPERATIVA FINANCIERA\"\n        },\n        {\n            \"code\": \"1009\",\n            \"name\": \"CITIBANK \"\n        },\n        {\n            \"code\": \"1812\",\n            \"name\": \"COINK SA\"\n        },\n        {\n            \"code\": \"1370\",\n            \"name\": \"COLTEFINANCIERA\"\n        },\n        {\n            \"code\": \"1292\",\n            \"name\": \"CONFIAR COOPERATIVA FINANCIERA\"\n        },\n        {\n            \"code\": \"1289\",\n            \"name\": \"COTRAFA\"\n        },\n        {\n            \"code\": \"1816\",\n            \"name\": \"CREZCAMOS\"\n        },\n        {\n            \"code\": \"1097\",\n            \"name\": \"DALE\"\n        },\n        {\n            \"code\": \"1551\",\n            \"name\": \"DAVIPLATA\"\n        },\n        {\n            \"code\": \"1802\",\n            \"name\": \"DING\"\n        },\n        {\n            \"code\": \"1121\",\n            \"name\": \"FINANCIERA JURISCOOP SA COMPAÑÍA DE FINANCIAMIENTO\"\n        },\n        {\n            \"code\": \"1637\",\n            \"name\": \"IRIS\"\n        },\n        {\n            \"code\": \"1286\",\n            \"name\": \"JFK COOPERATIVA FINANCIERA\"\n        },\n        {\n            \"code\": \"1070\",\n            \"name\": \"LULO BANK\"\n        },\n        {\n            \"code\": \"1801\",\n            \"name\": \"MOVII S.A.\"\n        },\n        {\n            \"code\": \"1507\",\n            \"name\": \"NEQUI\"\n        },\n        {\n            \"code\": \"1809\",\n            \"name\": \"NU\"\n        },\n        {\n            \"code\": \"1803\",\n            \"name\": \"POWWI\"\n        },\n        {\n            \"code\": \"1811\",\n            \"name\": \"RAPPIPAY\"\n        },\n        {\n            \"code\": \"1019\",\n            \"name\": \"SCOTIABANK COLPATRIA\"\n        },\n        {\n            \"code\": \"1804\",\n            \"name\": \"UALÁ\"\n        }\n    ]\n}"}],"_postman_id":"ff444dad-4b95-4743-82a9-be14a5582f24"},{"name":"PayIn Pse direct","id":"2224c490-18db-4b21-94ec-2517841ddee2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"PersonType\": \"NATURAL\",\r\n  \"bank\": \"1002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li><p>Create a direct PSE payment link</p>\n</li>\n<li><p>To perform effective testing on bank code, send code 1022 and request instructions for testing state changes.</p>\n</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PaymentMethodID</code></td>\n<td>Selected payment method (Must be sent with the value 1)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Designated amount to be charged (The minimum value is 5,000)</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Payment reference</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Payment description</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ExpirationDate</code></td>\n<td>Payment deadline</td>\n<td>DATETIME</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>CurrencyId</code></td>\n<td>Currency in which the payment will be made (1: COP)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the person making the payment</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Document</code></td>\n<td>Document of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone number of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Email address of the person making the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Username</code></td>\n<td>Name of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ClientURL</code></td>\n<td>URL to which the transaction will be returned once it is complete</td>\n<td>STRING</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>PersonType</code></td>\n<td>Type of person making the payment (NATURAL, JURIDÍCA)</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Bank</code></td>\n<td>PSE bank code</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payin-states\">Payin States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id States</th>\n<th><strong>Descrition</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>Transaction Pending Payment. (The customer has not started the payment process)</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Payment Transaction Approved.</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Payment Transaction Rejected.</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Payment pending confirmation (The customer has already started the payment process; at this stage, we are waiting for payment completion so we can update the status to approved or rejected.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Create"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"100cfaf0-cd1f-48ac-9611-ece293c2a848","name":"PayIn Pse direct","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"PersonType\": \"NATURAL\",\r\n  \"bank\": \"1002\",\r\n  \"SelectedPaymentMethods\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:23:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"IdPayin\": 14,\n        \"url\": \"URL redirects to PSE system\"\n    }\n}"}],"_postman_id":"2224c490-18db-4b21-94ec-2517841ddee2"},{"name":"PayIn Nequi Push direct","id":"a96699fc-36df-4e91-b46b-b3e8b148061f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 3,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Create a direct Nequi Push</li>\n</ul>\n<p>This payment method does not have a sandbox environment, neither for direct calls nor through our checkout process.</p>\n<p>Therefore, when this payment method is accessed through our sandbox, it is essentially a call to Nequi in production. Users must provide a phone number that has a Nequi account to ensure the transaction is successful.<br />On the other hand, when executed through any of the Nequi Push flows, a payment request will be sent to the entered number, and the payment will be processed if accepted.</p>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PaymentMethodID</code></td>\n<td>Selected payment method (Must be sent with the value 3)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Designated amount to be charged (The minimum value is 5,000)</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Payment reference</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Payment description</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ExpirationDate</code></td>\n<td>Payment deadline</td>\n<td>DATETIME</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>CurrencyId</code></td>\n<td>Currency in which the payment will be made (1: COP)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the person making the payment</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Document</code></td>\n<td>Document of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone number of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Email address of the person making the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Username</code></td>\n<td>Name of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ClientURL</code></td>\n<td>URL to which the transaction will be returned once it is complete</td>\n<td>STRING</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payin-states\">Payin States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id States</th>\n<th><strong>Descrition</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>Transaction Pending Payment. (The customer has not started the payment process)</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Payment Transaction Approved.</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Payment Transaction Rejected.</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Payment pending confirmation (The customer has already started the payment process; at this stage, we are waiting for payment completion so we can update the status to approved or rejected.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Create"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"a5384ece-c1a5-429a-bbdb-d2d296435149","name":"PayIn Pse direct Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"PersonType\": \"NATURAL\",\r\n  \"bank\": \"1002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:27:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"IdPayin\": 18,\n        \"url\": \"This URL should be disregarded since the payment notification is sent to the customer's Nequi account.\"\n    }\n}"}],"_postman_id":"a96699fc-36df-4e91-b46b-b3e8b148061f"},{"name":"PayIn Bancolombia button direct","id":"56a6e483-5c53-48c7-901d-27898b674219","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 7,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li><p>Create a direct bancolombia button</p>\n</li>\n<li><p>The testing environment for this payment method only operates from 7 am to 5 pm Colombian time</p>\n</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PaymentMethodID</code></td>\n<td>Selected payment method (Must be sent with the value 7)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Designated amount to be charged (The minimum value is 5,000)</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Payment reference</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Payment description</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ExpirationDate</code></td>\n<td>Payment deadline</td>\n<td>DATETIME</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>CurrencyId</code></td>\n<td>Currency in which the payment will be made (1: COP)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the person making the payment</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Document</code></td>\n<td>Document of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone number of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Email address of the person making the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Username</code></td>\n<td>Name of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ClientURL</code></td>\n<td>URL to which the transaction will be returned once it is complete</td>\n<td>STRING</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payin-states\">Payin States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id States</th>\n<th><strong>Descrition</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>Transaction Pending Payment. (The customer has not started the payment process)</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Payment Transaction Approved.</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Payment Transaction Rejected.</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Payment pending confirmation (The customer has already started the payment process; at this stage, we are waiting for payment completion so we can update the status to approved or rejected.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Create"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"8b14ba77-6b05-4b90-917c-8ca194d9c6c9","name":"PayIn Pse direct Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"PersonType\": \"NATURAL\",\r\n  \"bank\": \"1002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:27:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n  \"message\": \"OK\",\n  \"success\": true,\n  \"code\": 200,\n  \"data\": {\n    \"IdPayin\": 13463,\n    \"url\": \"https://botonbancolombia.apps.bancolombia.com/web/transfer-gateway/checkout/_HktwoFowD6\"\n  }\n}"}],"_postman_id":"56a6e483-5c53-48c7-901d-27898b674219"},{"name":"PayIn Bre b QR","id":"9669211f-fc75-42fd-96d9-afcc85bfecdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 6,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the GuardPay interface\",\r\n  \"Description\": \"Try the GuardPay interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Create a direct Breb QR</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PaymentMethodID</code></td>\n<td>Selected payment method (Must be sent with the value 6)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Designated amount to be charged (The minimum value is 5,000)</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Payment reference</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Payment description</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ExpirationDate</code></td>\n<td>Payment deadline</td>\n<td>DATETIME</td>\n<td>NO</td>\n</tr>\n<tr>\n<td><code>CurrencyId</code></td>\n<td>Currency in which the payment will be made (1: COP)</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the person making the payment</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Document</code></td>\n<td>Document of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone number of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Email address of the person making the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Username</code></td>\n<td>Name of the person who will make the payment</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>ClientURL</code></td>\n<td>URL to which the transaction will be returned once it is complete</td>\n<td>STRING</td>\n<td>NO</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"payin-states\">Payin States</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id States</th>\n<th><strong>Descrition</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>Transaction Pending Payment. (The customer has not started the payment process)</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Payment Transaction Approved.</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Payment Transaction Rejected.</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Payment pending confirmation (The customer has already started the payment process; at this stage, we are waiting for payment completion so we can update the status to approved or rejected.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","Create"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"ab3f912d-dc8d-4eae-b872-52983d3c9808","name":"PayIn bre bdirect Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"PaymentMethodID\": 1,\r\n  \"Amount\": 10000,\r\n  \"Reference\": \"Try the paycheck interface\",\r\n  \"Description\": \"Try the paycheck interface\",\r\n  \"ExpirationDate\": \"2026-01-27T16:15:46.465Z\",\r\n  \"CurrencyId\": 1,\r\n  \"DocumentType\": 1,\r\n  \"Document\": \"1000000000\",\r\n  \"Phone\": \"3114444444\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"Username\": \"Username\",\r\n  \"ClientURL\": \"url redirect\",\r\n  \"PersonType\": \"NATURAL\",\r\n  \"bank\": \"1002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/Create"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:27:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    {\n  \"message\": \"OK\",\n  \"success\": true,\n  \"code\": 200,\n  \"data\": {\n    \"IdPayin\": 13462,\n    \"url\": \"{ qr = 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 }\"\n  \n}"}],"_postman_id":"9669211f-fc75-42fd-96d9-afcc85bfecdb"},{"name":"Payin data","id":"e0a0fb6b-b61e-4db6-bb59-b873b70135f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/DataPayIn?IdTransaccion=1","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>It lists all transactions made by the client, it does not require input parameters as the token already contains them.</li>\n</ul>\n<h1 id=\"parameters-returnees\"><strong>Parameters</strong> Returnees</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdTransaccion</td>\n<td>Transaction ID created</td>\n<td>INT</td>\n</tr>\n<tr>\n<td>PaymentMethod</td>\n<td>Method by which payment was made</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>TransactionState</td>\n<td>Current status of the transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Amount collected</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td>Reference</td>\n<td>Reference indicated by the client</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>PurchaseDescription</td>\n<td>Purchase description</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Creation Date</td>\n<td>Date the transaction was created</td>\n<td>DATETIME</td>\n</tr>\n<tr>\n<td>ExpirationDate</td>\n<td>Payment deadline</td>\n<td>DATETIME</td>\n</tr>\n<tr>\n<td>Currency</td>\n<td>Currency in which the transaction was requested</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>DocumentType</td>\n<td>Type of end-customer document</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>ClientDocument</td>\n<td>End customer document</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","DataPayIn"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"IdTransaccion","value":"1"}],"variable":[]}},"response":[{"id":"f42e0aee-820b-4369-beaf-8bd14179d63d","name":"New Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sandboxclient.guardpayapp.com/Api/PayIn/DataPayIn?IdTransaccion=1","protocol":"https","host":["sandboxclient","guardpayapp","com"],"path":["Api","PayIn","DataPayIn"],"query":[{"key":"IdTransaccion","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:30:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"IdTransaccion\": 1,\n        \"PaymentMethod\": \"PSE\",\n        \"TransactionState\": \"Approved\",\n        \"Amount\": 10000,\n        \"Reference\": \"Reference\",\n        \"PurchaseDescription\": \"PurchaseDescription\",\n        \"Creation Date\": \"2026-01-07T23:34:30.3\",\n        \"ExpirationDate\": \"2025-07-14T13:36:32.66\",\n        \"Currency\": \"COP\",\n        \"DocumentType\": \"Cédula de ciudadanía\",\n        \"ClientDocument\": \"ClientDocument\"\n    }\n}"}],"_postman_id":"e0a0fb6b-b61e-4db6-bb59-b873b70135f9"},{"name":"Payin status","id":"6a770bc4-2bd6-417e-b3a8-fe48a6d3fa55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/PayIn/StatePayin?IdTransaccion=1","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Displays the transaction status.</li>\n</ul>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>IdTransaccion</code></td>\n<td>Transaction ID generated</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>PayInReference</td>\n<td>Reference entered by the customer</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Description</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>StateID</td>\n<td>Transaction status</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>Message</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount paid or to be paid</td>\n<td>DECIMAL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayIn","StatePayin"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"IdTransaccion","value":"1"}],"variable":[]}},"response":[{"id":"18fa0a07-4b6b-45c9-b178-99c5f89f031b","name":"Payin status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sandboxclient.guardpayapp.com/Api/PayIn/StatePayin?IdTransaccion=1","protocol":"https","host":["sandboxclient","guardpayapp","com"],"path":["Api","PayIn","StatePayin"],"query":[{"key":"IdTransaccion","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 16:32:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"Idtransaccion\": 1,\n        \"PayInReference\": \"444string\",\n        \"Description\": \"Approved\",\n        \"StateID\": 2,\n        \"Message\": \"Payment Transaction Approved.\",\n        \"Amount\": 10000\n    }\n}"}],"_postman_id":"6a770bc4-2bd6-417e-b3a8-fe48a6d3fa55"}],"id":"dbbdd56a-0b8f-4f9b-8eb5-e843822ad1d3","_postman_id":"dbbdd56a-0b8f-4f9b-8eb5-e843822ad1d3","description":""},{"name":"PayOut","item":[{"name":"BankAchPayOut","id":"3ecb8616-20c8-4e64-8788-2e3db6847980","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/BankAchPayOut","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Displays the list of banks.</li>\n</ul>\n<h1 id=\"returned-parameters\">Returned parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>code</code></td>\n<td>Bank code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>Name of bank</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","BankAchPayOut"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"2bdd52b2-6331-482b-b055-848e609ed510","name":"New Request","originalRequest":{"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/BankAchPayOut"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Mon, 09 Mar 2026 22:00:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": [\n        {\n            \"code\": \"1815\",\n            \"name\": \"ALIANZA FIDUCIARIA\"\n        },\n        {\n            \"code\": \"1558\",\n            \"name\": \"BAN100\"\n        },\n        {\n            \"code\": \"1059\",\n            \"name\": \"BANCAMIA S.A.\"\n        },\n        {\n            \"code\": \"1040\",\n            \"name\": \"BANCO AGRARIO\"\n        },\n        {\n            \"code\": \"1052\",\n            \"name\": \"BANCO AV VILLAS\"\n        },\n        {\n            \"code\": \"1013\",\n            \"name\": \"BANCO BBVA COLOMBIA S.A.\"\n        },\n        {\n            \"code\": \"1032\",\n            \"name\": \"BANCO CAJA SOCIAL\"\n        },\n        {\n            \"code\": \"1066\",\n            \"name\": \"BANCO COOPERATIVO COOPCENTRAL\"\n        },\n        {\n            \"code\": \"1051\",\n            \"name\": \"BANCO DAVIVIENDA\"\n        },\n        {\n            \"code\": \"1001\",\n            \"name\": \"BANCO DE BOGOTA\"\n        },\n        {\n            \"code\": \"1023\",\n            \"name\": \"BANCO DE OCCIDENTE\"\n        },\n        {\n            \"code\": \"1062\",\n            \"name\": \"BANCO FALABELLA \"\n        },\n        {\n            \"code\": \"1063\",\n            \"name\": \"BANCO FINANDINA S.A. BIC\"\n        },\n        {\n            \"code\": \"1012\",\n            \"name\": \"BANCO GNB SUDAMERIS\"\n        },\n        {\n            \"code\": \"1006\",\n            \"name\": \"BANCO ITAU\"\n        },\n        {\n            \"code\": \"1071\",\n            \"name\": \"BANCO J.P. MORGAN COLOMBIA S.A.\"\n        },\n        {\n            \"code\": \"1007\",\n            \"name\": \"BANCOLOMBIA\"\n        },\n        {\n            \"code\": \"1047\",\n            \"name\": \"BANCO MUNDO MUJER S.A.\"\n        },\n        {\n            \"code\": \"1061\",\n            \"name\": \"BANCOOMEVA S.A.\"\n        },\n        {\n            \"code\": \"1060\",\n            \"name\": \"BANCO PICHINCHA S.A.\"\n        },\n        {\n            \"code\": \"1002\",\n            \"name\": \"BANCO POPULAR\"\n        },\n        {\n            \"code\": \"1065\",\n            \"name\": \"BANCO SANTANDER COLOMBIA\"\n        },\n        {\n            \"code\": \"1069\",\n            \"name\": \"BANCO SERFINANZA\"\n        },\n        {\n            \"code\": \"1303\",\n            \"name\": \"BANCO UNION antes GIROS\"\n        },\n        {\n            \"code\": \"1808\",\n            \"name\": \"BOLD CF\"\n        },\n        {\n            \"code\": \"1283\",\n            \"name\": \"CFA COOPERATIVA FINANCIERA\"\n        },\n        {\n            \"code\": \"1009\",\n            \"name\": \"CITIBANK \"\n        },\n        {\n            \"code\": \"1812\",\n            \"name\": \"COINK SA\"\n        },\n        {\n            \"code\": \"1370\",\n            \"name\": \"COLTEFINANCIERA\"\n        },\n        {\n            \"code\": \"1292\",\n            \"name\": \"CONFIAR COOPERATIVA FINANCIERA\"\n        },\n        {\n            \"code\": \"1289\",\n            \"name\": \"COTRAFA\"\n        },\n        {\n            \"code\": \"1816\",\n            \"name\": \"CREZCAMOS\"\n        },\n        {\n            \"code\": \"1097\",\n            \"name\": \"DALE\"\n        },\n        {\n            \"code\": \"1551\",\n            \"name\": \"DAVIPLATA\"\n        },\n        {\n            \"code\": \"1802\",\n            \"name\": \"DING\"\n        },\n        {\n            \"code\": \"1121\",\n            \"name\": \"FINANCIERA JURISCOOP SA COMPAÑÍA DE FINANCIAMIENTO\"\n        },\n        {\n            \"code\": \"1637\",\n            \"name\": \"IRIS\"\n        },\n        {\n            \"code\": \"1286\",\n            \"name\": \"JFK COOPERATIVA FINANCIERA\"\n        },\n        {\n            \"code\": \"1070\",\n            \"name\": \"LULO BANK\"\n        },\n        {\n            \"code\": \"1801\",\n            \"name\": \"MOVII S.A.\"\n        },\n        {\n            \"code\": \"1507\",\n            \"name\": \"NEQUI\"\n        },\n        {\n            \"code\": \"1809\",\n            \"name\": \"NU\"\n        },\n        {\n            \"code\": \"1803\",\n            \"name\": \"POWWI\"\n        },\n        {\n            \"code\": \"1811\",\n            \"name\": \"RAPPIPAY\"\n        },\n        {\n            \"code\": \"1019\",\n            \"name\": \"SCOTIABANK COLPATRIA\"\n        },\n        {\n            \"code\": \"1804\",\n            \"name\": \"UALÁ\"\n        }\n    ]\n}"}],"_postman_id":"3ecb8616-20c8-4e64-8788-2e3db6847980"},{"name":"ACH PayOut","id":"463a427d-6db8-49f0-ae6d-56d1aeeb9c87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DocumentType\": 1,\r\n  \"DocumentNumber\": \"DocumentNumber\",\r\n  \"Bank\": \"BankCode\",\r\n  \"AccountType\": 1,\r\n  \"AccountNumber\": \"AccountNumber\",\r\n  \"Amount\": 6000,\r\n  \"Reference\": \"Reference\",\r\n  \"Description\": \"Description\",\r\n  \"Phone\": \"Phone\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"UserName\": \"UserName\",\r\n  \"NotifyUrl\": \"NotifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/AchPayOut","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Request disbursement of available funds according to ACH timelines.</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the account holder</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number of the person responsible for the account</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Bank</code></td>\n<td>Bank code returned in the API that lists the \"BankAchPayOut\" banks</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>AccountType</code></td>\n<td>Type of bank account</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>AccountNumber</code></td>\n<td>Bank account number</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount to be distributed</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Reference provided by the customer</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description given by the client</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Account holder phone number</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Correo responsable de la cuenta</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>UserName</code></td>\n<td>Email responsible for the account</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>NotifyUrl</code></td>\n<td>The URL where the approval or rejection of the distribution will be notified must be the same as the WebHook.</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"account-type\">Account Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>AHORRO</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>CORRIENTE</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"estados-payout\">Estados PayOut</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Estado</th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>2</code></td>\n<td>Available for distribution</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Requested for dispersion</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Dispersion rejected</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Dispersal approved and completed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","AchPayOut"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"4e04d4e6-4dba-4ac6-8644-daa2d4d7c482","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DocumentType\": 1,\r\n  \"DocumentNumber\": \"DocumentNumber\",\r\n  \"Bank\": \"BankCode\",\r\n  \"AccountType\": 1,\r\n  \"AccountNumber\": \"AccountNumber\",\r\n  \"Amount\": 6000,\r\n  \"Reference\": \"Reference\",\r\n  \"Description\": \"Description\",\r\n  \"Phone\": \"Phone\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"UserName\": \"UserName\",\r\n  \"NotifyUrl\": \"NotifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/NowBank"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:07:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": 14\n}"}],"_postman_id":"463a427d-6db8-49f0-ae6d-56d1aeeb9c87"},{"name":"Transfiya","id":"352d6d42-f6d6-4dbc-8054-864b8a86cf54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DocumentType\": 1,\r\n  \"DocumentNumber\": \"DocumentNumber\",\r\n  \"AccountType\": 1,\r\n  \"AccountNumber\": \"AccountNumber\",\r\n  \"Amount\": 6000,\r\n  \"Reference\": \"Refersdence\",\r\n  \"Description\": \"Descrsadasdiption\",\r\n  \"Phone\": \"Phone\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"UserName\": \"UserName\",\r\n  \"NotifyUrl\": \"NotifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/TransfiyaDirect","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li><p>Request disbursement of available funds.</p>\n</li>\n<li><p>Send to the client's primary and registered bank in Transfiya</p>\n</li>\n<li><p>Prioritize the bank: NEQUI</p>\n</li>\n</ul>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the account holder</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number of the person responsible for the account</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>AccountType</code></td>\n<td>Type of bank account</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>AccountNumber</code></td>\n<td>Bank account number</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount to be distributed</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Reference provided by the customer</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description given by the client</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Account holder phone number</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Correo responsable de la cuenta</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>UserName</code></td>\n<td>Email responsible for the account</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>NotifyUrl</code></td>\n<td>The URL where the approval or rejection of the distribution will be notified must be the same as the WebHook.</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"account-type\">Account Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>AHORRO</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>CORRIENTE</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"estados-payout\">Estados PayOut</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Estado</th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>2</code></td>\n<td>Available for distribution</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Requested for dispersion</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Dispersion rejected</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Dispersal approved and completed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","TransfiyaDirect"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"ec25d3c4-0018-4d20-9a06-d4fb0f760963","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DocumentType\": 1,\r\n  \"DocumentNumber\": \"DocumentNumber\",\r\n  \"Bank\": \"BankCode\",\r\n  \"AccountType\": 1,\r\n  \"AccountNumber\": \"AccountNumber\",\r\n  \"Amount\": 6000,\r\n  \"Reference\": \"Reference\",\r\n  \"Description\": \"Description\",\r\n  \"Phone\": \"Phone\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"UserName\": \"UserName\",\r\n  \"NotifyUrl\": \"NotifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/NowBank"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:07:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": 14\n}"},{"id":"cddcab52-ae38-4abc-901b-fd3505dcf2bf","name":"Transfiya","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DocumentType\": 1,\r\n  \"DocumentNumber\": \"1001057458\",\r\n  \"AccountType\": 1,\r\n  \"AccountNumber\": \"3114650604\",\r\n  \"Amount\": 6000,\r\n  \"Reference\": \"Refersdence\",\r\n  \"Description\": \"Descrsadasdiption\",\r\n  \"Phone\": \"3114650604\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"UserName\": \"UserName\",\r\n  \"NotifyUrl\": \"NotifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/TransfiyaDirect"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:09:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": 15\n}"}],"_postman_id":"352d6d42-f6d6-4dbc-8054-864b8a86cf54"},{"name":"Validate Key Bre_b","id":"487738ac-8931-4976-9e02-f9871faf822b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/ValidateBre_B?Key=1","description":"<h1 id=\"funtions\">Funtions</h1>\n<ul>\n<li>It shows if the key exists and is active.</li>\n</ul>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Guy</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Mensaje</code></td>\n<td>Message returned by the API.</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Respuesta</code></td>\n<td>True: Effective answer.  <br />False: Ineffective answer.</td>\n<td>BOOLEAN</td>\n</tr>\n<tr>\n<td><code>Codigo</code></td>\n<td>HTTP response code</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Data</code></td>\n<td>Indicates if the key is enabled</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","ValidateBre_B"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"Key","value":"1"}],"variable":[]}},"response":[{"id":"a684dab9-655e-40ae-8a60-063ef921e633","name":"New Request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sandboxclient.guardpayapp.com/Api/PayOut/ValidateBre_B?Key=1","protocol":"https","host":["sandboxclient","guardpayapp","com"],"path":["Api","PayOut","ValidateBre_B"],"query":[{"key":"Key","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:11:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Ok\",\n  \"success\": true,\n  \"code\": 200,\n  \"data\": {\n    \"status\": \"ACTIVA\",\n    \"entity_name\": \"Bancolombia\",\n    \"holder_name\": \"Elliot Turner Schoen\",\n    \"key_value\": \"3114650604\",\n    \"type\": \"ALIAS\"\n  }\n}"}],"_postman_id":"487738ac-8931-4976-9e02-f9871faf822b"},{"name":"Send Bre_b","id":"fd7c1110-d0c5-4bbc-88b6-818b20cc6eb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"key\": \"key\",\r\n  \"amount\": 10000,\r\n  \"reference\": \"reference\",\r\n  \"notifyUrl\": \"notifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/Bre_B","description":"<h3 id=\"functions\">Functions</h3>\n<ul>\n<li>Create the shipment and distribute the funds to the entered key.</li>\n</ul>\n<h1 id=\"parameters-sent\">Parameters sent</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Guy</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>key</code></td>\n<td>Key to which the funds will be sent</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>Amount to be distributed</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>reference</code></td>\n<td>Reference provided by the customer</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>notifyUrl</code></td>\n<td>The URL where the approval or rejection of the distribution is notified should receive the same information as the WebHook.</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Guy</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Mensaje</code></td>\n<td>Message returned by the API.</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Respuesta</code></td>\n<td>True: Effective answer.  <br />False: Ineffective answer.</td>\n<td>BOOLEAN</td>\n</tr>\n<tr>\n<td><code>Codigo</code></td>\n<td>HTTP response code</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Data</code></td>\n<td>Runnpay id for payou guide</td>\n<td>INT</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","Bre_B"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"7ec33442-f71e-40b1-af23-44ee264dfb4d","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"key\": \"key\",\r\n  \"amount\": 10000,\r\n  \"reference\": \"reference\",\r\n  \"notifyUrl\": \"notifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/Bre_B"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:30:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": 16\n}"}],"_postman_id":"fd7c1110-d0c5-4bbc-88b6-818b20cc6eb9"},{"name":"SendPayOutDinamic","id":"35cd2d60-2d4c-4402-accd-5e7b59a4747b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"DocumentType\": 1,\r\n  \"DocumentNumber\": \"DocumentNumber\",\r\n  \"Bank\": \"BankCode\",\r\n  \"AccountType\": 1,\r\n  \"AccountNumber\": \"AccountNumber\",\r\n  \"Amount\": 6000,\r\n  \"Reference\": \"Reference\",\r\n  \"Description\": \"Description\",\r\n  \"Phone\": \"Phone\",\r\n  \"Mail\": \"test@test.com\",\r\n  \"UserName\": \"UserName\",\r\n  \"NotifyUrl\": \"NotifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/SendPayOutDinamic","description":"<h3 id=\"functions\">Functions</h3>\n<p>This API generates dynamic validation to determine the best flow for sending funds to the customer via their selected bank.</p>\n<p>First, it validates using the fastest and most immediate method, which is breb. If it cannot find the account in breb, it validates via Trasfiya, listing all the banks the customer uses. If it fails to validate either of these methods, it sends the payout via ACH, respecting its processing cycles.</p>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n<th>Mandatory</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Type of document of the account holder</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number of the person responsible for the account</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Bank</code></td>\n<td>Bank code returned in the API that lists the \"BankAchPayOut\" banks</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>AccountType</code></td>\n<td>Type of bank account</td>\n<td>INT</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>AccountNumber</code></td>\n<td>Bank account number</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount to be distributed</td>\n<td>DECIMAL</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Reference provided by the customer</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description given by the client</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Account holder phone number</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Correo responsable de la cuenta</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>UserName</code></td>\n<td>Email responsible for the account</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n<tr>\n<td><code>NotifyUrl</code></td>\n<td>The URL where the approval or rejection of the distribution will be notified must be the same as the WebHook.</td>\n<td>STRING</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"document-types\">Document Types</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Document Type ID</th>\n<th>Description</th>\n<th>Short Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>National identity card</td>\n<td>CC</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>Foreigner's ID Card</td>\n<td>CE</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Tax Identification Number</td>\n<td>NIT</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Identity Card</td>\n<td>TI</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Passport</td>\n<td>PP</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"account-type\">Account Type</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>1</code></td>\n<td>AHORRO</td>\n</tr>\n<tr>\n<td><code>2</code></td>\n<td>CORRIENTE</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"estados-payout\">Estados PayOut</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Estado</th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>2</code></td>\n<td>Available for distribution</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Requested for dispersion</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Dispersion rejected</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Dispersal approved and completed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","SendPayOutDinamic"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[{"id":"09f47da9-6be2-4f06-baef-33e65f16061e","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"key\": \"key\",\r\n  \"amount\": 10000,\r\n  \"reference\": \"reference\",\r\n  \"notifyUrl\": \"notifyUrl\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/SendPayOutDinamic"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:30:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": 16\n}"}],"_postman_id":"35cd2d60-2d4c-4402-accd-5e7b59a4747b"},{"name":"Data PayOut","id":"7e9e15ea-7421-4705-a6e5-495565e20d3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/PayOut/DataPayOut?IdDispersion=10","description":"<h3 id=\"functions\"><strong>Functions</strong></h3>\n<ul>\n<li>Displays the status of the PayOut.</li>\n</ul>\n<h1 id=\"returned-parameters\"><strong>Returned Parameters</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>idDispersion</code></td>\n<td>Id of the generated dispersion</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>CreationDate</code></td>\n<td>Date of the dispersion generated</td>\n<td>DATETIME</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Account holder document type</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number of the account holder</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Bank</code></td>\n<td>Bank code returned in the API that lists banks \"Banks\"</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>AccountType</code></td>\n<td>Type of bank account</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>AccountNumber</code></td>\n<td>Bank account number</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Reference indicated by the client</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description given by the client</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Responsible telephone account</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Mail</code></td>\n<td>Email responsible for the account</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>UserName</code></td>\n<td>Name of the account manager</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>NotifyUrl</code></td>\n<td>URL where the approval or rejection of the distribution is notified, this must receive the same as the WebHook</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>State</code></td>\n<td>State of dispersion</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>ApplicationID</code></td>\n<td>Client code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>StateID</code></td>\n<td>Dispersion state ID</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Observation</code></td>\n<td>Extra PayOut information with rejection reason</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"estados-payout\">Estados PayOut</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Estado</th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>2</code></td>\n<td>Available for distribution</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Requested for dispersion</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Dispersion rejected</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Dispersal approved and completed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","DataPayOut"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"IdDispersion","value":"10"}],"variable":[]}},"response":[{"id":"846ea3cc-37eb-40fc-b3b0-17b73b88a3db","name":"New Request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sandboxclient.guardpayapp.com/Api/PayOut/DataPayOut?IdDispersion=10","protocol":"https","host":["sandboxclient","guardpayapp","com"],"path":["Api","PayOut","DataPayOut"],"query":[{"key":"IdDispersion","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Tue, 27 Jan 2026 18:32:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"message\": \"Ok\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": {\n        \"idDispersion\": 10,\n        \"CreationDate\": \"2026-01-08T04:59:09.113\",\n        \"DocumentType\": \"CC\",\n        \"DocumentNumber\": \"\",\n        \"Bank\": null,\n        \"AccountType\": \"AHORRO\",\n        \"AccountNumber\": \"AccountNumber\",\n        \"Amount\": 10000,\n        \"Reference\": \"Reference\",\n        \"Description\": \"Description\",\n        \"Phone\": \"Phone\",\n        \"Mail\": \"Mail\",\n        \"UserName\": \"UserName\",\n        \"NotifyUrl\": \"NotifyUrl\",\n        \"State\": \"Rechazo Dispersión\",\n        \"ApplicationID\": \"F0D7563C-DE3C-4451-8327-0C8AFE36E6CB\",\n        \"StateID\": 4,\n        \"Observation\": \"\"\n    }\n}"}],"_postman_id":"7e9e15ea-7421-4705-a6e5-495565e20d3f"},{"name":"TransfiyaBanks","id":"5691230d-8da2-4d81-956d-59902ae03b0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://client.guardpayapp.com/Api/PayOut/TransfiyaBanks?numeroCelular=1","description":"<h3 id=\"functions\"><strong>Functions</strong></h3>\n<ul>\n<li>Returns a list of banks associated with Transfiya using the sent number.</li>\n</ul>\n<h1 id=\"returned-parameters\"><strong>Returned Parameters</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>banco</code></td>\n<td>bank associated with the transfiya number</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","PayOut","TransfiyaBanks"],"host":["client","guardpayapp","com"],"query":[{"key":"numeroCelular","value":"1"}],"variable":[]}},"response":[{"id":"c67499f7-d606-4c7a-8f5d-6449dc225e86","name":"TransfiyaBanks","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://client.guardpayapp.com/Api/PayOut/TransfiyaBanks?numeroCelular=1","protocol":"https","host":["client","guardpayapp","com"],"path":["Api","PayOut","TransfiyaBanks"],"query":[{"key":"numeroCelular","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Date","value":"Wed, 03 Jun 2026 13:28:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private,max-age=15"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"OK\",\n    \"success\": true,\n    \"code\": 200,\n    \"data\": [\n        {\n            \"banco\": \"Confiar Cooperativa Financiera\"\n        }\n    ]\n}"}],"_postman_id":"5691230d-8da2-4d81-956d-59902ae03b0b"}],"id":"f5108352-8eb1-408a-ae28-b030f881ccfb","_postman_id":"f5108352-8eb1-408a-ae28-b030f881ccfb","description":""},{"name":"Webhook Colombia","item":[],"id":"7fe87f26-35a2-4f71-ac4a-219dbebee5ff","description":"<h2 id=\"status-notification-webhook--payout\">Status Notification Webhook – PayOut</h2>\n<p>When a payout status update occurs, the system sends an automatic notification via webhook to the URL configured by the client.</p>\n<p>The notification is sent to the route previously registered in the <code>NotifyUrl</code> field when the payout request was made.</p>\n<h3 id=\"example-of-payout-sent\">Example of PayOut sent</h3>\n<p>{<br />\"IdDispersion\":\"10\",<br />\"descripcionEstado\":\"Pending Confirmation\",<br />\"idEstado\":\"5\",<br />\"mensaje\":\"Payment pending confirmation\"<br />}</p>\n<h3 id=\"field-descriptions\">Field descriptions</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>IdDispersion</code></td>\n<td>Unique identifier of the dispersion generated in the system.</td>\n</tr>\n<tr>\n<td><code>DescripcionEstado</code></td>\n<td>Description of the current state of the dispersion.</td>\n</tr>\n<tr>\n<td><code>Mensaje</code></td>\n<td>Informative message related to the status of the process.</td>\n</tr>\n<tr>\n<td><code>IdEstado</code></td>\n<td>Dispersion state code within the system.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"validation-recommendation\">Validation Recommendation</h2>\n<p>Once the webhook notification is received, it is recommended to confirm the transaction status by making a request to the <strong>Data PayOut</strong> method.</p>\n<p>This allows you to validate and reconfirm the current information of the payout process directly from the system.</p>\n<h2 id=\"status-notification-webhook--payin\">Status Notification Webhook – PayIn</h2>\n<p>When there is an update in the status of a <strong>PayIn</strong> transaction, the system automatically sends a notification via <strong>webhook</strong> to the endpoint configured by the client.</p>\n<p>The URL where this webhook is sent must be previously provided by the client to the <strong>GuardPay</strong> team, since it is configured internally within the system.</p>\n<h3 id=\"example-payin-payload\">Example PayIn Payload</h3>\n<p>{<br />\"idTransaccion\":\"10\",<br />\"descripcionEstado\":\"Pending Confirmation\",<br />\"idEstado\":\"5\",<br />\"mensaje\":\"Payment pending confirmation\"<br />}</p>\n<h3 id=\"field-description\">Field Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>idTransaccion</code></td>\n<td>Unique identifier of the PayIn transaction.</td>\n</tr>\n<tr>\n<td><code>descripcionEstado</code></td>\n<td>Description of the current transaction status.</td>\n</tr>\n<tr>\n<td><code>idEstado</code></td>\n<td>Status code of the transaction within the system.</td>\n</tr>\n<tr>\n<td><code>mensaje</code></td>\n<td>Informational message related to the payment status.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"validation-recommendation-1\">Validation Recommendation</h2>\n<p>Once the webhook notification is received, it is recommended to confirm the transaction status by making a request to the <strong>PayIn Status</strong> method.</p>\n<p>This allows you to validate and reconfirm the current information of the payment process directly from the system.</p>\n","_postman_id":"7fe87f26-35a2-4f71-ac4a-219dbebee5ff"}],"id":"0d33dd96-3ad9-4ddf-b14a-24bb9a4f78d4","_postman_id":"0d33dd96-3ad9-4ddf-b14a-24bb9a4f78d4","description":""},{"name":"Global Payments","item":[{"name":"Contact","item":[{"name":"GetDocumentType","id":"6f16c278-b522-43a9-8004-29790a70b2d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/GetDocumentType?countryCode=CO","description":"<p>Returns document types by country</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Country</code></td>\n<td>Country associated with the document type</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>FullName</code></td>\n<td>Full name of the document type</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>ShortName</code></td>\n<td>Short name or abbreviation of the document type</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","GetDocumentType"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"countryCode","value":"CO"}],"variable":[]}},"response":[],"_postman_id":"6f16c278-b522-43a9-8004-29790a70b2d9"},{"name":"CreateContact","id":"e720c0ac-f12c-4e27-9e63-1d2f92abbc2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"countrySymbol\": \"string\",\r\n  \"firstName\": \"string\",\r\n  \"businessType\": \"string\",\r\n  \"type\": \"string\",\r\n  \"lastName\": \"string\",\r\n  \"email\": \"user@example.com\",\r\n  \"phone\": \"string\",\r\n  \"documentType\": \"string\",\r\n  \"documentNumber\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/CreateContact","description":"<p>Create contacts for the request</p>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>CountrySymbol</code></td>\n<td>Country code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>FirstName</code></td>\n<td>First name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>LastName</code></td>\n<td>Last name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>Type person (PERSON,  <br />BUSINESS,  <br />GOVERNMENT,  <br />NGO,  <br />FOREIGN)</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td>Type business (  <br />PERSON,  <br />COMPANY,  <br />PROVIDER,  <br />GOVERNMENT,  <br />NON_PROFIT,  <br />OTHER  <br />)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>Email</code></td>\n<td>Email</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone (It must include the country code, for example +57)</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Document Type</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier</td>\n<td>INT</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","CreateContact"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e720c0ac-f12c-4e27-9e63-1d2f92abbc2e"},{"name":"GetContact","id":"744f6925-309e-4edb-b96e-01ad1ad69dba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/GetContact?contactId=1","description":"<p>It brings in created contacts</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Country</code></td>\n<td>Country name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PersonType</code></td>\n<td>Type of person</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>FirstName</code></td>\n<td>Name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>SecondName</code></td>\n<td>Last name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Email</code></td>\n<td>Email</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","GetContact"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"contactId","value":"1"}],"variable":[]}},"response":[],"_postman_id":"744f6925-309e-4edb-b96e-01ad1ad69dba"},{"name":"UpdateContact","id":"f13de9ee-8e95-41ed-b881-b17800c53906","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"contactId\": 0,\r\n  \"countrySymbol\": \"string\",\r\n  \"firstName\": \"string\",\r\n  \"businessType\": \"string\",\r\n  \"type\": \"string\",\r\n  \"lastName\": \"string\",\r\n  \"email\": \"user@example.com\",\r\n  \"phone\": \"string\",\r\n  \"documentType\": \"string\",\r\n  \"documentNumber\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/UpdateContact","description":"<p>Update contacts for the request</p>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>CountrySymbol</code></td>\n<td>Country code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>FirstName</code></td>\n<td>First name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>LastName</code></td>\n<td>Last name</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>Type person (PERSON,  <br />BUSINESS,  <br />GOVERNMENT,  <br />NGO,  <br />FOREIGN)</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>businessType</code></td>\n<td>Type business (  <br />PERSON,  <br />COMPANY,  <br />PROVIDER,  <br />GOVERNMENT,  <br />NON_PROFIT,  <br />OTHER  <br />)</td>\n<td></td>\n</tr>\n<tr>\n<td><code>Email</code></td>\n<td>Email</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone (It must include the country code, for example +57)</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>DocumentType</code></td>\n<td>Document Type</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>DocumentNumber</code></td>\n<td>Document number</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier</td>\n<td>INT</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","UpdateContact"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f13de9ee-8e95-41ed-b881-b17800c53906"}],"id":"252f10f3-9a33-431a-8589-af8b58890758","description":"<p>This section contains all endpoints related to contact management, including contact creation, validation, and retrieval.</p>\n<p>Contacts are a fundamental component of the platform, as they are required for both <strong>PayIn</strong> and <strong>PayOut</strong> operations. Before processing transactions, the corresponding contact information must be registered and validated to ensure compliance with operational and regulatory requirements.</p>\n<p>The APIs within this section allow you to manage contact records and verify that all required information is available before initiating payment or payout transactions.</p>\n","_postman_id":"252f10f3-9a33-431a-8589-af8b58890758"},{"name":"Bank Account","item":[{"name":"GetBankByCountry","id":"76acdf0a-d634-47f4-b57a-35882258bcc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/GetBankByCountry?countryCode=CO","description":"<p>Returns list of banks for payout filtered by country</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>Name of the bank</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>value</code></td>\n<td>Name without spaces</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>bank_code</code></td>\n<td>Bank code used to identify the financial institution</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","GetBankByCountry"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"countryCode","value":"CO"}],"variable":[]}},"response":[],"_postman_id":"76acdf0a-d634-47f4-b57a-35882258bcc1"},{"name":"Create Bank Account","id":"04496482-507b-40f6-b4e9-8c7b0f5c2e43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"contactId\": 0,\r\n  \"name\": \"string\",\r\n  \"countrySymbol\": \"string\",\r\n  \"entity\": \"string\",\r\n  \"accountNumber\": \"string\",\r\n  \"type\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/CreateBankAccount","description":"<p>StartFragment</p>\n<h2 id=\"bank-account-creation\">Bank Account Creation</h2>\n<p>Create a bank account associated with a contact and country to enable PayOut processing.</p>\n<h3 id=\"field-requirements\">Field Requirements</h3>\n<ul>\n<li><p><strong>Entity</strong>: This field is mandatory only for <strong>Chile</strong>. For all other countries, the destination bank can be identified using the account number alone.</p>\n</li>\n<li><p><strong>Type</strong>: The accepted values are:</p>\n<ul>\n<li><p><code>CHECKING</code></p>\n</li>\n<li><p><code>SAVINGS</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<p>Country-specific validation rules may apply depending on the destination country and the payment method being used.</p>\n<p>EndFragment</p>\n<h1 id=\"request-parameters\">Request Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier associated with the beneficiary or recipient</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>countrySymbol</code></td>\n<td>Country code where the payout will be processed</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>entity</code></td>\n<td>Banking institution by country</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>accountNumber</code></td>\n<td>Account Num</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>Type Account</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>IdAccountBank</code></td>\n<td>Bank identifier</td>\n<td>INT</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","CreateBankAccount"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"04496482-507b-40f6-b4e9-8c7b0f5c2e43"},{"name":"Get Bank Account","id":"9b088369-0917-40cd-8965-d0e717cd98c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/GetBankAccounts?ContactId=1&Currency=COP","description":"<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IdAccountBank</td>\n<td>Bank account ID created</td>\n<td>INT</td>\n</tr>\n<tr>\n<td>ContactId</td>\n<td>Contact identifier</td>\n<td>INT</td>\n</tr>\n<tr>\n<td>NameAccount</td>\n<td>Name assigned to account</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td>Account Number</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Bank</td>\n<td>Name Bank</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>TypeAccount</td>\n<td>Type Account</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","GetBankAccounts"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"ContactId","value":"1"},{"key":"Currency","value":"COP"}],"variable":[]}},"response":[],"_postman_id":"9b088369-0917-40cd-8965-d0e717cd98c9"}],"id":"26863272-3fa5-40b9-8cb4-55d245cd769e","description":"<p>This section contains all endpoints related to bank account management, including the creation, validation, and retrieval of bank accounts associated with previously registered contacts.</p>\n<p>Bank accounts are an essential component of the <strong>PayOut</strong> process, as they define the destination account where funds will be transferred. Before initiating a payout transaction, a valid bank account must be created and linked to an existing contact.</p>\n<p>The APIs within this section allow you to manage bank account information and ensure that all required details are available for successful payout processing.}</p>\n","_postman_id":"26863272-3fa5-40b9-8cb4-55d245cd769e"},{"name":"PayIn","item":[{"name":"ActiveCountries","id":"493acc68-dffa-42e7-8c3c-54786b0f3f91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/ActiveCountries","description":"<p>Return to active countries</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>CountryId</code></td>\n<td>Id Country</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>CountryName</code></td>\n<td>name of the country</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>CurrencyCode</code></td>\n<td>Currency code used in the country</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>CountryCode</code></td>\n<td>Country code</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","ActiveCountries"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"493acc68-dffa-42e7-8c3c-54786b0f3f91"},{"name":"GetPaymentMethods","id":"388f2d4f-776a-4b8d-b533-6ec8aba35d2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/GetPaymentMethods/CO","description":"<p>Return payment methods by country</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Country</code></td>\n<td>name of the country</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PaymentMethods</code></td>\n<td>Specific information on payment methods</td>\n<td>OBJECT</td>\n</tr>\n<tr>\n<td><code>PaymentMethods.Name</code></td>\n<td>Currency code used in the country</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PaymentMethods.Method</code></td>\n<td>Name of the payment method</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PaymentMethods.ResponseType</code></td>\n<td>Payment method</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PaymentMethods.MinAmount</code></td>\n<td>Minimum amount of the payment method in the currency of the indicated country</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td><code>PaymentMethods.MaxAmount</code></td>\n<td>Maximum amount of the payment method in the currency of the indicated country</td>\n<td>DECIMAL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","GetPaymentMethods","CO"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"388f2d4f-776a-4b8d-b533-6ec8aba35d2f"},{"name":"CreatePayment","id":"065a399b-6a4e-4569-aa70-5e51a03f331d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"idContacto\": 0,\r\n  \"monto\": 0.01,\r\n  \"codigoPais\": \"string\",\r\n  \"referencia\": \"string\",\r\n  \"descripcion\": \"string\",\r\n  \"metodoPago\": \"string\",\r\n  \"urlRedirect\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/CreatePayment","description":"<p>Create the skate request by the indicated country.</p>\n<h1 id=\"parameters\">Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><code>ParameterName</code></th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount to pay</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td><code>CountryCode</code></td>\n<td>Country code</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Reference</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PaymentMethod</code></td>\n<td>Payment method</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>UrlRedirect</code></td>\n<td>URL where the payment will be sent after payment; this applies to payment links.</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PayInId</code></td>\n<td>Payin request ID</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Url</code></td>\n<td>Payment URL or summary URL, depending on the <code>tipoPago</code></td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Qr</code></td>\n<td>QR or bank transfer account details</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>tipoPago</code></td>\n<td>Payment type (PAYMENT_LINK, BANK_TRANSFER, QR)</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","CreatePayment"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"065a399b-6a4e-4569-aa70-5e51a03f331d"},{"name":"StatusPayment","id":"f26f01ed-3057-412e-97ac-712a1fc3e99f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/StatusPayment?IdPayIn=1","description":"<p>Returns payin information</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PayInId</code></td>\n<td>PayIn Identifier</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>ApplicationId</code></td>\n<td>Payment URL</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>FullName</code></td>\n<td>Name and surname</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Email</code></td>\n<td>Email</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Phone</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Country</code></td>\n<td>Country</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>TrmCountryVsUsd</code></td>\n<td>value of the dollar against the currency used for payment</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>StatusId</code></td>\n<td>state identifier</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Status</code></td>\n<td>Transaction status</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>reference</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Descrictiona</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>CreateDate</code></td>\n<td>Create Date</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>ResolvedDate</code></td>\n<td>Date of solution</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>PaymentMethod</code></td>\n<td>Payment method</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Bank</code></td>\n<td>Bank</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>UrlRedirect</code></td>\n<td>URL where the payment will be sent after payment; this applies to payment links.</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","StatusPayment"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"IdPayIn","value":"1"}],"variable":[]}},"response":[],"_postman_id":"f26f01ed-3057-412e-97ac-712a1fc3e99f"}],"id":"57026de8-e850-45d6-9ac4-07435d5b1c85","description":"<p>This section contains all endpoints required to create and manage collection requests across the supported countries.</p>\n<p>Through these APIs, merchants can initiate <strong>PayIn</strong> transactions, allowing end users to complete payments using the payment methods available in each country. The PayIn process is the entry point for funds into the platform and enables the collection of payments in local currencies.</p>\n<p>The APIs within this section provide the necessary functionality to create payment requests, retrieve transaction details, verify payment statuses, and manage the complete collection lifecycle.</p>\n","_postman_id":"57026de8-e850-45d6-9ac4-07435d5b1c85"},{"name":"PayOut","item":[{"name":"GetBalance","id":"40452991-dc4b-4ef5-8597-5301e4344dbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/GetBalances","description":"<p>Return the balances you have in each of the countries</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ApplicationId</td>\n<td>Main identifier of the trade</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country configured in the wallet</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td>AvailableAmount</td>\n<td>Total available balance</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td>PayOutAmount</td>\n<td>Available balance to be used in the distribution of PayOuts</td>\n<td>DECIMAL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","GetBalances"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"40452991-dc4b-4ef5-8597-5301e4344dbf"},{"name":"CreatePayOut","id":"ae911ca7-64d9-42f8-bac4-177383ee3fd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"idContacto\": 0,\r\n  \"monto\": 0.01,\r\n  \"codigoPais\": \"string\",\r\n  \"referencia\": \"string\",\r\n  \"descripcion\": \"string\",\r\n  \"metodoPago\": \"string\",\r\n  \"banco\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/CreatePayOut","description":"<p>Create a payout request within the specified country.</p>\n<h1 id=\"request-parameters\">Request Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ContactId</code></td>\n<td>Contact identifier associated with the beneficiary or recipient</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount to be transferred</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td><code>CountryCode</code></td>\n<td>Country code where the payout will be processed</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Reference associated with the payout transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description of the payout transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>idAccountBank</code></td>\n<td>Bank account ID created and associated with the contact</td>\n<td>INT</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PayOutId</code></td>\n<td>Unique identifier of the payout transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description associated with the payout transaction</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","CreatePayOut"],"host":["sandboxclient","guardpayapp","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae911ca7-64d9-42f8-bac4-177383ee3fd5"},{"name":"StatusPayOut","id":"d0ef41c9-2330-4327-a1d9-2acc773a30b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://sandboxclient.guardpayapp.com/Api/GlobalPayment/StatusPayOut?payoutId=1","description":"<p>Returns payout information</p>\n<h1 id=\"returned-parameters\">Returned Parameters</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>ParameterName</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PayOutId</code></td>\n<td>Unique identifier of the payout transaction</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>FullName</code></td>\n<td>Name and surname of the beneficiary</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Email</code></td>\n<td>Beneficiary's email address</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Phone</code></td>\n<td>Beneficiary's phone number</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Amount transferred in the payout transaction</td>\n<td>DECIMAL</td>\n</tr>\n<tr>\n<td><code>CountryCode</code></td>\n<td>ISO country code associated with the payout</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Country</code></td>\n<td>Country associated with the payout transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>StatusId</code></td>\n<td>Numeric identifier of the payout status</td>\n<td>INT</td>\n</tr>\n<tr>\n<td><code>Status</code></td>\n<td>Current status of the payout transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Reference</code></td>\n<td>Merchant reference associated with the payout</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>Description of the payout transaction</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>CreatedAt</code></td>\n<td>Date and time when the payout was created</td>\n<td>DATETIME</td>\n</tr>\n<tr>\n<td><code>ResolvedAt</code></td>\n<td>Date and time when the payout was completed or resolved</td>\n<td>DATETIME</td>\n</tr>\n<tr>\n<td><code>PaymentMethod</code></td>\n<td>Payment method used for the payout</td>\n<td>STRING</td>\n</tr>\n<tr>\n<td><code>Bank</code></td>\n<td>Bank used to process the payout</td>\n<td>STRING</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"estados-payout\">Estados PayOut</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id Estado</th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>2</code></td>\n<td>Available for distribution</td>\n</tr>\n<tr>\n<td><code>3</code></td>\n<td>Requested for dispersion</td>\n</tr>\n<tr>\n<td><code>4</code></td>\n<td>Dispersion rejected</td>\n</tr>\n<tr>\n<td><code>5</code></td>\n<td>Dispersal approved and completed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["Api","GlobalPayment","StatusPayOut"],"host":["sandboxclient","guardpayapp","com"],"query":[{"key":"payoutId","value":"1"}],"variable":[]}},"response":[],"_postman_id":"d0ef41c9-2330-4327-a1d9-2acc773a30b9"}],"id":"53a824fd-ae2d-40cb-a533-7940b1e340a5","description":"<p>This section contains all endpoints required to create and manage fund disbursements across the supported countries.</p>\n<p>Through these APIs, merchants can initiate <strong>PayOut</strong> transactions to distribute funds to beneficiaries in their respective countries and local currencies. The PayOut process enables secure and efficient transfers to registered bank accounts associated with validated contacts.</p>\n<p>The APIs within this section provide the necessary functionality to create payout requests, retrieve transaction details, monitor transaction statuses, and manage the complete fund disbursement lifecycle.</p>\n","_postman_id":"53a824fd-ae2d-40cb-a533-7940b1e340a5"},{"name":"Webhook Global Payment","item":[],"id":"7ebe13aa-4d48-4f6f-81ec-b01dfdeafb72","description":"<h2 id=\"status-notification-webhook--payout\">Status Notification Webhook – PayOut</h2>\n<p>When a payout status update occurs, the system sends an automatic notification via webhook to the URL configured by the client.</p>\n<p>The notification is sent to the route previously registered in the <code>NotifyUrl</code> field when the payout request was made.</p>\n<h3 id=\"example-of-payout-sent\">Example of PayOut sent</h3>\n<p>{<br />\"IdDispersion\":\"10\",<br />\"descripcionEstado\":\"Pending Confirmation\",<br />\"idEstado\":\"5\",<br />\"mensaje\":\"Payment pending confirmation\"<br />}</p>\n<h3 id=\"field-descriptions\">Field descriptions</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>IdDispersion</code></td>\n<td>Unique identifier of the dispersion generated in the system.</td>\n</tr>\n<tr>\n<td><code>DescripcionEstado</code></td>\n<td>Description of the current state of the dispersion.</td>\n</tr>\n<tr>\n<td><code>Mensaje</code></td>\n<td>Informative message related to the status of the process.</td>\n</tr>\n<tr>\n<td><code>IdEstado</code></td>\n<td>Dispersion state code within the system.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"validation-recommendation\">Validation Recommendation</h2>\n<p>Once the webhook notification is received, it is recommended to confirm the transaction status by making a request to the <strong>Data PayOut</strong> method.</p>\n<p>This allows you to validate and reconfirm the current information of the payout process directly from the system.</p>\n<h2 id=\"status-notification-webhook--payin\">Status Notification Webhook – PayIn</h2>\n<p>When there is an update in the status of a <strong>PayIn</strong> transaction, the system automatically sends a notification via <strong>webhook</strong> to the endpoint configured by the client.</p>\n<p>The URL where this webhook is sent must be previously provided by the client to the <strong>GuardPay</strong> team, since it is configured internally within the system.</p>\n<h3 id=\"example-payin-payload\">Example PayIn Payload</h3>\n<p>{<br />\"idTransaccion\":\"10\",<br />\"descripcionEstado\":\"Pending Confirmation\",<br />\"idEstado\":\"5\",<br />\"mensaje\":\"Payment pending confirmation\"<br />}</p>\n<h3 id=\"field-description\">Field Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>idTransaccion</code></td>\n<td>Unique identifier of the PayIn transaction.</td>\n</tr>\n<tr>\n<td><code>descripcionEstado</code></td>\n<td>Description of the current transaction status.</td>\n</tr>\n<tr>\n<td><code>idEstado</code></td>\n<td>Status code of the transaction within the system.</td>\n</tr>\n<tr>\n<td><code>mensaje</code></td>\n<td>Informational message related to the payment status.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"validation-recommendation-1\">Validation Recommendation</h2>\n<p>Once the webhook notification is received, it is recommended to confirm the transaction status by making a request to the <strong>PayIn Status</strong> method.</p>\n<p>This allows you to validate and reconfirm the current information of the payment process directly from the system.</p>\n","_postman_id":"7ebe13aa-4d48-4f6f-81ec-b01dfdeafb72"}],"id":"384e9267-c9f3-4137-9b71-8a8db5198385","description":"<p>In this section you will find information related to international payments offered by GuardPay.</p>\n<img src=\"https://content.pstmn.io/49d374fd-261d-4fcd-be50-5da16c3d9d11/bGF0YW0uanBlZw==\" alt />","_postman_id":"384e9267-c9f3-4137-9b71-8a8db5198385"}]}