{"info":{"_postman_id":"e1739049-ee9e-4fc4-8af2-f7a258fcbf68","name":"FAST PAYMENTS DOCUMENTATION","description":"<html><head></head><body><p>Overview</p>\n<hr>\n<ol>\n<li>Call Create Deposit or Create Withdraw API method to send request in the FastPayments system.</li>\n<li>FastPayments checks if the deposit or withdrawal is valid.</li>\n<li>If the request is valid, Fast Payments responds with 200 HTTP status and returns the data. After receiving 200 HTTP status, you will receive the callback notification, and continue the process to update infos in your system.</li>\n<li>If the request is not valid, Fast Payments returns 422 (or other) error HTTP status and an error message.</li>\n<li>Your callback_url is defined on your dashboard. Fast Payments sends payment callback when order status is changed to pending, confirmed, expired or to any other status. Read more about Fast Payments deposit statuses or withdraw statuses. Please note, that payment notifications are sent using POST method.</li>\n<li>In order to avoid multiple erroneous requests, we block equal deposit and withdrawal requests from the same user ID and same requested amount up to few minutes. (example: bug in the frontend when not disabling submit after clicking once).</li>\n</ol>\n<p>API Request Limits</p>\n<hr>\n<p>500,000 / hour per ip address for all API endpoints.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Endpoint</th>\n<th>Request Limit</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Live</td>\n<td>POST /deposit</td>\n<td>40 / seconds</td>\n</tr>\n<tr>\n<td>Live</td>\n<td>GET /witddraw</td>\n<td>40 / seconds</td>\n</tr>\n<tr>\n<td>Live</td>\n<td>POST /deposit</td>\n<td>40 / seconds</td>\n</tr>\n<tr>\n<td>Live</td>\n<td>GET /witddraw</td>\n<td>40 / seconds</td>\n</tr>\n</tbody>\n</table>\n</div><p>API returns 429 HTTP error if limit is exceeded.</p>\n<p>API Requests</p>\n<hr>\n<p>API Request is used to query Fast Payments API (examples: Create Deposit, Get Deposit).<br>API Request attributes:</p>\n<ul><li><p>Action - Which API method was queried.</p></li><li><p>Response - HTTP status returned by Fast Payments.</p></li><li><p>Parameters - Parameters used to query Fast Payments API.</p></li><li><p>Response - Parameters returned by Fast Payments.</p></li></ul>\n\n<p>API Authentication</p>\n<hr>\n<p>All Fast Payments API calls require authentication. You can authenticate your api by providing header: Token.</p>\n<p>API Key - You can generate your API Token key in account area. From dashboard navigation go to api page and create new API Token key.</p>\n<p>POST {{baseUrl}}/deposit/<br>Accept: <em>/</em><br>User-Agent: PHP<br>Token:</p>\n<p>Errors</p>\n<hr>\n<p>Most common API error responses described below. Error response must be identified by HTTP status and reason attribute in your application.</p>\n<p>Please note, that specific API methods, for example Create Deposit has their own errors (422 Illegal Conditions - when parameters are invalid).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Status</th>\n<th>Reason</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>401(Unauthorized)</td>\n<td>Bad Credentials</td>\n<td>API Credentials is not valid</td>\n</tr>\n<tr>\n<td>401(Unauthorized)</td>\n<td>Illegal Conditions</td>\n<td>We were unable to complete your transaction due to your dayli limit of R$ XX,XX . You Still have R$ XX,XX available to deposit today.</td>\n</tr>\n<tr>\n<td>401(Unauthorized)</td>\n<td>Illegal Conditions</td>\n<td>user CPF blocked by FastPayments.</td>\n</tr>\n<tr>\n<td>401(Unauthorized)</td>\n<td>Illegal Conditions</td>\n<td>user_id blocked by FastPayments.</td>\n</tr>\n<tr>\n<td>404(Not Found)</td>\n<td>PageNotFound</td>\n<td>Page, action or record not found</td>\n</tr>\n<tr>\n<td>404 (Not Found)</td>\n<td>Results not found</td>\n<td>Results not found</td>\n</tr>\n<tr>\n<td>422 (Unauthorized)</td>\n<td>Illegal Conditions</td>\n<td>Parameters not valid</td>\n</tr>\n<tr>\n<td>429 (Unauthorized)</td>\n<td>Rate Limit Exception</td>\n<td>API request limit is exceeded</td>\n</tr>\n<tr>\n<td>500 (Internal Server Error)</td>\n<td>Internal ServerError</td>\n<td>Something wrong in FastPayments</td>\n</tr>\n</tbody>\n</table>\n</div><p>Issues<br>The common issues why your app or API integration possible not working.</p>\n<hr>\n<p>Unable to create deposit / withdraw or unable to send a request to FastPayments API</p>\n<hr>\n<p>Possible reasons:</p>\n<ul><li><p>Wrong API credentials. Please check if you have entered them correctly. Make sure that there are no spaces before or after the text.</p></li><li><p>Wrong API credentials HMAC. Check your account if the operation option is enabled for the key you are using.</p></li><li><p>cURL or other library used to communicate with FastPayments API is outdated or is working incorrectly. Please check library version.</p></li><li><p>Your server can not reach FastPayments please check if FastPayments is available and if your server can reach it.</p></li></ul>\n\n<hr>\n<p>The order status is not updated after payment in your system or Fast Payments does not send transaction callback (Callback Notification)</p>\n<hr>\n<p>Possible reasons:</p>\n<ul><li><p>Your server is on a private network, for example localhost. Please make sure that your application is publicly accessible.</p></li><li><p>Your website is disabled (in maintenance mode).</p></li><li><p>Your server firewall, third-party security service (cloudflare, incapsula, etc.) or your application is blocking Fast Payments IP address.</p></li><li><p>Yout return url is incorrect, make sure address entered in your account is correct.</p></li></ul>\n\n<p>CONDITION TO SOLICITATION WITHDRAW<br>If your balance available is not sufficient to request a withdrawal transaction, we will respond with:</p>\n<hr>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"message\":\"Withdrawal amount greater than your balance available\",\n    \"reason\":\"IllegalConditions\",\n    \"code\":\"0443\"\n}\n\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"message\":\"Insufficient balance available due to pending withdrawals\",\n    \"reason\":\"IllegalConditions\",\n    \"code\":\"0442\"\n}\n\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"message\":\"Withdrawal not allowed due to insufficient balance available\",\n    \"reason\":\"IllegalConditions\",\n    \"code\":\"0441\"\n}\n\n</code></pre><p>API Request Control(amount limits)</p>\n<hr>\n<p>As a way of avoiding possible fraud, Fast Payments has a user rating that imposes a daily deposit limit per method. Daily limits for default or VIP users are configured according to your needs. We carry out the control based on the volume, amount of deposits and user activity time, based on your user_id and CPF.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"20304668","collectionId":"e1739049-ee9e-4fc4-8af2-f7a258fcbf68","publishedId":"2s9YkuYHdH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF7638"},"publishDate":"2023-12-28T14:37:54.000Z"},"item":[{"name":"CREATE DEPOSIT","id":"19ac4dff-1ec3-428d-bbf1-41163928832f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"pix\",\r\n    \"order_id\" : \"525352352352\",\r\n    \"user_id\" : \"45745745\",\r\n    \"user_name\" : \"Salsa\",\r\n    \"user_document\" : \"89118958060\",\r\n    \"user_address\" : \"---\",\r\n    \"user_address_number\" : \"---\",\r\n    \"user_district\" : \"---\",\r\n    \"user_city\" : \"---\",\r\n    \"user_uf\" : \"---\",\r\n    \"user_cep\" : \"---\",\r\n    \"amount\" : \"72383.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/deposit","description":"<p>bank_code param (required string)</p>\n<p>Code of operation of the bank in Brazil.</p>\n<hr />\n<p>EXEMPLES TED:<br /><strong>461</strong> (Asass)</p>\n<p>EXEMPLES INVOICE:</p>\n<p><strong>100</strong> (default)</p>\n<p>Deposit Statuses</p>\n<hr />\n<p>Statuses by priority:</p>\n<ol>\n<li>pending</li>\n<li>confirmed</li>\n<li>canceled</li>\n<li>refund</li>\n<li>chargeback</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>STATUS</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>Awaiting payment from the user.</td>\n</tr>\n<tr>\n<td>Confirmed</td>\n<td>Payment confirmed by FastPayments.</td>\n</tr>\n<tr>\n<td>Canceled</td>\n<td>Cancel deposit.</td>\n</tr>\n<tr>\n<td>Refund</td>\n<td>The user receive the amount refund in your origin account.</td>\n</tr>\n<tr>\n<td>Chargeback</td>\n<td>Card transaction reported by user as unrecognized.</td>\n</tr>\n<tr>\n<td>Freeze</td>\n<td>Frozen transaction in dispute awaiting response from the financial institution.</td>\n</tr>\n</tbody>\n</table>\n</div><p>CREDIT CARD RECOMMENDATIONS</p>\n<hr />\n<p>Follow the recommendations below to validate the integration process so that your production credentials are enabled</p>\n<ul>\n<li>API Features</li>\n<li>Refund Feature</li>\n<li>Credit Card Verification (between R$ 1,00 to R$ 4,99)</li>\n<li>Multiples clicks disable</li>\n<li>Change Cards</li>\n<li>Block same Cards at different account</li>\n<li>Good practices frontend</li>\n</ul>\n<p><strong>TRANSACTION FLOW (CREDIT CARD)</strong><br />As soon as the user makes a deposit request, we await payment. When the payment is made, the issuing bank sends us the status of the payment confirmation and in sequence we have also sent it to you via Callback</p>\n<p>Until we receive any notification from the issuing bank, the status remains pending for you for a period of 24 hours</p>\n<p><strong>IMPORTANT:</strong> To avoid <strong>CHARGEBACK</strong>, only accept the card enroll from the account holder by checking the registered CPF (identification document). Do not accept the card registration of third parties.</p>\n<p>INVOICE</p>\n<hr />\n<p>Invoice transactions have the user's CPF (TAX ID) verification function.</p>\n<p>If the CPF number is invalid, you will receive the following response from the request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"message\": \"UNAUTHORIZED TRANSACTION ON BB\",\n  \"reason\": \"IllegalConditions\",\n  \"return\": \"CPF do pagador nao encontrado na base.\",\n  \"code\": \"4028\"\n}\n\n</code></pre><p>TRANSACTION TEMPORARILY BLOCKED</p>\n<hr />\n<p>If your user clicks on the purchase button several times, we will prevent multiple transactions from being created so that there is no inconvenience.</p>\n<p>Below is the message returned in this case:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n message: \"X minute action interval per user reached, please wait to make a new deposit\",\n reason: \"Illegal Conditions\"\n}\n\n</code></pre><p>Deposit Callback</p>\n<hr />\n<p>Deposit callback (notification) will be sent to client callback_url when deposit statuses is changed to pending, confirmed, expired, refund, refund_pending or refund_confirmed.</p>\n<p>Callback example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"order_id\": \"6236621\",\n  \"user_id\": \"34234\",\n  \"solicitation_date\": \"12/03/2019 13:15:13\",\n  \"paid_date\": \"13/03/2019 02:04:42\",\n  \"code_identify\": \"64305077\",\n  \"amount_solicitation\": \"580.00\",\n  \"amount_confirmed\": \"580.00\",\n  \"status\": \"confirmed\",\n  \"comission\": \"29.00\",\n  \"disponibilization_date\": \"15/03/2019 00:00:00\"\n}\n\n</code></pre>","urlObject":{"path":["deposit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ff8b73f1-1a6e-4f71-bca9-a532fc5e0a29","name":"CREATE DEPOSIT PIX","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"pix\",\r\n    \"order_id\" : \"Your order id\",\r\n    \"user_id\" : \"123456\",\r\n    \"user_name\" : \"Your Name\",\r\n    \"user_document\" : \"99999999999\",\r\n    \"user_address\" : \"Your address\",\r\n    \"user_district\" : \"Your district\",\r\n    \"user_city\" : \"Your city\",\r\n    \"user_uf\" : \"UF\",\r\n    \"user_cep\" : \"99999999\",\r\n    \"amount\" : \"1.80\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/deposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"425"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 15:30:03 GMT"},{"key":"x-amzn-RequestId","value":"d5e6d8a6-7650-4844-a5e3-eb30dbe26184"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8CmFEtnCYcFgLA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e4af3-73bbe87d07c463ca2b04057e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 819fb1f29c3038ca3cec04e041a0aa1f.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU1-C1"},{"key":"X-Amz-Cf-Id","value":"YZ-IIL-CNS4tstQyBJOnbl_Tx82_qxJdYdErkv4lgDYVGutvPe2QEw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"32154485965\",\n    \"solicitation_date\": \"2023-03-28 11:26:26\",\n    \"due_date\": \"2023-03-29\",\n    \"code_identify\": \"APV942056704146917462458103\",\n    \"amount\": \"50.25\",\n    \"status\": \"pending\",\n    \"link_qr\": \"https://chart.googleapis.com/chart?chs=350x350&cht=qr&chl=00020101021226900014br.gov.bcb.pix2568qr.cornerpix.com.br/21332862/v2/e718b417-3ba8-4969-ab4e-65c3a7313bad5204000053039865802BR5925BUDGAINS TECNOLOGIA E SER6009SAO PAULO62070503***63047E36\",\n    \"content_qr\": \"00020101021226900014br.gov.bcb.pix2568qr.cornerpix.com.br/21332862/v2/e718b417-3ba8-4969-ab4e-65c3a7313bad5204000053039865802BR5925BUDGAINS TECNOLOGIA E SER6009SAO PAULO62070503***63047E36\"\n}"},{"id":"60b81dcf-5568-46f5-8344-c6575186fad4","name":"CREATE DEPOSIT INVOICE","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"invoice\",\r\n    \"order_id\" : \"Your order id\",\r\n    \"user_id\" : \"123456\",\r\n    \"user_name\" : \"Your Name\",\r\n    \"user_document\" : \"99999999999\",\r\n    \"user_address\" : \"Your address\",\r\n    \"user_district\" : \"Your district\",\r\n    \"user_city\" : \"Your city\",\r\n    \"user_uf\" : \"UF\",\r\n    \"user_cep\" : \"99999999\",\r\n    \"bank_code\" : \"100\",\r\n    \"amount\" : \"20.50\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/deposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"425"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 15:30:03 GMT"},{"key":"x-amzn-RequestId","value":"d5e6d8a6-7650-4844-a5e3-eb30dbe26184"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8CmFEtnCYcFgLA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e4af3-73bbe87d07c463ca2b04057e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 819fb1f29c3038ca3cec04e041a0aa1f.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU1-C1"},{"key":"X-Amz-Cf-Id","value":"YZ-IIL-CNS4tstQyBJOnbl_Tx82_qxJdYdErkv4lgDYVGutvPe2QEw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"123654789158252571\",\n    \"solicitation_date\": \"2021-08-31 14:42:30\",\n    \"due_date\": \"2022-04-04\",\n    \"code_identify\": 66543545,\n    \"amount\": \"250.90\",\n    \"bank_name\": \"BANK\",\n    \"holder\": \"HOLDER ACCOUNT BANK\",\n    \"agency\": \"0000\",\n    \"type_account\": \"corrente\",\n    \"account\": \"0000000\",\n    \"status\": \"pending\",\n    \"link_invoice\": \"https://dashboard.approvepayment.com/boleto/token/3635121681813854684\",\n    \"bar_code\": \"99658430070605681659365889960383597650000002055\"\n}"},{"id":"b85a5ef9-cd1a-47b1-bf65-8085e1c38e33","name":"CREATE DEPOSIT TED","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"ted\",\r\n    \"order_id\" : \"Your order id\",\r\n    \"user_id\" : \"123456\",\r\n    \"user_name\" : \"Your Name\",\r\n    \"user_document\" : \"99999999999\",\r\n    \"user_address\" : \"Your address\",\r\n    \"user_district\" : \"Your district\",\r\n    \"user_city\" : \"Your city\",\r\n    \"user_uf\" : \"UF\",\r\n    \"user_cep\" : \"99999999\",\r\n    \"bank_code\":\"461\",\r\n    \"amount\" : \"1.80\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/deposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"425"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 15:30:03 GMT"},{"key":"x-amzn-RequestId","value":"d5e6d8a6-7650-4844-a5e3-eb30dbe26184"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8CmFEtnCYcFgLA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e4af3-73bbe87d07c463ca2b04057e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 819fb1f29c3038ca3cec04e041a0aa1f.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU1-C1"},{"key":"X-Amz-Cf-Id","value":"YZ-IIL-CNS4tstQyBJOnbl_Tx82_qxJdYdErkv4lgDYVGutvPe2QEw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"3516848765135188\",\n    \"solicitation_date\": \"2021-08-31 14:42:30\",\n    \"due_date\": \"2022-09-02\",\n    \"bank_name\": \"Orix\",\n    \"bank_holder\": \"Approve Pay Administração de Pagamentos Ltda\",\n    \"bank_agency\": \"0001\",\n    \"bank_account\": \"1456291-2\",\n    \"bank_type_account\": \"corrente\",\n    \"code_identify\": \"88224920\",\n    \"amount\": \"30.25\",\n    \"status\": \"pending\"\n}"},{"id":"6fd7858d-d9fb-494c-8ed1-e7af82fdce76","name":"CREATE DEPOSIT CREDIT CARD","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"creditcard\",\r\n    \"order_id\" : \"Your order id\",\r\n    \"user_id\" : \"123456\",\r\n    \"user_name\" : \"Your Name\",\r\n    \"user_email\" : \"Your Email\",\r\n    \"user_phone\" : \"Your Cel Phone\",\r\n    \"card_holder\" : \"Your Name of Credit Card\",\r\n    \"card_number\" : \"Credit Card Number\",\r\n    \"card_expired\" : \"mm/yyyy\",\r\n    \"card_cvv\" : \"xxx\",\r\n    \"user_document\" : \"99999999999\",\r\n    \"user_address\" : \"Your address\",\r\n    \"user_district\" : \"Your district\",\r\n    \"user_city\" : \"Your city\",\r\n    \"user_uf\" : \"UF\",\r\n    \"user_cep\" : \"99999999\",\r\n    \"amount\" : \"100.80\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/deposit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"425"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 15:30:03 GMT"},{"key":"x-amzn-RequestId","value":"d5e6d8a6-7650-4844-a5e3-eb30dbe26184"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8CmFEtnCYcFgLA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e4af3-73bbe87d07c463ca2b04057e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 819fb1f29c3038ca3cec04e041a0aa1f.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU1-C1"},{"key":"X-Amz-Cf-Id","value":"YZ-IIL-CNS4tstQyBJOnbl_Tx82_qxJdYdErkv4lgDYVGutvPe2QEw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"5132121326633571\",\n    \"solicitation_date\": \"2023-01-05 17:00:52\",\n    \"due_date\": \"2023-02-04\",\n    \"code_identify\": \"APV00033060\",\n    \"amount\": \"100.80\",\n    \"status\": \"confirmed\"\n}"}],"_postman_id":"19ac4dff-1ec3-428d-bbf1-41163928832f"},{"name":"GET DEPOSIT","id":"3a989886-210b-4150-892a-7793020fe6aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/deposit","urlObject":{"path":["deposit"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Initial date of search</p>\n","type":"text/plain"},"key":"first_date","value":"2022-04-01"},{"disabled":true,"description":{"content":"<p>Final date of search</p>\n","type":"text/plain"},"key":"last_date","value":"2022-04-30"},{"disabled":true,"description":{"content":"<p>Transaction status separated by commas. Ex (confirmed,pending,canceled,refund,chargeback,freeze)</p>\n","type":"text/plain"},"key":"status","value":"confirmed"},{"disabled":true,"description":{"content":"<p>Transaction method separated by commas. Ex (pix,invoice,shop,creditcard)</p>\n","type":"text/plain"},"key":"method","value":"pix"},{"disabled":true,"description":{"content":"<p>Transaction Order ID</p>\n","type":"text/plain"},"key":"order_id","value":""}],"variable":[]}},"response":[{"id":"f53a0039-d9b0-4ebb-a152-3fffc5e28709","name":"GET DEPOSIT","originalRequest":{"method":"GET","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{baseUrl}}/deposit?first_date=2021-07-30&last_date=2021-08-01&status=confirmed&method=pix&order_id","host":["{{baseUrl}}"],"path":["deposit"],"query":[{"key":"first_date","value":"2021-07-30","description":"Initial date of search"},{"key":"last_date","value":"2021-08-01","description":"Final date of search"},{"key":"status","value":"confirmed","description":"Transaction status separated by commas. Ex (confirmed,pending,canceled,refund,chargeback,freeze)"},{"key":"method","value":"pix","description":"Transaction method separated by commas. Ex (pix,invoice,shop,creditcard)"},{"key":"order_id","value":null,"description":"Transaction Order ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1916"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 16:31:12 GMT"},{"key":"x-amzn-RequestId","value":"e01c0a2f-3ba6-4324-a46c-520a62fbb728"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8LkYFPkiYcFz7g="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e594f-47a3f5c840640d5773c8a3fd"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b97800dba63a54d15f1e69f88e3a1a3e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU1-C1"},{"key":"X-Amz-Cf-Id","value":"zGlxCO82D2mRLpde5-bM29h-StH6YIRVli-ndtsZN648SdTNDb_jVQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"orders\": [\n        {\n            \"id\": 354812,\n            \"order_id\": \"9954535455\",\n            \"paid_date\": \"2021-08-31 14:42:30\",\n            \"due_date\": \"2022-04-04\",\n            \"code_identify\": \"APV01388887\",\n            \"amount_solicitation\": \"180.20\",\n            \"amount_confirmed\": \"180.20\",\n            \"code_bank\": \"1531545\",\n            \"bank_name\": \"Bank Name\",\n            \"holder\": \"Account Bank Name\",\n            \"agency\": \"Agency Bank\",\n            \"type_account\": \"corrente\",\n            \"account\": \"Account Number\",\n            \"status\": \"confirmed\",\n            \"link_invoice\": \"https://fastpayments.com.br/link_invoice\",\n            \"receipt\": \"\",\n            \"comission\": \"0.9\",\n            \"disponibilization_date\": \"12/08/2021 00:00:00\"\n        },\n        {\n            \"id\": 467493,\n            \"order_id\": \"Order ID\",\n            \"paid_date_clear\": \"2021-08-31 14:42:30\",\n            \"paid_date\": \"14/08/2021 13:50:06\",\n            \"due_date\": \"15/08/2021\",\n            \"code_identify\": \"A4P66551491\",\n            \"amount_solicitation\": \"7.30\",\n            \"amount_confirmed\": \"7.30\",\n            \"code_bank\": \"Code Bank\",\n            \"bank_name\": \"Bank Name\",\n            \"holder\": \"Account Bank Name\",\n            \"agency\": \"Agency Bank\",\n            \"type_account\": \"corrente\",\n            \"account\": \"Account Number\",\n            \"status\": \"confirmed\",\n            \"link_invoice\": \"https://fastpayments.com.br/link_invoice\",\n            \"receipt\": \"\",\n            \"comission\": \"0.9\",\n            \"disponibilization_date\": \"15/08/2021 00:00:00\"\n        }\n    ]\n}"}],"_postman_id":"3a989886-210b-4150-892a-7793020fe6aa"},{"name":"CANCEL DEPOSIT","id":"59eb11fe-184d-4874-95d3-b87732e43105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"order_id\" : \"Your order id\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/deposit","urlObject":{"path":["deposit"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59eb11fe-184d-4874-95d3-b87732e43105"},{"name":"CREATE WITHDRAW","id":"32c5dd39-a0e0-4f0a-a3d6-19e579547bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"pix\",\r\n    \"order_id\" : \"99999999\",\r\n    \"user_id\" : \"9999999\",\r\n    \"user_name\": \"User Name\",\r\n    \"user_document\": \"999.999.999-99\",\r\n    \"pix_key\" : \"999.999.999-99\",\r\n    \"type_pixkey\" : \"cpf\",\r\n    \"amount\" : \"3.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/withdraw","description":"<p>StartFragment</p>\n<p><strong>For Method \"PIX\"</strong></p>\n<p>pix_key param (required string)<br />type_pixkey param (required string)</p>\n<hr />\n<p>EXEMPLES \"type_pixkey\":</p>\n<ol>\n<li><strong>cpf</strong></li>\n<li><strong>email</strong></li>\n<li><strong>telefone</strong></li>\n<li><strong>aleatoria</strong></li>\n</ol>\n<hr />\n<p><strong>For Method \"TED\"</strong></p>\n<p>bank_code param (required string)<br />bank_name param (required string)<br />agency param (required string)<br />type_operation param (required string)<br />account param (required string)</p>\n","urlObject":{"path":["withdraw"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d473dfb7-6948-4b00-8568-eba38c007da6","name":"CREATE WITHDRAW TED","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"ted\",\r\n    \"order_id\" : \"Order ID\",\r\n    \"user_id\" : \"User ID\",\r\n    \"user_name\": \"User name\",\r\n    \"user_document\": \"User document\",\r\n    \"bank_name\": \"Name bank\",\r\n    \"agency\": \"0000\",\r\n    \"type_operation\": \"corrente\",\r\n    \"account\": \"99999\",\r\n    \"amount\" : \"1.54\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/withdraw"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"300"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 17:42:30 GMT"},{"key":"x-amzn-RequestId","value":"770c9b07-e59f-4686-8535-08967948aa34"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8WAWFDWiYcFxwA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e6a02-05e1011b2586a8bd30b1e74b"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 5737857b517c9071e8cc21326fd104a6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU3-C2"},{"key":"X-Amz-Cf-Id","value":"kmfd5oeamHPnmsCXKOWDKybx7eJqSXic1dbS9WVAbd3newPLORZMXA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"Order ID\",\n    \"solicitation_date\": \"2021-08-31 14:42:30\",\n    \"user_id\": \"User ID\",\n    \"user_name\": \"User name\",\n    \"user_document\": \"User document\",\n    \"bank_name\": \"Name bank\",\n    \"agency\": \"0000\",\n    \"type_operation\": \"corrente\",\n    \"account\": \"99999\",\n    \"amount_solicitation\": \"1.54\",\n    \"status\": \"pending\"\n}"},{"id":"38b725c9-b35e-4124-b493-70c79dbbeddb","name":"CREATE WITHDRAW PIX","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"method\" : \"pix\",\r\n    \"order_id\" : \"999999\",\r\n    \"user_id\" : \"9999\",\r\n    \"user_name\": \"User name\",\r\n    \"user_document\": \"999.999.999-99\",\r\n    \"pix_key\": \"54g3ui453-3cb1-49b3-8d85-875938759837\",\r\n    \"type_pixkey\": \"aleatoria\",\r\n    \"amount\" : \"1.54\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/withdraw"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"300"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 17:42:30 GMT"},{"key":"x-amzn-RequestId","value":"770c9b07-e59f-4686-8535-08967948aa34"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8WAWFDWiYcFxwA="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e6a02-05e1011b2586a8bd30b1e74b"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 5737857b517c9071e8cc21326fd104a6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU3-C2"},{"key":"X-Amz-Cf-Id","value":"kmfd5oeamHPnmsCXKOWDKybx7eJqSXic1dbS9WVAbd3newPLORZMXA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"Order ID\",\n    \"solicitation_date\": \"2021-08-31 14:42:30\",\n    \"user_id\": \"User ID\",\n    \"user_name\": \"User name\",\n    \"user_document\": \"User document\",\n    \"amount_solicitation\": \"1.54\",\n    \"status\": \"pending\"\n}"}],"_postman_id":"32c5dd39-a0e0-4f0a-a3d6-19e579547bb8"},{"name":"GET WITHDRAW","id":"ce7b9fac-053b-4b45-a7da-695a026d8fb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseUrl}}/withdraw?order_id=TESTE15153561","urlObject":{"path":["withdraw"],"host":["{{baseUrl}}"],"query":[{"key":"order_id","value":"TESTE15153561"}],"variable":[]}},"response":[{"id":"3f28b1a3-90d2-48a3-b8ee-0fd6d2e85738","name":"GET WITHDRAW","originalRequest":{"method":"GET","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{baseUrl}}/withdraw?order_id=TESTE15153561","host":["{{baseUrl}}"],"path":["withdraw"],"query":[{"key":"order_id","value":"TESTE15153561"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"330"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 31 Aug 2021 17:41:24 GMT"},{"key":"x-amzn-RequestId","value":"9523858b-befa-44fa-ab7b-58be0826c7a9"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amz-apigw-id","value":"E8V2fHTsiYcFUYg="},{"key":"X-Amzn-Trace-Id","value":"Root=1-612e69c2-184f412d6aec985114ca837b"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 5737857b517c9071e8cc21326fd104a6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"GRU3-C2"},{"key":"X-Amz-Cf-Id","value":"IXjOEzskmMuBNOAgfRbexpYn1X71QAJgMNlUiAMA2E70lHJERrWzYw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"order_id\": \"TESTET15153561\",\n    \"solicitation_date_clear\": \"2021-08-30 16:02:48\",\n    \"solicitation_date\": \"30/08/2021 16:02:48\",\n    \"code_identify\": null,\n    \"amount_solicitation\": \"1.66\",\n    \"code_bank\": \"218\",\n    \"bank_name\": \"---\",\n    \"holder\": \"User name\",\n    \"agency\": \"---\",\n    \"type_account\": \"---\",\n    \"account\": \"---\",\n    \"document\": \"User document\",\n    \"status\": \"canceled\"\n}"}],"_postman_id":"ce7b9fac-053b-4b45-a7da-695a026d8fb3"},{"name":"WEBHOOK","id":"66c9e762-33d0-49d8-b609-5ba747092193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"Your-webhook-url-entered-in-the-admin-panel","urlObject":{"host":["Your-webhook-url-entered-in-the-admin-panel"],"query":[],"variable":[]}},"response":[{"id":"586f3596-9258-46d2-b875-0c961b618f22","name":"DEPOIST","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Content-Type","value":"text/plain","type":"text"}],"body":{"mode":"raw","raw":"Response sent when a deposit transaction is paid","options":{"raw":{"language":"text"}}},"url":""},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9999999,\n  \"fast_id\": 99999,\n  \"type_transaction\": \"deposit\",\n  \"order_id\": \"99999999\",\n  \"user_id\": \"999999\",\n  \"solicitation_date\": \"2022-04-22 16:26:38\",\n  \"paid_date\": \"2022-04-22 16:26:59\",\n  \"code_identify\": \"99999999\",\n  \"provider_reference\": 9999999,\n  \"amount_solicitation\": \"5.20\",\n  \"amount_confirmed\": \"5.20\",\n  \"comission\": \"0.2\",\n  \"status\": \"confirmed\"\n}"},{"id":"e9cc192e-cc60-4bdf-96e9-b1e067534141","name":"WITHDRAW","originalRequest":{"method":"POST","header":[{"key":"Token","value":"Your-Token","type":"text"},{"key":"Content-Type","value":"text/plain","type":"text"}],"body":{"mode":"raw","raw":"Response sent when a withdrawal transaction is paid","options":{"raw":{"language":"text"}}},"url":""},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9999999,\n  \"fast_id\": 99999,\n  \"type_transaction\": \"withdraw\",\n  \"order_id\": \"99999999\",\n  \"user_id\": \"999999\",\n  \"solicitation_date\": \"2022-04-22 16:26:38\",\n  \"paid_date\": \"2022-04-22 16:26:59\",\n  \"code_identify\": \"99999999\",\n  \"provider_reference\": 9999999,\n  \"amount_solicitation\": \"2.20\",\n  \"amount_confirmed\": \"2.20\",\n  \"comission\": \"0.2\",\n  \"status\": \"confirmed\"\n}"}],"_postman_id":"66c9e762-33d0-49d8-b609-5ba747092193"}]}