{"info":{"_postman_id":"e59dd783-3425-49b8-a796-dbda944292f2","name":"API PayMee 1.1","description":"<html><head></head><body><h1 id=\"overview\">Overview</h1>\n<p>The purpose of this documentation is to guide the developer on how to integrate with PayMee, describing the features and methods to be used, listing information to be sent and received as well as providing examples.</p>\n<p>The integration mechanism with PayMee is simple, so only intermediate knowledge in Web programming language, HTTP/HTTPS requests and JSON file manipulation are required to successfully deploy the PayMee solution.</p>\n<p>In this manual you will find reference to all operations available on the API REST of the PayMee API. These operations must be performed using specific keys (<strong>x-api-key</strong> and <strong>x-api-token</strong>) on the respective environment endpoints:</p>\n<p>Production Environment</p>\n<p><a href=\"https://api.paymee.com.br/\"><b>https://api.paymee.com.br/</b></a></p>\n<p>Sandbox Environment</p>\n<p><a href=\"https://apisandbox.paymee.com.br/\"><b>https://apisandbox.paymee.com.br/</b></a></p>\n<p>To perform an operation, combine the base URL of the environment with the resource (URI) of the desired operation and send it using the HTTP verb as described in the operation.</p>\n<h1 id=\"solution-features\">Solution features</h1>\n<p>The API solution of the PayMee platform was developed with REST technology, which is the market standard and also independent from the technology used by other parties. This way, it is possible to integrate it through the great majority of programming languages, such as: ASP, ASP. Net, Java, PHP, Ruby, Python, etc.</p>\n<p>Amongst other features, the attributes that stand out the most in the PayMee platform are:</p>\n<p><strong>No proprietary apps</strong>: it is not necessary to install any applications in the virtual shop environment, under no circumstances.</p>\n<p><strong>Simplicity</strong>: the protocol used is purely HTTPS.</p>\n<p><strong>Ease of testing</strong>: the PayMee platform offers a publicly accessible Sandbox environment, which allows the developer to create a <a href=\"https://apisandbox.paymee.com.br/register\">test account</a> making it easier and faster to start integration.</p>\n<p><strong>Credentials</strong>: handling of the customer’s credentials (<strong>x-api-key</strong> and <strong>x-api-token</strong>) traffics in the header of the HTTP request of the message.</p>\n<p><strong>Safety</strong>: the information exchange always takes place between the store's Server and PayMee's Server, that is, without the buyer’s browser in between.</p>\n<p><strong>Multiplatform</strong>: the integration is performed through the REST Web Service.</p>\n<h1 id=\"architecture\">Architecture</h1>\n<p>Integration is performed through Web Services. The model employed is quite simple: There are two URLs (endpoints) available: a specific one for production (real time operation), and a specific one for testing, called sandbox.</p>\n<p>These URLs receive the HTTP messages through the <strong>POST</strong>, <strong>GET</strong> or <strong>PUT</strong> methods. Each message type must be sent to a resource identified through the path.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>METHOD</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>POST</td>\n<td>The <strong>POST</strong> HTTP method is used in the creation of resources or sending information that will be processed. For example, creation of a transaction.</td>\n</tr>\n<tr>\n<td>PUT</td>\n<td>The <strong>PUT</strong> HTTP method is used to update an already existing resource. For example, refunding or cancelation of a previous transaction.</td>\n</tr>\n<tr>\n<td>GET</td>\n<td>The <strong>GET</strong> HTTP method is used for querying already existing resources. For example, transaction query.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"supported-payment-methdos\">Supported Payment Methdos</h2>\n<p>The current version of PayMee Webservice supports the following payment methods:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>BANK</th>\n<th>WIRE TRANSFER</th>\n<th>CASH</th>\n<th>CREDIT CARD</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>001 - BANCO DO BRASIL</td>\n<td>YES</td>\n<td>YES</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>237 - BANCO BRADESCO</td>\n<td>YES</td>\n<td>NO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>104 - BANCO CAIXA ECONOMICA FEDERAL</td>\n<td>YES</td>\n<td>NO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>YES</td>\n<td>YES</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>033 - BANCO SANTANDER BRASIL</td>\n<td>YES</td>\n<td>YES</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>212 - BANCO ORIGINAL</td>\n<td>YES</td>\n<td>NO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>077 - BANCO INTER</td>\n<td>YES</td>\n<td>NO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>218 - BANCO BS2</td>\n<td>YES</td>\n<td>NO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>PIX</td>\n<td>YES</td>\n<td>NO</td>\n<td>NO</td>\n</tr>\n<tr>\n<td>CREDIT CARD</td>\n<td>NO</td>\n<td>NO</td>\n<td>YES</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"sandbox-and-tools\">Sandbox and Tools</h1>\n<h2 id=\"about-sandbox\">About Sandbox</h2>\n<p>To facilitate testing during integration, PayMee offers a Sandbox environment, which is composed by two areas:</p>\n<ul>\n<li><p>Test account register</p>\n</li>\n<li><p>Transactional Endpoint</p>\n<ul>\n<li>Request: <a href=\"https://apisandbox.paymee.com.br\">https://apisandbox.paymee.com.br</a></li>\n</ul>\n</li>\n</ul>\n<p>Advantages of using the Sandbox<br>No affiliation is required to use PayMee's Sandbox. You just have to access the Sandbox Registration, create an account and, with it, receive a <strong>x-api-key</strong> and a <strong>x-api-token</strong>, which are the credentials required for the API methods.</p>\n<p>You can create your sandbox account here: <a href=\"https://apisandbox.paymee.com.br/register\"><b>https://apisandbox.paymee.com.br/register</b></a></p>\n<h1 id=\"webhook\">Webhook</h1>\n<h2 id=\"notification-post\">Notification Post</h2>\n<p>The Notification Post is sent based on a selection of events to be made in the PayMee registry.</p>\n<p>The events that can be notified are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>EVENT TYPE</th>\n<th>EVENT</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SALE</td>\n<td>PAID</td>\n</tr>\n<tr>\n<td>REVERSAL</td>\n<td>CREATE/PAID</td>\n</tr>\n</tbody>\n</table>\n</div><p>PayMee's send the notifications to the URL that you have configured using the HTTP protocol, by the POST method.</p>\n<p><strong>Authentication</strong></p>\n<p>Basic http auth.<br>The username is your <strong>x-api-key</strong> and password is your <strong>x-api-token</strong></p>\n<p><strong>Base64 Basic Auth reference:</strong></p>\n<p><strong>x-api-key</strong> = af38b751-30d7-4261-a9fb-ea30f6ece609</p>\n<p><strong>x-api-token</strong> = 28331f43-e2b3-4078-9502-5f656fb66cdf</p>\n<h3 id=\"transferwalk-in-notification-payment-confirmation\">TRANSFER/WALK-IN NOTIFICATION (PAYMENT CONFIRMATION)</h3>\n<p>Here is an example of a notification sent by PayMee (the lines have been broken for ease of reading):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /callback HTTP/1.1\nAuthorization: Basic YWYzOGI3NTEtMzBkNy00MjYxLWE5ZmItZWEzMGY2ZWNlNjA5OjI4MzMxZjQzLWUyYjMtNDA3OC05NTAyLTVmNjU2ZmI2NmNkZg==\nContent-Length:272\nContent-Type:application/json\n{\n  \"saleToken\": \"d59b39ce-bffd-3f6d-80c4-c376a242afd1\",\n  \"referenceCode\":\"0000000000014\",\n   \"currency\": \"BRL\",\n   \"amount\":100.00,\n   \"shopper\":{\n    \"id\": \"12911\",\n    \"firstName\":\"Teste\",\n    \"lastName\":\"Silva\",\n    \"email\":\"teste@teste.com.br\",\n    \"agency\": \"1234\",\n    \"account\": \"123456-0\"\n   },\n  \"date\":\"2017-07-28 10:48:56\",\n  \"newStatus\": \"PAID\"\n}\n\n</code></pre><p>A Payment Status URL must be registered, so that the notification POST is executed.</p>\n<p>The callback URL should return the HTTP status 200. Otherwise PayMee will try again in 60-seconds interval for a maximum of 5 (five) attempts.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PROPERTY</strong></th>\n<th><strong>TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>saleToken</td>\n<td>string</td>\n<td>transaction UUID</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>order identification</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>order amount</td>\n</tr>\n<tr>\n<td>shopper.firstName</td>\n<td>string</td>\n<td>shopper's first name</td>\n</tr>\n<tr>\n<td>shopper.firstName</td>\n<td>string</td>\n<td>shopper's last name</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>string</td>\n<td>shopper's email</td>\n</tr>\n<tr>\n<td>shopper.agency</td>\n<td>string</td>\n<td>shopper's agency</td>\n</tr>\n<tr>\n<td>shopper.account</td>\n<td>string</td>\n<td>shopper's account</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>payment date and time (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n<tr>\n<td>newStatus</td>\n<td>string</td>\n<td>payment PAID status</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"reversal-notification\">REVERSAL NOTIFICATION</h3>\n<p>Here is an example of a notification sent by PayMee (the lines have been broken for ease of reading):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /callback?reversing=true&amp;type=reversing HTTP/1.1\nAuthorization: Basic YWYzOGI3NTEtMzBkNy00MjYxLWE5ZmItZWEzMGY2ZWNlNjA5OjI4MzMxZjQzLWUyYjMtNDA3OC05NTAyLTVmNjU2ZmI2NmNkZg==\nContent-Length:272\nContent-Type:application/json\n{\n   \"id\": 611212,\n   \"uuid\": \"d19b39ce-bffd-3f6d-80c4-c376a242afd3\",\n   \"currency\": \"BRL\",\n   \"originalAmount\":100.00,\n   \"reversedAmount\":100.00,\n   \"status\": \"PENDING\",\n   \"bankDetails\":{\n    \"bank\": \"341 - BANCO ITAÚ-UNIBANCO S.A.\",\n    \"branch\":\"0000\",\n    \"account\":\"00000-0\"\n   },\n   \"sale\": {\n       \"id\": 611210,\n       \"uuid\": \"75e0b5e2-bc3f-4e75-9c52-24096f2e004d\"\n   }\n   \"creation\": \"2018-04-15 08:33:22\",\n   \"receipt\": null,\n   \"reason\": \"amount greater than total of sale\"\n}\n\n</code></pre><p>A Reversal Status URL must be registered (just like the payment notification) and you <strong>must enable</strong> this feature on your <a href=\"https://www2.paymee.com.br/merchants/API\">merchant panel</a>, so the notification POST is executed.</p>\n<p>This notification occurs two moments:</p>\n<ul>\n<li><p>when we cannot approve or identify the sale - In this case, we send the status attribute as <strong>PENDING</strong>;</p>\n</li>\n<li><p>when we revert the amount successfully to the customer - In this case, we send the status attribute as <strong>PAID</strong></p>\n</li>\n</ul>\n<p>The callback URL should return the HTTP status 200. Otherwise PayMee will try again in 60-seconds interval for a maximum of 5 (five) attempts.</p>\n<h2 id=\"response-1\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PROPERTY</strong></th>\n<th><strong>TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>number</td>\n<td>transaction id</td>\n</tr>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>transaction uuid</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>order currency</td>\n</tr>\n<tr>\n<td>originalAmount</td>\n<td>number</td>\n<td>original order amount</td>\n</tr>\n<tr>\n<td>reversedAmount</td>\n<td>number</td>\n<td>reversed amount</td>\n</tr>\n<tr>\n<td>bankDetails.bank</td>\n<td>string</td>\n<td>credit bank</td>\n</tr>\n<tr>\n<td>bankDetails.branch</td>\n<td>string</td>\n<td>credit branch</td>\n</tr>\n<tr>\n<td>bankDetails.account</td>\n<td>string</td>\n<td>credit account</td>\n</tr>\n<tr>\n<td>receipt</td>\n<td>string</td>\n<td>reversal receipt (under development)</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>reversal status (PENDING/PAID/CANCELLED)</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>string</td>\n<td>reversal reason</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>reversal date (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"refund-notification\">REFUND NOTIFICATION</h3>\n<p>Here is an example of a notification sent by PayMee (the lines have been broken for easy reading):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /callback?refund=true&amp;type=refund HTTP/1.1\nAuthorization: Basic YWYzOGI3NTEtMzBkNy00MjYxLWE5ZmItZWEzMGY2ZWNlNjA5OjI4MzMxZjQzLWUyYjMtNDA3OC05NTAyLTVmNjU2ZmI2NmNkZg==\nContent-Length:272\nContent-Type:application/json\n{\n   \"saleToken\": \"d19b39ce-bffd-3f6d-80c4-c376a242afd3\",\n   \"referenceCode\":\"0000000000014\",\n   \"currency\": \"BRL\",\n   \"originalAmount\":150.00,\n   \"reversedAmount\":50.00,\n   \"bankDetails\":{\n    \"bank\": \"341 - BANCO ITAÚ-UNIBANCO S.A.\",\n    \"branch\":\"0000\",\n    \"account\":\"00000-0\"\n   },\n   \"receipt\": \"null\",\n   \"status\": \"PAID\",\n   \"refund\": {\n       \"id\": 611211,\n       \"uuid\": fbebcd28-ae51-11e9-a2a3-2a2ae2dbcce4,\n       \"status\": \"PAID\",\n       \"amount\": 50.00,\n       \"creation\": \"2018-04-15 08:33:22\",\n       \"creditDate\": \"2018-04-16 10:48:56\"\n   }\n   \"reason\": \"amount greater than total of sale\",\n   \"date\":\"2018-04-16 10:48:56\"\n}\n\n</code></pre><p>A Refund Status URL must be registered (The same as the payment notification) and you <strong>must enable</strong> this feature on your <strong>merchant panel</strong>, so the notification POST is executed.</p>\n<p>This notification occurs when:</p>\n<ul>\n<li>Refund the amount successfully - In this case, we send the status attribute as <strong>PAID</strong></li>\n</ul>\n<p>The callback URL should return the HTTP status 200. Otherwise PayMee will try again in 60-seconds interval for a maximum of 5 (five) attempts.</p>\n<h2 id=\"response-2\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PROPERTY</strong></th>\n<th><strong>TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>saleToken</td>\n<td>string</td>\n<td>transaction UUID</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>order identification</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>order currency</td>\n</tr>\n<tr>\n<td>originalAmount</td>\n<td>number</td>\n<td>original order amount</td>\n</tr>\n<tr>\n<td>amountRefunded</td>\n<td>number</td>\n<td>refund amount</td>\n</tr>\n<tr>\n<td>bankDetails.bank</td>\n<td>string</td>\n<td>credit bank</td>\n</tr>\n<tr>\n<td>bankDetails.branch</td>\n<td>string</td>\n<td>credit branch</td>\n</tr>\n<tr>\n<td>bankDetails.account</td>\n<td>string</td>\n<td>credit account</td>\n</tr>\n<tr>\n<td>receipt</td>\n<td>string</td>\n<td>refund receipt (under development)</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>refund status (PENDING/PAID/CANCELLED)</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>string</td>\n<td>refund reason</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>refund date (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"payout-notification\">PAYOUT NOTIFICATION</h3>\n<p>Here is a success example of a notification sent by PayMee (the lines have been broken for ease of reading):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /callback?type=payout HTTP/1.1\nAuthorization: Basic YWYzOGI3NTEtMzBkNy00MjYxLWE5ZmItZWEzMGY2ZWNlNjA5OjI4MzMxZjQzLWUyYjMtNDA3OC05NTAyLTVmNjU2ZmI2NmNkZg==\nContent-Length:272\nContent-Type:application/json\n{\n   \"success\": true,\n   \"message\": \"success\"\n   \"id\": 611212,\n   \"uuid\": \"d19b39ce-bffd-3f6d-80c4-c376a242afd3\",\n   \"currency\": \"BRL\",\n   \"amount\":100.00,\n   \"status\": \"PAID\",\n   \"referenceCode\": \"XPADOA\",\n   \"bankDetails\":{\n    \"bank\": \"341 - BANCO ITAÚ-UNIBANCO S.A.\",\n    \"branch\":\"0000\",\n    \"account\":\"00000-0\"\n   },\n   \"creation\": \"2018-04-15 08:33:22\",\n   \"receipt\": \"https://receipts.paymee.com.br/transaction/23e49aa1f7f193395a7f30900f8aeb40a65a9d7dd85e8d05456847b800713546/d19b39ce-bffd-3f6d-80c4-c376a242afd3\",\n}\n\n</code></pre><p>Here is a error example of a notification sent by PayMee (the lines have been broken for ease of reading):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /callback?payout=true HTTP/1.1\nAuthorization: Basic YWYzOGI3NTEtMzBkNy00MjYxLWE5ZmItZWEzMGY2ZWNlNjA5OjI4MzMxZjQzLWUyYjMtNDA3OC05NTAyLTVmNjU2ZmI2NmNkZg==\nContent-Length:272\nContent-Type:application/json\n{\n   \"success\": false,\n   \"message\": \"Os dados informados não são validos\",\n   \"error_code\": \"PE0001\"\n   \"id\": 611212,\n   \"uuid\": \"d19b39ce-bffd-3f6d-80c4-c376a242afd3\",\n   \"currency\": \"BRL\",\n   \"amount\":100.00,\n   \"status\": \"PENDING\",\n   \"referenceCode\": \"XPADOA\",\n   \"bankDetails\":{\n    \"bank\": \"341 - BANCO ITAÚ-UNIBANCO S.A.\",\n    \"branch\":\"0000\",\n    \"account\":\"00000-0\"\n   },\n   \"creation\": \"2018-04-15 08:33:22\",\n   \"receipt\": \"https://receipts.paymee.com.br/transaction/23e49aa1f7f193395a7f30900f8aeb40a65a9d7dd85e8d05456847b800713546/d19b39ce-bffd-3f6d-80c4-c376a242afd3\",\n}\n\n</code></pre><p>A webhook URL must be registered (just like the payment notification) and you <strong>must enable</strong> this feature on your <a href=\"https://www2.paymee.com.br/merchants/API\">merchant panel</a>, so the notification POST is executed.</p>\n<h2 id=\"response-3\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PROPERTY</strong></th>\n<th><strong>TYPE</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>success</td>\n<td>boolean</td>\n<td>payments status flag</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>return message</td>\n</tr>\n<tr>\n<td>error_code</td>\n<td>string</td>\n<td>response error code</td>\n</tr>\n<tr>\n<td>id</td>\n<td>number</td>\n<td>PayMee's transaction id</td>\n</tr>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>PayMee's transaction uuid</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>transaction currency</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>transaction amount</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>refund status (PENDING/PAID/CANCELLED)</td>\n</tr>\n<tr>\n<td>bankDetails.bank</td>\n<td>string</td>\n<td>credit bank</td>\n</tr>\n<tr>\n<td>bankDetails.branch</td>\n<td>string</td>\n<td>credit branch</td>\n</tr>\n<tr>\n<td>bankDetails.account</td>\n<td>string</td>\n<td>credit account</td>\n</tr>\n<tr>\n<td>receipt</td>\n<td>string</td>\n<td>payment receipt</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>transaction date (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n<tr>\n<td>receiptDate</td>\n<td>string</td>\n<td>receipt date (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-codes\">Error codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>PROPERTY</strong></th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PE0001</td>\n<td>Os dados bancarios fornecidos não validos</td>\n</tr>\n<tr>\n<td>PE0002</td>\n<td>A titularidade da conta não pertence ao documento informado</td>\n</tr>\n<tr>\n<td>PE0003</td>\n<td>A conta nao aceita movimentacoes - (MOTIVOS)</td>\n</tr>\n<tr>\n<td>PE0004</td>\n<td>OUTROS - (MOTIVOS)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"resources\">Resources</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Solution features","slug":"solution-features"},{"content":"Architecture","slug":"architecture"},{"content":"Sandbox and Tools","slug":"sandbox-and-tools"},{"content":"Webhook","slug":"webhook"},{"content":"Resources","slug":"resources"}],"owner":"3199663","collectionId":"e59dd783-3425-49b8-a796-dbda944292f2","publishedId":"RWM6zDGc","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-07-04T17:59:24.000Z"},"item":[{"name":"Checkouts","item":[{"name":"loans","item":[{"name":"create","id":"8dee9d3c-6c5d-42f3-aafb-14e91d2184c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"proposal_id\": \"abc1234\",\n    \"reference_code\": \"ref01234\",\n    \"max_age\": 60,\n    \"discriminator\": \"John's transaction\",\n    \"final_amount\": 10.00,\n    \"customer\": {\n        \"name\": \"John Doe\",\n        \"birth\": \"1970-01-01\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile_number\": \"1234567890\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"12345678901\"\n        },\n        \"address\": {\n            \"zipcode\": \"12345678\",\n            \"street\": \"Main Street\",\n            \"number\": \"123\",\n            \"complement\": \"Apt 4\",\n            \"neighborhood\": \"Downtown\",\n            \"city\": \"City\",\n            \"state\": \"ST\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/create","urlObject":{"protocol":"https","path":["v1.1","loans","create"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"7e77784d-4d8a-4b9c-bfbb-8833d2910afe","name":"success response","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"proposal_id\": \"abc1234\",\n    \"reference_code\": \"ref01234\",\n    \"max_age\": 60,\n    \"discriminator\": \"John's transaction\",\n    \"final_amount\": 10.00,\n    \"customer\": {\n        \"name\": \"John Doe\",\n        \"birth\": \"1970-01-01\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile_number\": \"1234567890\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"12345678901\"\n        },\n        \"address\": {\n            \"zipcode\": \"12345678\",\n            \"street\": \"Main Street\",\n            \"number\": \"123\",\n            \"complement\": \"Apt 4\",\n            \"neighborhood\": \"Downtown\",\n            \"city\": \"City\",\n            \"state\": \"ST\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 17 Mar 2021 13:44:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 43863,\n    \"uuid\": \"d7113995-e683-35b6-bf4f-7846ebc63819\",\n    \"type\": \"SALE\",\n    \"situation\": \"PENDING\",\n    \"currency\": \"BRL\",\n    \"amount\": 800.00,\n    \"shipping\": 0,\n    \"discounts\": 0,\n    \"total\": 800.00,\n    \"appliedRate\": 0,\n    \"referenceCode\": \"5077AXC\",\n    \"creation\": \"2021-03-17 10:43:49\",\n    \"maxAge\": \"2021-03-19 02:40:49\",\n    \"shopper\": {\n        \"name\": \"FOO BAR\",\n        \"email\": \"ti@paymee.com.br\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"00000000000\"\n        },\n        \"bankDetails\": {},\n        \"phone\": {\n            \"type\": \"MOBILE\",\n            \"number\": \"+5511999999999\"\n        }\n    },\n    \"chosen_term\": {\n        \"label\": \"03x\",\n        \"times\": 3,\n        \"down_payment_percentage\": 0,\n        \"down_payment\": false,\n        \"first_installment_due_date\": \"1900-01-01\",\n        \"down_payment_value\": 0,\n        \"cet_pm\": 6.3500,\n        \"cet_pa\": 109.33900,\n        \"monthly_interest_rate\": 2.3900,\n        \"interest_rate\": 7.1700,\n        \"total_iof\": 14.42,\n        \"amount_installment\": 1060,\n        \"amount\": 800.0,\n        \"final_amount\": 845.31,\n        \"quotas\": 281.77,\n        \"first_due_date\": \"2025-01-05\",\n        \"grace_period\": 7,\n        \"proposal_id\": \"abcd12345\"\n    },\n    \"onboarding_url\": \"https://www.example.com/onboarding?onboardingToken=AAAA00000\"\n}"},{"id":"11344408-99d1-4466-89f4-28ec0bdc04a1","name":"invalid proposal ID","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"proposal_id\": \"abc1234\",\n    \"reference_code\": \"ref01234\",\n    \"max_age\": 60,\n    \"discriminator\": \"John's transaction\",\n    \"final_amount\": 10.00,\n    \"customer\": {\n        \"name\": \"John Doe\",\n        \"birth\": \"1970-01-01\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile_number\": \"1234567890\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"12345678901\"\n        },\n        \"address\": {\n            \"zipcode\": \"12345678\",\n            \"street\": \"Main Street\",\n            \"number\": \"123\",\n            \"complement\": \"Apt 4\",\n            \"neighborhood\": \"Downtown\",\n            \"city\": \"City\",\n            \"state\": \"ST\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/create"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 16 Mar 2021 21:42:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"invalid proposal id\",\n            \"message\": \"invalid proposal id\"\n        }\n    ]\n}"},{"id":"96a89f8a-dea5-4700-ae2b-59322b5212e1","name":"validation errors","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"proposal_id\": \"abc1234\",\n    \"reference_code\": \"ref01234\",\n    \"max_age\": 60,\n    \"discriminator\": \"John's transaction\",\n    \"final_amount\": 10.00,\n    \"customer\": {\n        \"name\": \"John Doe\",\n        \"birth\": \"1970-01-01\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile_number\": \"1234567890\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"12345678901\"\n        },\n        \"address\": {\n            \"zipcode\": \"12345678\",\n            \"street\": \"Main Street\",\n            \"number\": \"123\",\n            \"complement\": \"Apt 4\",\n            \"neighborhood\": \"Downtown\",\n            \"city\": \"City\",\n            \"state\": \"ST\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 16 Mar 2021 21:49:39 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"terms\",\n            \"message\": \"must be between 1 and 12\"\n        }\n    ],\n    \"main_error_message\": \"must be between 1 and 12\"\n}"},{"id":"cbea6dc8-770c-4a1f-8ee2-8bd070ee6591","name":"proposal not accepted","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"proposal_id\": \"abc1234\",\n    \"reference_code\": \"ref01234\",\n    \"max_age\": 60,\n    \"discriminator\": \"John's transaction\",\n    \"final_amount\": 10.00,\n    \"customer\": {\n        \"name\": \"John Doe\",\n        \"birth\": \"1970-01-01\",\n        \"email\": \"john.doe@example.com\",\n        \"mobile_number\": \"1234567890\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"12345678901\"\n        },\n        \"address\": {\n            \"zipcode\": \"12345678\",\n            \"street\": \"Main Street\",\n            \"number\": \"123\",\n            \"complement\": \"Apt 4\",\n            \"neighborhood\": \"Downtown\",\n            \"city\": \"City\",\n            \"state\": \"ST\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 16 Mar 2021 21:49:39 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"proposal not accept\",\n    \"proposalAccepted\": false\n}"}],"_postman_id":"8dee9d3c-6c5d-42f3-aafb-14e91d2184c2"},{"name":"simulation","id":"df7e2ce4-bf60-4605-b287-cbdc17104989","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"customer\": {\n    \"name\": \"John Doe\",\n    \"birth\": \"1980-01-01\",\n    \"document\": {\n      \"type\": \"CPF\",\n      \"number\": \"12345678901\"\n    },\n    \"address\": {\n      \"zipcode\": \"12345678\",\n      \"street\": \"Main Street\",\n      \"number\": \"123\",\n      \"complement\": \"Apt 4\",\n      \"city\": \"City\",\n      \"state\": \"ST\"\n    },\n    \"income\": 5000.00,\n    \"email\": \"john.doe@example.com\",\n    \"phone\": \"1234567890\"\n  },\n  \"amount\": 10000.00,\n  \"times\": 12,\n  \"products\": [\n    {\n      \"id\": \"prod1\",\n      \"name\": \"Product 1\",\n      \"value\": 5000.00,\n      \"amount\": 2\n    }\n  ]\n}"},"url":"https://{{env}}.paymee.com.br/v1.1/loans/simulation","urlObject":{"protocol":"https","path":["v1.1","loans","simulation"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"da8769fc-0db2-47ad-9118-ee47fae6f556","name":"success response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customer\": {\n    \"name\": \"John Doe\",\n    \"birth\": \"1980-01-01\",\n    \"document\": {\n      \"type\": \"CPF\",\n      \"number\": \"12345678901\"\n    },\n    \"address\": {\n      \"zipcode\": \"12345678\",\n      \"street\": \"Main Street\",\n      \"number\": \"123\",\n      \"complement\": \"Apt 4\",\n      \"city\": \"City\",\n      \"state\": \"ST\"\n    },\n    \"income\": 5000.00,\n    \"email\": \"john.doe@example.com\",\n    \"phone\": \"1234567890\"\n  },\n  \"amount\": 10000.00,\n  \"times\": 12,\n  \"products\": [\n    {\n      \"id\": \"prod1\",\n      \"name\": \"Product 1\",\n      \"value\": 5000.00,\n      \"amount\": 2\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/simulation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"hasProposal\": true,\n    \"proposals\": [\n        {\n            \"proposal_id\": \"abc123\",\n            \"partner\": \"Bank A\",\n            \"product\": \"Loan Product\",\n            \"terms\": [\n                {\n                    \"label\": \"Standard Term\",\n                    \"times\": 12,\n                    \"down_payment\": false,\n                    \"down_payment_value\": 0,\n                    \"monthly_interest_rate\": 0.02,\n                    \"interest_rate\": 0.24,\n                    \"total_iof\": 50,\n                    \"amount\": 10000,\n                    \"final_amount\": 10500,\n                    \"quotas\": 12,\n                    \"first_due_date\": \"2024-06-01\",\n                    \"grace_period\": 0,\n                    \"proposal_id\": \"abc123\"\n                }\n            ],\n            \"max_term_months\": 12,\n            \"monthly_interest_rate\": 0.02,\n            \"amount\": 10000\n        }\n    ]\n}"},{"id":"e84a9881-e764-4cb6-afc8-bd95a7e3163a","name":"no proposals were found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customer\": {\n    \"name\": \"John Doe\",\n    \"birth\": \"1980-01-01\",\n    \"document\": {\n      \"type\": \"CPF\",\n      \"number\": \"12345678901\"\n    },\n    \"address\": {\n      \"zipcode\": \"12345678\",\n      \"street\": \"Main Street\",\n      \"number\": \"123\",\n      \"complement\": \"Apt 4\",\n      \"city\": \"City\",\n      \"state\": \"ST\"\n    },\n    \"income\": 5000.00,\n    \"email\": \"john.doe@example.com\",\n    \"phone\": \"1234567890\"\n  },\n  \"amount\": 10000.00,\n  \"times\": 12,\n  \"products\": [\n    {\n      \"id\": \"prod1\",\n      \"name\": \"Product 1\",\n      \"value\": 5000.00,\n      \"amount\": 2\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/simulation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"no proposals were found\",\n    \"hasProposal\": false\n}"},{"id":"a224ac1b-3e9b-4125-986a-022daa608496","name":"validation errors","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customer\": {\n    \"name\": \"John Doe\",\n    \"birth\": \"1980-01-01\",\n    \"document\": {\n      \"type\": \"CPF\",\n      \"number\": \"12345678901\"\n    },\n    \"address\": {\n      \"zipcode\": \"12345678\",\n      \"street\": \"Main Street\",\n      \"number\": \"123\",\n      \"complement\": \"Apt 4\",\n      \"city\": \"City\",\n      \"state\": \"ST\"\n    },\n    \"income\": 5000.00,\n    \"email\": \"john.doe@example.com\",\n    \"phone\": \"1234567890\"\n  },\n  \"amount\": 10000.00,\n  \"times\": 12,\n  \"products\": [\n    {\n      \"id\": \"prod1\",\n      \"name\": \"Product 1\",\n      \"value\": 5000.00,\n      \"amount\": 2\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/loans/simulation"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"VALIDATION_FAILURE\",\n    \"message\": \"Validation failed\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"customer.name\",\n            \"message\": \"must not be empty\"\n        }\n    ],\n    \"main_error_message\": \"must not be empty\"\n}"}],"_postman_id":"df7e2ce4-bf60-4605-b287-cbdc17104989"}],"id":"271d9f16-95a5-4813-88f5-60e0dad4682f","_postman_id":"271d9f16-95a5-4813-88f5-60e0dad4682f","description":""},{"name":"semi-transparent wire-transfer, pix and credit card and openbanking checkout","id":"64b8343e-0c34-42fa-b14e-0888034eace4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"019922111121276112\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"INITIATOR\",\n  \"brand_id\": \"b6bd522b-5fe2-427c-880e-6bb8e9c71672\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"47737889841\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent","description":"<h1 id=\"generate-a-semi-transparent-checkout-request\">Generate a semi-transparent checkout request</h1>\n<p>To generate a transaction throught PayMee, it is necessary to send a request using the POST method to the <strong>checkout</strong> resource, as shown. This example covers the minimum of fields required to be submitted for authorization.</p>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>3</td>\n<td>true</td>\n<td>ISO-4217</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>true</td>\n<td>Order Amount</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>Unique order identifier</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>number</td>\n<td>43200</td>\n<td>false</td>\n<td>Sale max age in minutes</td>\n</tr>\n<tr>\n<td>brand_id</td>\n<td>string(uuid)</td>\n<td>36</td>\n<td>true</td>\n<td>true if selected INITIATOR on paymentMethod</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>chosen bank</td>\n</tr>\n<tr>\n<td>callbackURL</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>callback URL</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>internal shopper identifier</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>string</td>\n<td>255</td>\n<td>true</td>\n<td>shopper's name</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>shopper Email</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>string</td>\n<td>10</td>\n<td>true</td>\n<td>shopper's document type (CPF, CNPJ, OTHER)</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>shopper's document number</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>string</td>\n<td>8</td>\n<td>true</td>\n<td>shopper's branch</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>shopper's account</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>string</td>\n<td>10</td>\n<td>true</td>\n<td>shopper's phone type (MOBILE, HOME, WORK, OTHER)</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>shopper's phone number</td>\n</tr>\n<tr>\n<td>observation</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>any Internal reference</td>\n</tr>\n<tr>\n<td>recurrence</td>\n<td>number</td>\n<td>999</td>\n<td>false</td>\n<td>recurrence in months</td>\n</tr>\n<tr>\n<td>redirectURL</td>\n<td>string (url)</td>\n<td>255</td>\n<td>false</td>\n<td>confirmation redirect URL</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-payment-methods\">available payment methods</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>BANK</th>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>001 - BANCO DO BRASIL</td>\n<td>BB_TRANSFER</td>\n<td>Register chosen bank (Banco do Brasil) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>001 - BANCO DO BRASIL</td>\n<td>BB_DI</td>\n<td>Register chosen bank (Banco do Brasil) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>237 - BRADESCO</td>\n<td>BRADESCO_TRANSFER</td>\n<td>Register chosen bank (Bradesco) and payment type (Cash)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_TRANSFER_GENERIC</td>\n<td>Register chosen bank (Itaú) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_TRANSFER_PF</td>\n<td>Register chosen bank (Itaú) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_TRANSFER_PJ</td>\n<td>Register chosen bank (Itaú) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_DI</td>\n<td>Register chosen bank (Itaú) and payment type (Cash)</td>\n</tr>\n<tr>\n<td>104 - BANCO CAIXA ECONOMICA FEDERAL</td>\n<td>CEF_TRANSFER</td>\n<td>Register chosen bank (Caixa) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>202 - BANCO ORIGINAL</td>\n<td>ORIGINAL_TRANSFER</td>\n<td>Register chosen bank (Original) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>033 - SANTANDER BRASIL</td>\n<td>SANTANDER_TRANSFER</td>\n<td>Register chosen bank (Santander) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>033 - SANTANDER BRASIL</td>\n<td>SANTANDER_DI</td>\n<td>Register chosen bank (Santander) and payment type (Cash)</td>\n</tr>\n<tr>\n<td>077 - BANCO INTER</td>\n<td>INTER_TRANSFER</td>\n<td>Register chosen bank (Inter) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>077 - BANCO BS2</td>\n<td>BS2_TRANSFER</td>\n<td>Register chosen bank (BS2) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>OUTROS BANCOS</td>\n<td>OUTROS_BANCOS</td>\n<td>Register chosen bank (OUTROS) and payment type (TED)</td>\n</tr>\n<tr>\n<td>PIX</td>\n<td>PIX</td>\n<td>Register a PIX request</td>\n</tr>\n<tr>\n<td>CREDIT CARD</td>\n<td>CREDIT_CARD</td>\n<td>Credit Card Method</td>\n</tr>\n<tr>\n<td>OPENBANKING INITIATOR</td>\n<td>INITIATOR</td>\n<td>openbanking initiator</td>\n</tr>\n<tr>\n<td>VEPUY</td>\n<td>VEF VEPUY</td>\n<td>VePuy - Venezuela</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-document-type-values\">available document type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CPF</td>\n</tr>\n<tr>\n<td>CNPJ</td>\n</tr>\n<tr>\n<td>OTHER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-phone-type-values\">available phone type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MOBILE</td>\n</tr>\n<tr>\n<td>HOME</td>\n</tr>\n<tr>\n<td>WORK</td>\n</tr>\n<tr>\n<td>OTHER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-non-pix-checkout\">Response for non-pix checkout</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>chosen bank method</td>\n</tr>\n<tr>\n<td>response.instructions.name</td>\n<td>string</td>\n<td>chosen bank name</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>chosen bank description</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_branch</td>\n<td>string</td>\n<td>branch number to pay</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_op</td>\n<td>string</td>\n<td>operation code (only CEF)</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_account</td>\n<td>string</td>\n<td>account number and verifing digit to pay</td>\n</tr>\n<tr>\n<td>response.instructions.need_identification</td>\n<td>boolean</td>\n<td>tells if has identification code when pay</td>\n</tr>\n<tr>\n<td>response.instructions.identification</td>\n<td>string</td>\n<td>identification code to pay</td>\n</tr>\n<tr>\n<td>response.instructions.steps</td>\n<td>array[string]</td>\n<td>simple steps description to display</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.desktop</td>\n<td>string</td>\n<td>default bank website URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.ios</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.android</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.windows_phone</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-pix-checkout\">Response for Pix checkout</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>pix chosen option</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>pix chosen description</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.url</td>\n<td>string</td>\n<td>qrcode for payment url</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.base64</td>\n<td>string</td>\n<td>qrcode in base64 encode</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.plain</td>\n<td>string</td>\n<td>qrcode in plain text</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.keys.email</td>\n<td>string</td>\n<td>pix beneficiary key - email option</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.keys.document</td>\n<td>string</td>\n<td>pix beneficiary key - document option</td>\n</tr>\n<tr>\n<td>response.instructions.steps.qrcode</td>\n<td>array[string]</td>\n<td>minimal steps for qrcode description to display</td>\n</tr>\n<tr>\n<td>response.instructions.steps.key</td>\n<td>array[string]</td>\n<td>minimal steps for key description to display</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-openbanking-initiator\">Response for OpenBanking Initiator</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>pix chosen option</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>pix chosen description</td>\n</tr>\n<tr>\n<td>response.instructions.payment_id</td>\n<td>string</td>\n<td>openbanking payment id reference</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_url</td>\n<td>string</td>\n<td>redirect URL for openbanking authentication</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status-values\">available status values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>1001</td>\n<td>\"duplicated referenceCode\"</td>\n<td>the reference code must be unique</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-validation-vailure-responses\">available validation vailure responses</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>error</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.banned</td>\n<td>banned shopper</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.not_allowed</td>\n<td>document type not allowed</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.duplicated</td>\n<td>duplicated reference code</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>paymentMethod.invalid</td>\n<td>inform a valid payment method</td>\n</tr>\n<tr>\n<td>shopper.bankDetails</td>\n<td>shopper.bankDetails.isNull</td>\n<td>please inform a valid bank details</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>shopper.phone.number.isNull</td>\n<td>please inform a valid phone number</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.invalidDocument</td>\n<td>the shopper document XXXXXXXXXXX is not valid</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.limit</td>\n<td>the amount exceeded daily limit</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>amount.min</td>\n<td>must be greater than 0.01</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.lenght</td>\n<td>referenceCode must have length 1 up to 100</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>maxAge.limit</td>\n<td>maxAge must be at least 1 and up to 4320 minutes</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>paymentMethod.is_null</td>\n<td>paymentMethod cannot be null</td>\n</tr>\n<tr>\n<td>shopper</td>\n<td>shopper.is_null</td>\n<td>shopper cannot be null</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>shopper.id.max_lenght</td>\n<td>shopper id must have up to 255 characters</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>shopper.name.length</td>\n<td>shopper name must have up to 255 characters</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>shopper.name.is_null</td>\n<td>shopper name cannot be null</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>shopper.email.length</td>\n<td>please fill a valid email</td>\n</tr>\n<tr>\n<td>shopper.document</td>\n<td>shopper.document.is_null</td>\n<td>shopper document cannot be null</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>shopper.document.type.invalid</td>\n<td>please inform a valid document type</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.invalid</td>\n<td>lenght must be between 2 and 25</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>shopper.bankDetails.branch.invalid</td>\n<td>please inform a valid branch</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>shopper.bankDetails.account.invalid</td>\n<td>please inform a valid bank account</td>\n</tr>\n<tr>\n<td>shopper.phone</td>\n<td>shopper.phone.is_null</td>\n<td>shopper.phone cannot be null</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>shopper.phone.type.invalid</td>\n<td>please inform a valid phone type</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>shopper.phone.number.invalid</td>\n<td>please inform a valid phone number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","checkout","transparent"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"c2d5f25d-93eb-423f-962c-89e122c9498f","name":"success response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"01992211212765\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"SANTANDER_TRANSFER\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 17:53:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":0,\"message\":\"success\",\"response\":{\"id\":2423, \"referenceCode\":\"01992211212765\",\"amount\":11.00,\"uuid\":\"81d588cb-4fec-3088-960d-6881b8749247\",\"shopper\":{\"id\":\"24391203\",\"name\":\"JHON DOE\",\"email\":\"foo@bar.com\",\"document\":{\"type\":\"CPF\",\"number\":\"00000000000\"},\"bankDetails\":{\"branch\":\"0001\",\"account\":\"00011-0\"},\"phone\":{\"type\":\"MOBILE\",\"number\":\"11999990000\"}},\"instructions\":{\"chosen\":\"SANTANDER_TRANSFER\",\"name\":\"Santander Brasil\",\"label\":\"transferência entre contas Santander Brasil\",\"beneficiary_branch\":\"0386\",\"beneficiary_account\":\"13002973-8\",\"beneficiary_name\":\"PayMee Brasil Serviços de Pagamentos S.A\",\"need_identification\":false,\"identification\":\"2423\",\"steps\":[\"ATENÇÃO: Não aceitamos pagamentos de contas de terceiros, pague o valor exato!\",\"Acesse o APP ou o site do Banco Santander\",\"No menu de serviços, selecione 'Transferência entre Contas Santander'\",\"Informe a agência: 0386 e conta-corrente: 13002973-8\",\"Confirme o nome do favorecido:  PayMee Brasil Serviços de Pagamentos S.A.\",\"Efetue o pagamento no valor exato de R$ 11,00.\"],\"redirect_urls\":{\"desktop\":\"https://www.santander.com.br/\",\"ios\":\"https://itunes.apple.com/br/app/santander-brasil/id613365711?mt=8\",\"android\":\"https://play.google.com/store/apps/details?id=com.santander.app&hl=pt_BR\",\"windows_phone\":\"https://www.microsoft.com/pt-br/store/p/minha-conta-pf/9wzdncrdc5g4\"}}}}"},{"id":"c301141a-8d22-4d39-9adf-e53a51ebc2e9","name":"duplicated referenceCode response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"x-api-key"},{"key":"x-api-token","value":"x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"01992211212765\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"SANTANDER_TRANSFER\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:34:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"field\":\"referenceCode\",\"message\":\"referenceCode duplicado para o comércio.\"}]}"},{"id":"90c4a662-1321-40ed-bfaf-e95d1e4ca2aa","name":"validation failure response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"x-api-key"},{"key":"x-api-token","value":"x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"01992211212765\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"SANTANDER_TRANSFER\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    //\"id\": \"24391203\",\n    //\"email\": \"foo@bar.com\",\n    //\"name\": \"JHON DOE\",\n    \"document\": {\n    \t//\"type\": \"CPF\",\n    \t//\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t//\"type\": \"MOBILE\",\n    \t//\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t//\"branch\": \"0001\",\n    \t//\"account\": \"00011-0\"\n    }\n  }\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:35:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":12,\"errors\":[{\"field\":\"shopper.name\",\"message\":\"may not be empty\"},{\"field\":\"shopper.bankDetails.branch\",\"message\":\"may not be empty\"},{\"field\":\"shopper.document.type\",\"message\":\"may not be null\"},{\"field\":\"shopper.phone.number\",\"message\":\"may not be null\"},{\"field\":\"shopper.email\",\"message\":\"may not be empty\"},{\"field\":\"shopper.document.number\",\"message\":\"may not be null\"},{\"field\":\"shopper.email\",\"message\":\"may not be null\"},{\"field\":\"shopper.bankDetails.branch\",\"message\":\"may not be null\"},{\"field\":\"shopper.bankDetails.account\",\"message\":\"may not be empty\"},{\"field\":\"shopper.phone.type\",\"message\":\"may not be null\"},{\"field\":\"shopper.bankDetails.account\",\"message\":\"may not be null\"},{\"field\":\"referenceCode\",\"message\":\"referenceCode duplicado para o comércio.\"}]}"},{"id":"35c6dadf-0731-4e7f-842a-854645cf4692","name":"unauthorized response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"wrong-x-api-key"},{"key":"x-api-token","value":"wrong-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"01992211212765\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"SANTANDER_TRANSFER\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    //\"id\": \"24391203\",\n    //\"email\": \"foo@bar.com\",\n    //\"name\": \"JHON DOE\",\n    \"document\": {\n    \t//\"type\": \"CPF\",\n    \t//\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t//\"type\": \"MOBILE\",\n    \t//\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t//\"branch\": \"0001\",\n    \t//\"account\": \"00011-0\"\n    }\n  }\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:36:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"message\":\"Access Denied\",\"error\":\"Forbidden\"}]}"},{"id":"f5590d29-3e82-415d-8507-cd8ea1c4d8b1","name":"semi-transparent checkout (outros bancos example)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"019922112127615\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"OUTROS_BANCOS\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}"},"url":"https://{{env}}.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Jul 2020 19:52:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"referenceCode\": \"019922112127615\",\n        \"amount\": 11,\n        \"id\": 27736,\n        \"saleCode\": \"00027736\",\n        \"uuid\": \"56087f1f-9944-3d52-ac3d-50f23ad74ec2\",\n        \"shopper\": {\n            \"id\": \"24391203\",\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"bankDetails\": {\n                \"branch\": \"0001\",\n                \"account\": \"00011-0\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        },\n        \"instructions\": {\n            \"chosen\": \"OUTROS_BANCOS\",\n            \"name\": \"TED para Santander\",\n            \"label\": \"TED para Santander Brasil S.A\",\n            \"beneficiary_branch\": \"0001\",\n            \"beneficiary_op\": \"\",\n            \"beneficiary_account\": \"13000000-1\",\n            \"beneficiary_name\": \"PayMee Brasil Serviços de Pagamentos S.A\",\n            \"beneficiary_document\": \"28.683.892/0001-91\",\n            \"need_identification\": false,\n            \"identification\": \"50027\",\n            \"steps\": [\n                \"Acesse o site ou APP do seu banco\",\n                \"No menu de serviços, selecione 'Transferências > TED'\",\n                \"Informe a agência: 0001 e conta-corrente: 13000000-1\",\n                \"Informe o nosso documento: 28.683.892/0001-91\",\n                \"Informe o nosso nome (caso necessário): PayMee Brasil\",\n                \"Efetue o pagamento no valor exato de R$ 11,00.\",\n                \"PRONTO! O pagamento do seu pedido será confirmado ao comércio XXXXX\"\n            ],\n            \"redirect_urls\": {\n                \"desktop\": \"https://www.febraban.org.br/associados/utilitarios/bancos.asp\",\n                \"ios\": \"https://www.febraban.org.br/associados/utilitarios/bancos.asp\",\n                \"android\": \"https://portal.febraban.org.br/pagina/3164/12/pt-br/associados\",\n                \"windows_phone\": null\n            }\n        }\n    }\n}"},{"id":"e714b113-0371-45fa-bc67-6336488ddae7","name":"pix-success-response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-key"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"0199221121276150\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"PIX\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 20 Oct 2020 21:00:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"referenceCode\": \"0199221121276150\",\n        \"amount\": 11,\n        \"id\": 33200,\n        \"saleCode\": \"00033200\",\n        \"uuid\": \"14fe1d3d-26f9-3790-8161-df091e8585da\",\n        \"shopper\": {\n            \"id\": \"24391203\",\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        },\n        \"instructions\": {\n            \"chosen\": \"PIX\",\n            \"name\": \"PIX\",\n            \"label\": \"Transferência via PIX\",\n            \"qrCode\": {\n                \"url\": \"https://apisandbox.paymee.com.br/payments/pix/qrcode/14fe1d3d-26f9-3790-8161-df091e8585da\",\n                \"base64\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAIAAAAHjs1qAAAEvklEQVR42u3ayXXDMBBEQeWftJ2ATzIw3QDqn7VwqeFhHj8/0jN9XALhLuEu4S7hLuEu4S7hLuEu4S7hLuEu3CXcJdwl3CXcJdwl3CXcJdwl3CXchbuEu4T7Xz8X7bsj3Hhxo+ee/Z3Je4o77rjjjjvuuOOOO+6444477rg3YPruVq361uQVmxz+tnuKO+6444477rjjjjvuuOOOO+647ya47zZkV5zZ85o85sl7ijvuuOOOO+6444477rjjjjvuuHdemraL3ong9EcY7rjjjjvuuOOOO+6444477rjjfu6l2XfMk6vSfUeIO+6444477rjjjjvuuOOOO+6438Q9O1qrjnlyAFYtNCevT6cf3HHHHXfccccdd9xxxx133HF/jfuJSzSfab6nuCOIO+6Y4o67z+COu8/gjrvP4P5aky88TS5Gn7uPKOOOu3DHHXfccccdd9xxx/1q7tklY9tCM/sCVvaY214+wx133HHHHXfccccdd9xxxx33F7hPDsm+BWLb+rJtaM9dleKOO+6444477rjjjjvuuOOO+2vcJy9fdj3XtkCcPNMGyrjjjjvuuOOOO+6444477rjjjnv2lCZfGlvF9MTVbXahiTvuuOOOO+6444477rjjjjvuuO9eDu5bok2i7F/h7Ru/zocj7rjjjjvuuOOOO+6444477rjfzX1yXZgdgP6FXfZ49t0L3HHHHXfccccdd9xxxx133HHH/W7K/QvESSiTr7Udv3fHHXfccccdd9xxxx133HHHHfcy7pO/0zZsd6Bc9a0nFpG444477rjjjjvuuOOOO+644x7l3r8K7F9oTg5bdgl7/CISd9xxxx133HHHHXfccccdd9zrua8aklNWXTvOtL/sgw933HHHHXfccccdd9xxxx133HFfu6Lat0TLLuyyS9jsGF+4iMQdd9xxxx133HHHHXfccccd9/pF5InLryzuycdB9uW8wNoXd9xxxx133HHHHXfccccdd9wf455F2X9jToHy/zv4xCISd9xxxx133HHHHXfccccdd9yj3PcRzNJp++XJ63zTgwZ33HHHHXfccccdd9xxxx133HFvI9g2ANlV4OT4BRamuOOOO+6444477rjjjjvuuOP+PPd9A7Dvv/aNaPZBkz3C+QHAHXfccccdd9xxxx133HHHHXfc2+hkobSde+erXbjjjjvuuOOOO+6444477rjjjvuJnfLqUgrl5Ng0rCZxxx133HHHHXfccccdd9xxx/1u7p9obbche177/mvV8Vy4d8cdd9xxxx133HHHHXfccccd9zLu2SXj5I2ZfPVtkvJNC1/ccccdd9xxxx133HHHHXfccce9bUHWj6BtbCYfGbjjjjvuuOOOO+6444477rjjjvvd3Pt/Jzv8+x4i86+R4Y477rjjjjvuuOOOO+6444477idyz55F/xifEu6444477rjjjjvuuOOOO+64454drVX/Nbn4y16N7GDjjjvuuOOOO+6444477rjjjjvua1nsq23pmX1AZAl2DgDuuOOOO+6444477rjjjjvuuN/NXWoOd+Eu4S7hLuEu4S7hLuEu4S7hLuEu4S7cJdwl3CXcJdwl3CXcJdwl3CXcJdyFu4S7dEm/llibksuxCZcAAAAASUVORK5CYII=\",\n                \"plain\": \"00020101021226720014br.gov.bcb.pix2550bx.com.br/pix/0fa55bba-cb0d-3e5a-8dd3-88af60f2a324520400005303986540647.925802BR5913PayMee Brasil\\n6008BRASILIA62190515RP12345678-2019630445C8\"\n            },\n            \"keys\": {\n                \"email\": \"pix-sandbox@paymee.com.br\",\n                \"document\": \"00000000000000\"\n            },\n            \"steps\": {\n                \"qrCode\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Abra o leitor de QRCode no APP e escaneie o código informado\",\n                    \"Siga os passos no APP e finalize a transação\"\n                ],\n                \"key\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Informe a chave pix-sandbox@paymee.com.br ou se preferir o nosso CNPJ 00000000000000\",\n                    \"Siga os passos no seu APP e finalize a transação\"\n                ]\n            }\n        }\n    }\n}"},{"id":"ae13851a-c020-4e1d-ad26-545184eadc63","name":"pix-success-response split","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-key"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"0199221121276150\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"PIX\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    }\n  },\n  \"split\": [{\n      \"seller_id\": 1234567,\n      \"amount\": 9.00\n  }, {\n      \"seller_id\": 7654321,\n      \"amount\": 1.00\n  }]\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 20 Oct 2020 21:00:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"referenceCode\": \"0199221121276150\",\n        \"amount\": 11,\n        \"id\": 33200,\n        \"saleCode\": \"00033200\",\n        \"uuid\": \"14fe1d3d-26f9-3790-8161-df091e8585da\",\n        \"shopper\": {\n            \"id\": \"24391203\",\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        },\n        \"instructions\": {\n            \"chosen\": \"PIX\",\n            \"name\": \"PIX\",\n            \"label\": \"Transferência via PIX\",\n            \"qrCode\": {\n                \"url\": \"https://apisandbox.paymee.com.br/payments/pix/qrcode/14fe1d3d-26f9-3790-8161-df091e8585da\",\n                \"base64\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAIAAAAHjs1qAAAEvklEQVR42u3ayXXDMBBEQeWftJ2ATzIw3QDqn7VwqeFhHj8/0jN9XALhLuEu4S7hLuEu4S7hLuEu4S7hLuEu3CXcJdwl3CXcJdwl3CXcJdwl3CXchbuEu4T7Xz8X7bsj3Hhxo+ee/Z3Je4o77rjjjjvuuOOOO+6444477rg3YPruVq361uQVmxz+tnuKO+6444477rjjjjvuuOOOO+647ya47zZkV5zZ85o85sl7ijvuuOOOO+6444477rjjjjvuuHdemraL3ong9EcY7rjjjjvuuOOOO+6444477rjjfu6l2XfMk6vSfUeIO+6444477rjjjjvuuOOOO+6438Q9O1qrjnlyAFYtNCevT6cf3HHHHXfccccdd9xxxx133HF/jfuJSzSfab6nuCOIO+6Y4o67z+COu8/gjrvP4P5aky88TS5Gn7uPKOOOu3DHHXfccccdd9xxx/1q7tklY9tCM/sCVvaY214+wx133HHHHXfccccdd9xxxx33F7hPDsm+BWLb+rJtaM9dleKOO+6444477rjjjjvuuOOO+2vcJy9fdj3XtkCcPNMGyrjjjjvuuOOOO+6444477rjjjnv2lCZfGlvF9MTVbXahiTvuuOOOO+6444477rjjjjvuuO9eDu5bok2i7F/h7Ru/zocj7rjjjjvuuOOOO+6444477rjfzX1yXZgdgP6FXfZ49t0L3HHHHXfccccdd9xxxx133HHH/W7K/QvESSiTr7Udv3fHHXfccccdd9xxxx133HHHHfcy7pO/0zZsd6Bc9a0nFpG444477rjjjjvuuOOOO+644x7l3r8K7F9oTg5bdgl7/CISd9xxxx133HHHHXfccccdd9zrua8aklNWXTvOtL/sgw933HHHHXfccccdd9xxxx133HFfu6Lat0TLLuyyS9jsGF+4iMQdd9xxxx133HHHHXfccccd9/pF5InLryzuycdB9uW8wNoXd9xxxx133HHHHXfccccdd9wf455F2X9jToHy/zv4xCISd9xxxx133HHHHXfccccdd9yj3PcRzNJp++XJ63zTgwZ33HHHHXfccccdd9xxxx133HFvI9g2ANlV4OT4BRamuOOOO+6444477rjjjjvuuOP+PPd9A7Dvv/aNaPZBkz3C+QHAHXfccccdd9xxxx133HHHHXfc2+hkobSde+erXbjjjjvuuOOOO+6444477rjjjvuJnfLqUgrl5Ng0rCZxxx133HHHHXfccccdd9xxx/1u7p9obbche177/mvV8Vy4d8cdd9xxxx133HHHHXfccccd9zLu2SXj5I2ZfPVtkvJNC1/ccccdd9xxxx133HHHHXfccce9bUHWj6BtbCYfGbjjjjvuuOOOO+6444477rjjjvvd3Pt/Jzv8+x4i86+R4Y477rjjjjvuuOOOO+6444477idyz55F/xifEu6444477rjjjjvuuOOOO+64454drVX/Nbn4y16N7GDjjjvuuOOOO+6444477rjjjjvua1nsq23pmX1AZAl2DgDuuOOOO+6444477rjjjjvuuN/NXWoOd+Eu4S7hLuEu4S7hLuEu4S7hLuEu4S7cJdwl3CXcJdwl3CXcJdwl3CXcJdyFu4S7dEm/llibksuxCZcAAAAASUVORK5CYII=\",\n                \"plain\": \"00020101021226720014br.gov.bcb.pix2550bx.com.br/pix/0fa55bba-cb0d-3e5a-8dd3-88af60f2a324520400005303986540647.925802BR5913PayMee Brasil\\n6008BRASILIA62190515RP12345678-2019630445C8\"\n            },\n            \"keys\": {\n                \"email\": \"pix-sandbox@paymee.com.br\",\n                \"document\": \"00000000000000\"\n            },\n            \"steps\": {\n                \"qrCode\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Abra o leitor de QRCode no APP e escaneie o código informado\",\n                    \"Siga os passos no APP e finalize a transação\"\n                ],\n                \"key\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Informe a chave pix-sandbox@paymee.com.br ou se preferir o nosso CNPJ 00000000000000\",\n                    \"Siga os passos no seu APP e finalize a transação\"\n                ]\n            }\n        }\n    }\n}"},{"id":"c7997338-378f-4aae-a486-d6cace3789f8","name":"credit card - error 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"019922112127616\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"CREDIT_CARD\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 28 Oct 2021 22:27:32 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"cardDetails\",\n            \"message\": \"card details cannot be null\"\n        }\n    ]\n}"},{"id":"4d06926a-b7cd-4645-826b-aea39cc4578a","name":"credit card checkout - error 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"019922112127616\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"CREDIT_CARD\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"card_details\": {\n\n  },\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 28 Oct 2021 22:30:31 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 9,\n    \"errors\": [\n        {\n            \"field\": \"cardDetails.cardNumber\",\n            \"message\": \"may not be null\"\n        },\n        {\n            \"field\": \"cardDetails.expirationYear\",\n            \"message\": \"may not be null\"\n        },\n        {\n            \"field\": \"cardDetails.securityCode\",\n            \"message\": \"may not be null\"\n        },\n        {\n            \"field\": \"cardDetails.securityCode\",\n            \"message\": \"may not be empty\"\n        },\n        {\n            \"field\": \"cardDetails.expirationYear\",\n            \"message\": \"may not be empty\"\n        },\n        {\n            \"field\": \"cardDetails.expirationMonth\",\n            \"message\": \"may not be empty\"\n        },\n        {\n            \"field\": \"cardDetails.expirationMonth\",\n            \"message\": \"may not be null\"\n        },\n        {\n            \"field\": \"cardDetails.cardNumber\",\n            \"message\": \"may not be empty\"\n        },\n        {\n            \"field\": \"cardDetails.holder\",\n            \"message\": \"may not be null\"\n        }\n    ]\n}"},{"id":"abd6edc2-82d1-4328-8109-2d5911f26258","name":"credit card checkout - authorized success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"x-api-key"},{"key":"x-api-token","value":"x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"019922112127616\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"CREDIT_CARD\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"card_details\": {\n    \"card_number\": \"5399354637569731\",\n    \"expiration_month\": \"10\",\n    \"expiration_year\": \"2026\",\n    \"security_code\": \"213\",\n    \"holder\": {\n        \"name\": \"JOAO A MORENO\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"01234567890\"\n        }\n    }\n  },\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 28 Oct 2021 22:36:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"authorization_details\": {\n            \"message\": \"SUCESSO\",\n            \"status_code\": 0,\n            \"card_brand\": \"mastercard\",\n            \"first4_digits\": \"5399\",\n            \"last4_digits\": \"9731\",\n            \"expiration_month\": \"10\",\n            \"expiration_year\": \"2026\",\n            \"holder_name\": \"JOAO A MORENO\",\n            \"fingerprint\": \"eeb40e188ac6850cc8aa6dfbab9729499dddb2e1ee9e74f250100d9d7242071f\",\n            \"transaction_id\": \"afc5712f31f790f6a47dfa634635dbcc\",\n            \"installments\": 1\n        },\n        \"status\": \"PAID\",\n        \"referenceCode\": \"019922112127616\",\n        \"amount\": 11,\n        \"id\": 81273,\n        \"saleCode\": \"00081273\",\n        \"uuid\": \"9b470536-51f7-37ba-ac45-923db63edabb\",\n        \"shopper\": {\n            \"id\": \"24391203\",\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"bankDetails\": {\n                \"branch\": \"0001\",\n                \"account\": \"00011-0\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        }\n    }\n}"},{"id":"000a4eb0-7434-46e3-bc3a-2bddbb08a595","name":"credit card checkout - unauthorized response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"currency\": \"BRL\",\n  \"amount\": 11.00,\n  \"referenceCode\": \"019922112127617\",\n  \"maxAge\": 120,\n  \"paymentMethod\": \"CREDIT_CARD\",\n  \"callbackURL\": \"https://foo.bar/paymeeListener\",\n  \"card_details\": {\n    \"card_number\": \"5399354637569731\",\n    \"expiration_month\": \"10\",\n    \"expiration_year\": \"2026\",\n    \"security_code\": \"213\",\n    \"holder\": {\n        \"name\": \"JOAO A MORENO\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"01234567890\"\n        }\n    }\n  },\n  \"shopper\": {\n    \"id\": \"24391203\",\n    \"email\": \"foo@bar.com\",\n    \"name\": \"JHON DOE\",\n    \"document\": {\n    \t\"type\": \"CPF\",\n    \t\"number\": \"00000000000\"\n    },\n    \"phone\": {\n    \t\"type\": \"MOBILE\",\n    \t\"number\": \"11999990000\"\n    },\n    \"bankDetails\": {\n    \t\"branch\": \"0001\",\n    \t\"account\": \"00011-0\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 28 Oct 2021 22:41:22 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"authorization_details\": {\n            \"message\": \"CARTAO INVALIDO - 15\",\n            \"status_code\": 15,\n            \"card_brand\": \"mastercard\",\n            \"first4_digits\": \"5399\",\n            \"last4_digits\": \"9731\",\n            \"expiration_month\": \"10\",\n            \"expiration_year\": \"2026\",\n            \"holder_name\": \"JOAO A MORENO\",\n            \"fingerprint\": \"331c9534aa362a40b41d5247ee955d9cee7b2366af26995b0b4ac7aa9181d642\",\n            \"transaction_id\": \"ecb4e5a4076a751dde6c0988eab29514\",\n            \"installments\": 1\n        },\n        \"status\": \"CANCELLED\",\n        \"referenceCode\": \"019922112127617\",\n        \"amount\": 11,\n        \"id\": 81274,\n        \"saleCode\": \"00081274\",\n        \"uuid\": \"120311e8-7c85-3e64-b071-ba920dd10e59\",\n        \"shopper\": {\n            \"id\": \"24391203\",\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"bankDetails\": {\n                \"branch\": \"0001\",\n                \"account\": \"00011-0\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        }\n    }\n}"}],"_postman_id":"64b8343e-0c34-42fa-b14e-0888034eace4"},{"name":"redirect checkout","id":"47c9b6b2-a0ae-4e46-89cf-678ab865bd2a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"currency\": \"BRL\",\n\t\"amount\": 1.99,\n\t\"referenceCode\": \"0199201120512\",\n\t\"maxAge\": 120,\n\t\"paymentMethod\": \"ITAU_TRANSFER_PF\",\n\t\"callbackURL\": \"https://foo.bar/paymeeListener\",\n\t\"shopper\": {\n\t\t\"email\": \"foo@bar.com.br\",\n\t\t\"name\": \"JOHN DOE\",\n\t\t\"document\": {\n\t\t\t\"type\": \"CPF\",\n\t\t\t\"number\": \"62012777066\"\n\t\t},\n\t\t\"bankDetails\": {\n\t\t\t\"branch\": \"1234\",\n\t\t\t\"account\": \"12345-6\"\n\t\t},\n\t\t\"phone\": {\n\t\t\t\"type\": \"WORK\",\n\t\t\t\"number\": \"11999990000\"\n\t\t}\n\t}\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout","description":"<h1 id=\"generate-a-simple-transaction\">Generate a simple transaction</h1>\n<p>To generate a transaction through PayMee, it is necessary to send a request using the POST method to the checkout resource, as shown. This example covers the minimum of submitted fields required for authorization.</p>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>3</td>\n<td>true</td>\n<td>ISO-4217</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>true</td>\n<td>Order Amount</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>Unique order identifier</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>number</td>\n<td>43200</td>\n<td>false</td>\n<td>Sale max age in minutes</td>\n</tr>\n<tr>\n<td>callbackURL</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>callback URL</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>internal shopper identifier</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>shopper's name</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>shopper's email</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>string</td>\n<td>10</td>\n<td>false</td>\n<td>shopper's document type (CPF, CNPJ, OTHER)</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>string</td>\n<td>25</td>\n<td>false</td>\n<td>shopper's document number</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>string</td>\n<td>8</td>\n<td>false</td>\n<td>shopper's branch</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>string</td>\n<td>25</td>\n<td>false</td>\n<td>shopper's account</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>string</td>\n<td>10</td>\n<td>false</td>\n<td>shopper's phone yype (MOBILE, HOME, WORK, OTHER)</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>string</td>\n<td>25</td>\n<td>false</td>\n<td>shopper's phone number</td>\n</tr>\n<tr>\n<td>observation</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>any Internal reference</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-document-type-values\">available document type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CPF</td>\n</tr>\n<tr>\n<td>CNPJ</td>\n</tr>\n<tr>\n<td>OTHER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-phone-type-values\">available phone type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MOBILE</td>\n</tr>\n<tr>\n<td>HOME</td>\n</tr>\n<tr>\n<td>WORK</td>\n</tr>\n<tr>\n<td>OTHER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.gatewayURL</td>\n<td>string</td>\n<td>gateway URL</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status-type-values\">available status type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>a validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>1001</td>\n<td>\"duplicated referenceCode\"</td>\n<td>the reference code must be unique</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-validation-vailure-responses\">available validation vailure responses</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>error</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.duplicated</td>\n<td>referenceCode duplicado para o comércio.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","checkout"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"286c2bdc-6ef3-49bb-b8b9-9e26e96cadf9","name":"unauthorized response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"currency\": \"BRL\",\n\t\"amount\": 1.99,\n\t\"referenceCode\": \"0199201120511\",\n\t\"maxAge\": 120,\n\t\"paymentMethod\": \"ITAU_TRANSFER_PFF\",\n\t\"callbackURL\": \"https://foo.bar/paymeeListener\",\n\t\"shopper\": {\n\t\t\"email\": \"foo@bar.com.br\",\n\t\t\"name\": \"JOAO ALBERTO\",\n\t\t\"document\": {\n\t\t\t\"type\": \"CPF\",\n\t\t\t\"number\": \"06827142914\"\n\t\t},\n\t\t\"bankDetails\": {\n\t\t\t\"branch\": \"1234\",\n\t\t\t\"account\": \"12345-6\"\n\t\t},\n\t\t\"phone\": {\n\t\t\t\"type\": \"WORK\",\n\t\t\t\"number\": \"14981212047\"\n\t\t}\n\t}\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:33:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"message\":\"Access Denied\",\"error\":\"Forbidden\"}]}"},{"id":"5eb8f46d-f796-497c-83b1-8b3d85771e62","name":"validation failure response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"x-api-key"},{"key":"x-api-token","value":"x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"currency\": \"BRL\",\n\t\"amount\": 1.99,\n\t\"referenceCode\": \"0199201120511\",\n\t\"maxAge\": 120,\n\t\"paymentMethod\": \"ITAU_TRANSFER_PFF\",\n\t\"callbackURL\": \"https://foo.bar/paymeeListener\",\n\t\"shopper\": {\n\t\t//\"email\": \"foo@bar.com.br\",\n\t\t//\"name\": \"JOAO ALBERTO\",\n\t\t\"document\": {\n\t\t\t//\"type\": \"CPF\",\n\t\t\t//\"number\": \"06827142914\"\n\t\t},\n\t\t\"bankDetails\": {\n\t\t\t//\"branch\": \"1234\",\n\t\t\t//\"account\": \"12345-6\"\n\t\t},\n\t\t\"phone\": {\n\t\t\t//\"type\": \"WORK\",\n\t\t\t//\"number\": \"14981212047\"\n\t\t}\n\t}\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:32:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":11,\"errors\":[{\"field\":\"shopper.bankDetails.account\",\"message\":\"may not be null\"},{\"field\":\"shopper.document.number\",\"message\":\"may not be null\"},{\"field\":\"shopper.phone.number\",\"message\":\"may not be null\"},{\"field\":\"paymentMethod\",\"message\":\"unknown payment method\"},{\"field\":\"shopper.bankDetails.account\",\"message\":\"may not be empty\"},{\"field\":\"shopper.bankDetails.branch\",\"message\":\"may not be empty\"},{\"field\":\"shopper.bankDetails.branch\",\"message\":\"may not be null\"},{\"field\":\"shopper.phone.type\",\"message\":\"may not be null\"},{\"field\":\"shopper.email\",\"message\":\"may not be empty\"},{\"field\":\"shopper.email\",\"message\":\"may not be null\"},{\"field\":\"referenceCode\",\"message\":\"referenceCode duplicado para o comércio.\"}]}"},{"id":"84e2af9d-b201-466e-8a29-199518bc8340","name":"duplicated referenceCode response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"x-api-key"},{"key":"x-api-token","value":"x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"currency\": \"BRL\",\n\t\"amount\": 1.99,\n\t\"referenceCode\": \"0199201120511\",\n\t\"maxAge\": 120,\n\t\"paymentMethod\": \"ITAU_TRANSFER_PF\",\n\t\"callbackURL\": \"https://foo.bar/paymeeListener\",\n\t\"shopper\": {\n\t\t\"email\": \"foo@bar.com.br\",\n\t\t\"name\": \"JOAO ALBERTO\",\n\t\t\"document\": {\n\t\t\t\"type\": \"CPF\",\n\t\t\t\"number\": \"06827142914\"\n\t\t},\n\t\t\"bankDetails\": {\n\t\t\t\"branch\": \"1234\",\n\t\t\t\"account\": \"12345-6\"\n\t\t},\n\t\t\"phone\": {\n\t\t\t\"type\": \"WORK\",\n\t\t\t\"number\": \"14981212047\"\n\t\t}\n\t}\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:31:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"field\":\"referenceCode\",\"message\":\"referenceCode duplicado para o comércio.\"}]}"},{"id":"ace0043f-5ea5-402f-8391-41cfdbcb528b","name":"success response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"currency\": \"BRL\",\n\t\"amount\": 1.99,\n\t\"referenceCode\": \"0199201120511\",\n\t\"maxAge\": 120,\n\t\"paymentMethod\": \"ITAU_TRANSFER_PF\",\n\t\"callbackURL\": \"https://foo.bar/paymeeListener\",\n\t\"shopper\": {\n\t\t\"email\": \"foo@bar.com.br\",\n\t\t\"name\": \"JOHN DOE\",\n\t\t\"document\": {\n\t\t\t\"type\": \"CPF\",\n\t\t\t\"number\": \"62012777066\"\n\t\t},\n\t\t\"bankDetails\": {\n\t\t\t\"branch\": \"1234\",\n\t\t\t\"account\": \"12345-6\"\n\t\t},\n\t\t\"phone\": {\n\t\t\t\"type\": \"MOBILE\",\n\t\t\t\"number\": \"11999990000\"\n\t\t}\n\t}\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 13:37:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"referenceCode\": \"0199201120511\",\n        \"amount\": 1.99,\n        \"saleCode\": \"0002405\",\n        \"uuid\": \"55f6bb4e-d1aa-361e-bce3-758fd57ab6d0\",\n        \"gatewayURL\": \"https://apisandbox.paymee.com.br/redir/55f6bb4e-d1aa-361e-bce3-758fd57ab6d0\",\n        \"shopper\": {\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com.br\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"62012777066\"\n            },\n            \"bankDetails\": {\n                \"branch\": \"1234\",\n                \"account\": \"12345-6\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        }\n    }\n}"}],"_postman_id":"47c9b6b2-a0ae-4e46-89cf-678ab865bd2a"},{"name":"split payment","id":"96c56008-6a87-4b8a-bc4f-7547447cbbe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"a6355042-224a-344d-bfe0-9afd23006b94"},{"key":"x-api-token","value":"c63bbc2f-f120-365f-b102-b7b63ef0e5e6"}],"body":{"mode":"raw","raw":"{\n    \"currency\": \"BRL\",\n    \"amount\": 2.00,\n    \"referenceCode\": \"ERD34A2N2AX36\",\n    \"maxAge\": 240,\n    \"paymentMethod\": \"PIX\",\n    \"shopper\": {\n        \"id\": \"64984928\",\n        \"email\": \"falecom@paymee.com.br\",\n        \"name\": \"FOO BAR\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"00000000000\"\n        },\n        \"phone\": {\n            \"type\": \"MOBILE\",\n            \"number\": \"+5511999999999\"\n        }\n    },\n    \"chargeProcessingFee\": false,\n    \"sellersTransactions\": [\n        {\n            \"sellerId\": 1234,\n            \"amount\": 1.00,\n            \"commissionAmount\": 0.00,\n            \"referenceCode\": \"ERD34A2N2AX55-1\"\n        },\n        {\n            \"sellerId\": 1234,\n            \"amount\": 1.00,\n            \"commissionAmount\": 0.00,\n            \"referenceCode\": \"ERD34A2N2AX55-2\"\n        }\n    ]\n}"},"url":"https://api.paymee.com.br/v1.1/checkout/transparent","description":"<h1 id=\"generate-a-semi-transparent-checkout-request\">Generate a semi-transparent checkout request</h1>\n<p>To generate a transaction throught PayMee, it is necessary to send a request using the POST method to the <strong>checkout</strong> resource, as shown. This example covers the minimum of fields required to be submitted for authorization.</p>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>3</td>\n<td>true</td>\n<td>ISO-4217</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>true</td>\n<td>Order Amount</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>Unique order identifier</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>number</td>\n<td>43200</td>\n<td>false</td>\n<td>Sale max age in minutes</td>\n</tr>\n<tr>\n<td>brand_id</td>\n<td>string(uuid)</td>\n<td>36</td>\n<td>true</td>\n<td>true if selected INITIATOR on paymentMethod</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>chosen bank</td>\n</tr>\n<tr>\n<td>callbackURL</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>callback URL</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>internal shopper identifier</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>string</td>\n<td>255</td>\n<td>true</td>\n<td>shopper's name</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>shopper Email</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>string</td>\n<td>10</td>\n<td>true</td>\n<td>shopper's document type (CPF, CNPJ, OTHER)</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>shopper's document number</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>string</td>\n<td>8</td>\n<td>true</td>\n<td>shopper's branch</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>shopper's account</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>string</td>\n<td>10</td>\n<td>true</td>\n<td>shopper's phone type (MOBILE, HOME, WORK, OTHER)</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>string</td>\n<td>25</td>\n<td>true</td>\n<td>shopper's phone number</td>\n</tr>\n<tr>\n<td>observation</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>any Internal reference</td>\n</tr>\n<tr>\n<td>recurrence</td>\n<td>number</td>\n<td>999</td>\n<td>false</td>\n<td>recurrence in months</td>\n</tr>\n<tr>\n<td>redirectURL</td>\n<td>string (url)</td>\n<td>255</td>\n<td>false</td>\n<td>confirmation redirect URL</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-payment-methods\">available payment methods</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>BANK</th>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>001 - BANCO DO BRASIL</td>\n<td>BB_TRANSFER</td>\n<td>Register chosen bank (Banco do Brasil) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>001 - BANCO DO BRASIL</td>\n<td>BB_DI</td>\n<td>Register chosen bank (Banco do Brasil) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>237 - BRADESCO</td>\n<td>BRADESCO_TRANSFER</td>\n<td>Register chosen bank (Bradesco) and payment type (Cash)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_TRANSFER_GENERIC</td>\n<td>Register chosen bank (Itaú) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_TRANSFER_PF</td>\n<td>Register chosen bank (Itaú) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_TRANSFER_PJ</td>\n<td>Register chosen bank (Itaú) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>341 - BANCO ITAÚ-UNIBANCO</td>\n<td>ITAU_DI</td>\n<td>Register chosen bank (Itaú) and payment type (Cash)</td>\n</tr>\n<tr>\n<td>104 - BANCO CAIXA ECONOMICA FEDERAL</td>\n<td>CEF_TRANSFER</td>\n<td>Register chosen bank (Caixa) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>202 - BANCO ORIGINAL</td>\n<td>ORIGINAL_TRANSFER</td>\n<td>Register chosen bank (Original) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>033 - SANTANDER BRASIL</td>\n<td>SANTANDER_TRANSFER</td>\n<td>Register chosen bank (Santander) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>033 - SANTANDER BRASIL</td>\n<td>SANTANDER_DI</td>\n<td>Register chosen bank (Santander) and payment type (Cash)</td>\n</tr>\n<tr>\n<td>077 - BANCO INTER</td>\n<td>INTER_TRANSFER</td>\n<td>Register chosen bank (Inter) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>077 - BANCO BS2</td>\n<td>BS2_TRANSFER</td>\n<td>Register chosen bank (BS2) and payment type (wire transfer)</td>\n</tr>\n<tr>\n<td>OUTROS BANCOS</td>\n<td>OUTROS_BANCOS</td>\n<td>Register chosen bank (OUTROS) and payment type (TED)</td>\n</tr>\n<tr>\n<td>PIX</td>\n<td>PIX</td>\n<td>Register a PIX request</td>\n</tr>\n<tr>\n<td>CREDIT CARD</td>\n<td>CREDIT_CARD</td>\n<td>Credit Card Method</td>\n</tr>\n<tr>\n<td>OPENBANKING INITIATOR</td>\n<td>INITIATOR</td>\n<td>openbanking initiator</td>\n</tr>\n<tr>\n<td>VEPUY</td>\n<td>VEF VEPUY</td>\n<td>VePuy - Venezuela</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-document-type-values\">available document type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CPF</td>\n</tr>\n<tr>\n<td>CNPJ</td>\n</tr>\n<tr>\n<td>OTHER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-phone-type-values\">available phone type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MOBILE</td>\n</tr>\n<tr>\n<td>HOME</td>\n</tr>\n<tr>\n<td>WORK</td>\n</tr>\n<tr>\n<td>OTHER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-non-pix-checkout\">Response for non-pix checkout</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>chosen bank method</td>\n</tr>\n<tr>\n<td>response.instructions.name</td>\n<td>string</td>\n<td>chosen bank name</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>chosen bank description</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_branch</td>\n<td>string</td>\n<td>branch number to pay</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_op</td>\n<td>string</td>\n<td>operation code (only CEF)</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_account</td>\n<td>string</td>\n<td>account number and verifing digit to pay</td>\n</tr>\n<tr>\n<td>response.instructions.need_identification</td>\n<td>boolean</td>\n<td>tells if has identification code when pay</td>\n</tr>\n<tr>\n<td>response.instructions.identification</td>\n<td>string</td>\n<td>identification code to pay</td>\n</tr>\n<tr>\n<td>response.instructions.steps</td>\n<td>array[string]</td>\n<td>simple steps description to display</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.desktop</td>\n<td>string</td>\n<td>default bank website URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.ios</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.android</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.windows_phone</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-pix-checkout\">Response for Pix checkout</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>pix chosen option</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>pix chosen description</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.url</td>\n<td>string</td>\n<td>qrcode for payment url</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.base64</td>\n<td>string</td>\n<td>qrcode in base64 encode</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.plain</td>\n<td>string</td>\n<td>qrcode in plain text</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.keys.email</td>\n<td>string</td>\n<td>pix beneficiary key - email option</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.keys.document</td>\n<td>string</td>\n<td>pix beneficiary key - document option</td>\n</tr>\n<tr>\n<td>response.instructions.steps.qrcode</td>\n<td>array[string]</td>\n<td>minimal steps for qrcode description to display</td>\n</tr>\n<tr>\n<td>response.instructions.steps.key</td>\n<td>array[string]</td>\n<td>minimal steps for key description to display</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-openbanking-initiator\">Response for OpenBanking Initiator</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>pix chosen option</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>pix chosen description</td>\n</tr>\n<tr>\n<td>response.instructions.payment_id</td>\n<td>string</td>\n<td>openbanking payment id reference</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_url</td>\n<td>string</td>\n<td>redirect URL for openbanking authentication</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status-values\">available status values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>1001</td>\n<td>\"duplicated referenceCode\"</td>\n<td>the reference code must be unique</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-validation-vailure-responses\">available validation vailure responses</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>error</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.banned</td>\n<td>banned shopper</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.not_allowed</td>\n<td>document type not allowed</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.duplicated</td>\n<td>duplicated reference code</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>paymentMethod.invalid</td>\n<td>inform a valid payment method</td>\n</tr>\n<tr>\n<td>shopper.bankDetails</td>\n<td>shopper.bankDetails.isNull</td>\n<td>please inform a valid bank details</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>shopper.phone.number.isNull</td>\n<td>please inform a valid phone number</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.invalidDocument</td>\n<td>the shopper document XXXXXXXXXXX is not valid</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.limit</td>\n<td>the amount exceeded daily limit</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>amount.min</td>\n<td>must be greater than 0.01</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.lenght</td>\n<td>referenceCode must have length 1 up to 100</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>maxAge.limit</td>\n<td>maxAge must be at least 1 and up to 4320 minutes</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>paymentMethod.is_null</td>\n<td>paymentMethod cannot be null</td>\n</tr>\n<tr>\n<td>shopper</td>\n<td>shopper.is_null</td>\n<td>shopper cannot be null</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>shopper.id.max_lenght</td>\n<td>shopper id must have up to 255 characters</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>shopper.name.length</td>\n<td>shopper name must have up to 255 characters</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>shopper.name.is_null</td>\n<td>shopper name cannot be null</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>shopper.email.length</td>\n<td>please fill a valid email</td>\n</tr>\n<tr>\n<td>shopper.document</td>\n<td>shopper.document.is_null</td>\n<td>shopper document cannot be null</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>shopper.document.type.invalid</td>\n<td>please inform a valid document type</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.invalid</td>\n<td>lenght must be between 2 and 25</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>shopper.bankDetails.branch.invalid</td>\n<td>please inform a valid branch</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>shopper.bankDetails.account.invalid</td>\n<td>please inform a valid bank account</td>\n</tr>\n<tr>\n<td>shopper.phone</td>\n<td>shopper.phone.is_null</td>\n<td>shopper.phone cannot be null</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>shopper.phone.type.invalid</td>\n<td>please inform a valid phone type</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>shopper.phone.number.invalid</td>\n<td>please inform a valid phone number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","checkout","transparent"],"host":["api","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"b9b4ead3-8172-423d-ba09-f87453f8837e","name":"success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}"},{"key":"x-api-token","value":"{{x-api-token}}"}],"body":{"mode":"raw","raw":"{\n    \"currency\": \"BRL\",\n    \"amount\": 2.00,\n    \"referenceCode\": \"ERD34A2N2AX36\",\n    \"maxAge\": 240,\n    \"paymentMethod\": \"PIX\",\n    \"shopper\": {\n        \"id\": \"64984928\",\n        \"email\": \"falecom@paymee.com.br\",\n        \"name\": \"FOO BAR\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"00000000000\"\n        },\n        \"phone\": {\n            \"type\": \"MOBILE\",\n            \"number\": \"+5511999999999\"\n        }\n    },\n    \"chargeProcessingFee\": false,\n    \"sellersTransactions\": [\n        {\n            \"sellerId\": 1234,\n            \"amount\": 1.00,\n            \"commissionAmount\": 0.00,\n            \"referenceCode\": \"ERD34A2N2AX55-1\"\n        },\n        {\n            \"sellerId\": 1234,\n            \"amount\": 1.00,\n            \"commissionAmount\": 0.00,\n            \"referenceCode\": \"ERD34A2N2AX55-2\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/checkout/transparent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 20:04:37 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"9996"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"id\": 260461919,\n        \"referenceCode\": \"ERD34A2N2AX36\",\n        \"amount\": 2,\n        \"saleCode\": \"260461919\",\n        \"uuid\": \"fa82434e-22db-3289-8516-3758f9a2604b\",\n        \"shopper\": {\n            \"id\": \"64984928\",\n            \"name\": \"FOO BAR\",\n            \"email\": \"falecom@paymee.com.br\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"+5511999999999\"\n            }\n        },\n        \"instructions\": {\n            \"chosen\": \"PIX\",\n            \"name\": \"Pagamento via PIX\",\n            \"label\": \"Pagamento via PIX\",\n            \"qrCode\": {\n                \"url\": \"https://api.paymee.com.br/resources/payments/pix/qrcode/fa82434e-22db-3289-8516-3758f9a2604b\",\n                \"base64\": \"iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAIAAAAHjs1qAAAYqklEQVR4Xu3SQa4kuY4F0b//TVePVDAQMsRliIrMavczJIx0vcz43z+v12P8rw5er/+/3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hen/vrQd6f++tB3p/760Hmf+7/u6B+Y6ndUruldjt1Z+dP9Zwb621u2JM1nE/h/REXLl5Qv7HUbqndUrudurPzp3rOjfU2N+zJGs6n8P6ICxcvqN9YarfUbqndTt3Z+VM958Z6mxv2ZA3nU3h/xIWLF9RvLLVbarfUbqfu7PypnnNjvc0Ne7KG8ym8P+LCxaHn2h3Ou3iHrOGcksZ0d9lT7ZbaLbXbmeo575q6s3Xh4tBz7Q7nXbxD1nBOSWO6u+ypdkvtltrtTPWcd03d2bpwcei5dofzLt4hazinpDHdXfZUu6V2S+12pnrOu6bubF24OPRcu8N5F++QNZxT0pjuLnuq3VK7pXY7Uz3nXVN3ti5clOdybqznnJKGuj39cpf9DfV7n9T9xRqbG+s5H3HhojyXc2M955Q01O3pl7vsb6jf+6TuL9bY3FjP+YgLF+W5nBvrOaekoW5Pv9xlf0P93id1f7HG5sZ6zkdcuCjP5dxYzzklDXV7+uUu+xvq9z6p+4s1NjfWcz7iwkV5LufGept38Q51G2O9zYlNV/cOe2M952QN58Z6zkdcuCjP5dxYb/Mu3qFuY6y3ObHp6t5hb6znnKzh3FjP+YgLF+W5nBvrbd7FO9RtjPU2JzZd3TvsjfWckzWcG+s5H3HhojyXc2O9zbt4h7qNsd7mxKare4e9sZ5zsoZzYz3nIy5clOdybqzn3CR9t6Ha7dSdCd377BN1f6ndJ7bLubGe8xEXLspzOTfWc26SvttQ7XbqzoTuffaJur/U7hPb5dxYz/mICxfluZwb6zk3Sd9tqHY7dWdC9z77RN1faveJ7XJurOd8xIWL8lzOjfWcm6TvNlS7nbozoXuffaLuL7X7xHY5N9ZzPuLCxaHn2p3uPMFdsoZzYkO126k7S+12kt4azg170+3N1J2tCxeHnmt3uvMEd8kazokN1W6n7iy120l6azg37E23N1N3ti5cHHqu3enOE9wlazgnNlS7nbqz1G4n6a3h3LA33d5M3dm6cHHouXanO09wl6zhnNhQ7XbqzlK7naS3hnPD3nR7M3Vn68LFC+z+O/8751N4f8SFixfY/Xf+d86n8P6ICxcvsPvv/O+cT+H9ERcuXmD33/nfOZ/C+yPmL/4p9s9kc8Pe1J2dqT6Zn+BN0+3/Wv/t15P9l9jcsDd1Z2eqT+YneNN0+7/Wf/v1ZP8lNjfsTd3ZmeqT+QneNN3+r/Xffj3Zf4nNDXtTd3am+mR+gjdNt/9rzb+e/zRdJ3dsl/MEd431Nj/Bmzd0v8WerDmZj5u/zqd3ndyxXc4T3DXW2/wEb97Q/RZ7suZkPm7+Op/edXLHdjlPcNdYb/MTvHlD91vsyZqT+bj563x618kd2+U8wV1jvc1P8OYN3W+xJ2tO5uMuXxe1W04azk/wpkl6azgnNlS7nbqzJE0iuWMN52QN5+MuXxe1W04azk/wpkl6azgnNlS7nbqzJE0iuWMN52QN5+MuXxe1W04azk/wpkl6azgnNlS7nbqzJE0iuWMN52QN5+MuXxe1W04azk/wpkl6azgnNlS7nbqzJE0iuWMN52QN5+MuX2+yXc6p2yTq/k7dWWq3Y73NzVTPuUl6NqbuLNZwPmL+IvHpCdvlnLpNou7v1J2ldjvW29xM9ZybpGdj6s5iDecj5i8Sn56wXc6p2yTq/k7dWWq3Y73NzVTPuUl6NqbuLNZwPmL+IvHpCdvlnLpNou7v1J2ldjvW29xM9ZybpGdj6s5iDecjLlyU53Ju2Ju6s1jDOSUNsU/U/W/Vuzvdnrhrkp5Nou4vSfO1CxfluZwb9qbuLNZwTklD7BN1/1v17k63J+6apGeTqPtL0nztwkV5LueGvak7izWcU9IQ+0Td/1a9u9Ptibsm6dkk6v6SNF+7cFGey7lhb+rOYg3nlDTEPlH3v1Xv7nR74q5JejaJur8kzdcuXDx4LndN3Vlqt3Qbqt1N9ds7dWfHeptT0hD7Lrtj8xEXLh48l7um7iy1W7oN1e6m+u2durNjvc0paYh9l92x+YgLFw+ey11Td5baLd2GandT/fZO3dmx3uaUNMS+y+7YfMSFiwfP5a6pO0vtlm5Dtbupfnun7uxYb3NKGmLfZXdsPuLCRWEN54a9sZ5zk/Qnjc0T3DV1Z0maKfYtm1PSjJi/zqeTNZwb9sZ6zk3SnzQ2T3DX1J0laabYt2xOSTNi/jqfTtZwbtgb6zk3SX/S2DzBXVN3lqSZYt+yOSXNiPnrfDpZw7lhb6zn3CT9SWPzBHdN3VmSZop9y+aUNCPuXqfkT2KTmNpN1P1P6v5Su52680myy4Zqt9RusYbzhO3afMT8RZP8GWwSU7uJuv9J3V9qt1N3Pkl22VDtltot1nCesF2bj5i/aJI/g01iajdR9z+p+0vtdurOJ8kuG6rdUrvFGs4TtmvzEfMXTfJnsElM7Sbq/id1f6ndTt35JNllQ7VbardYw3nCdm0+4sLFm8/9x+9zfsJucm6st3nCdjlPJLtsuuqtT+r+kjRfu3Dx5nP/8fucn7CbnBvrbZ6wXc4TyS6brnrrk7q/JM3XLly8+dx//D7nJ+wm58Z6mydsl/NEssumq976pO4vSfO1CxdvPvcfv8/5CbvJubHe5gnb5TyR7LLpqrc+qftL0nxt/iIlT2eTqPtL7Xbqzk7d2bG+O08ku2zIGs4TtpvMjfU2HzF/kZKns0nU/aV2O3Vnp+7sWN+dJ5JdNmQN5wnbTebGepuPmL9IydPZJOr+UrudurNTd3as784TyS4bsobzhO0mc2O9zUfMX6Tk6WwSdX+p3U7d2ak7O9Z354lklw1Zw3nCdpO5sd7mIy5cvPncf87uc9fUnW8lN5OG2FPtlqRJJHfYkDXJfNz89dtPP7nPXVN3vpXcTBpiT7VbkiaR3GFD1iTzcfPXbz/95D53Td35VnIzaYg91W5JmkRyhw1Zk8zHzV+//fST+9w1dedbyc2kIfZUuyVpEskdNmRNMh83f51Pp6Qx3O1K7pw0J/NEssvGWM+5YU/WdOeUNF+7cFEkjeFuV3LnpDmZJ5JdNsZ6zg17sqY7p6T52oWLImkMd7uSOyfNyTyR7LIx1nNu2JM13TklzdcuXBRJY7jbldw5aU7miWSXjbGec8OerOnOKWm+Nn8xYX+SzemksblhT7X7lt3k3LCn2i2126k7S+2W2nUkd9iMmL+YsD/J5nTS2Nywp9p9y25ybthT7Zba7dSdpXZL7TqSO2xGzF9M2J9kczppbG7YU+2+ZTc5N+ypdkvtdurOUruldh3JHTYj5i8m7E+yOZ00NjfsqXbfspucG/ZUu6V2O3Vnqd1Su47kDpsRFy7+UP32t5KbbEy3J+4m6v5y0pzMu3jH1J1jFy7+UP32t5KbbEy3J+4m6v5y0pzMu3jH1J1jFy7+UP32t5KbbEy3J+4m6v5y0pzMu3jH1J1jFy7+UP32t5KbbEy3J+4m6v5y0pzMu3jH1J1jFy422S7nXbxj6s5Su6V2N9l3OaduY6y3ObGhpCH24+av1+d/Yrucd/GOqTtL7Zba3WTf5Zy6jbHe5sSGkobYj5u/Xp//ie1y3sU7pu4stVtqd5N9l3PqNsZ6mxMbShpiP27+en3+J7bLeRfvmLqz1G6p3U32Xc6p2xjrbU5sKGmI/bj568nT2ZxIbrIxdeeTk90E7yfq/mLN1LyLd0y3b7lwMXgumxPJTTam7nxyspvg/UTdX6yZmnfxjun2LRcuBs9lcyK5ycbUnU9OdhO8n6j7izVT8y7eMd2+5cLF4LlsTiQ32Zi688nJboL3E3V/sWZq3sU7ptu3zF+k5OlJQ+y76q2dpJ9qyHrOu3jHWM+5YW9u9y3zFyl5etIQ+656ayfppxqynvMu3jHWc27Ym9t9y/xFSp6eNMS+q97aSfqphqznvIt3jPWcG/bmdt8yf5GSpycNse+qt3aSfqoh6znv4h1jPeeGvbndt1y4KM+9PU/YLueUNAm7Y3PqNom6v5P01tjcWM/5iAsX5bm35wnb5ZySJmF3bE7dJlH3d5LeGpsb6zkfceGiPPf2PGG7nFPSJOyOzanbJOr+TtJbY3NjPecjLlyU596eJ2yXc0qahN2xOXWbRN3fSXprbG6s53zEhYsH6q0d6zk31nNOSUPsqXY7dWc5aTg/wZtUu526s1jD+bj563x6V721Yz3nxnrOKWmIPdVup+4sJw3nJ3iTardTdxZrOB83f51P76q3dqzn3FjPOSUNsafa7dSd5aTh/ARvUu126s5iDefj5q/z6V311o71nBvrOaekIfZUu526s5w0nJ/gTardTt1ZrOF83Px1e3oyP3HjprFv2fyX+AayhnPT7Q3vmG7fcuGiPDeZn7hx09i3bP5LfANZw7np9oZ3TLdvuXBRnpvMT9y4aexbNv8lvoGs4dx0e8M7ptu3XLgoz03mJ27cNPYtm/8S30DWcG66veEd0+1b5i8m7E+yObEx1tuc2BjrOTdJ320oaUx3d6q3+bi71439eTYnNsZ6mxMbYz3nJum7DSWN6e5O9TYfd/e6sT/P5sTGWG9zYmOs59wkfbehpDHd3ane5uPuXjf259mc2BjrbU5sjPWcm6TvNpQ0prs71dt83OXronY7dWen7izWcE5sTN3ZSXprODfd3vBO18kd203mI+YvEp9OtdupOzt1Z7GGc2Jj6s5O0lvDuen2hne6Tu7YbjIfMX+R+HSq3U7d2ak7izWcExtTd3aS3hrOTbc3vNN1csd2k/mI+YvEp1PtdurOTt1ZrOGc2Ji6s5P01nBuur3hna6TO7abzEfMX0yc/EnJbtKQ9TY3Sd9tuuzOjTkljTnZbbl73Zz8eclu0pD1NjdJ32267M6NOSWNOdltuXvdnPx5yW7SkPU2N0nfbbrszo05JY052W25e92c/HnJbtKQ9TY3Sd9tuuzOjTkljTnZbbl8XSQNnfQn6t3FGs4TttudkzUnc2O9zYkNJc3X5i8Sn05JQyf9iXp3sYbzhO1252TNydxYb3NiQ0nztfmLxKdT0tBJf6LeXazhPGG73TlZczI31tuc2FDSfG3+IvHplDR00p+odxdrOE/YbndO1pzMjfU2JzaUNF+bv5iwP8nmxIZqt2O9zRPcnWL3bW7Y0y+brhs3/zV/MWF/ks2JDdVux3qbJ7g7xe7b3LCnXzZdN27+a/5iwv4kmxMbqt2O9TZPcHeK3be5YU+/bLpu3PzX/MWE/Uk2JzZUux3rbZ7g7hS7b3PDnn7ZdN24+a/5i13253Fu2JupnvMEd7t+eWeqIfYJ2+V8xPzFLvvzODfszVTPeYK7Xb+8M9UQ+4Ttcj5i/mKX/XmcG/Zmquc8wd2uX96Zaoh9wnY5HzF/scv+PM4NezPVc57gbtcv70w1xD5hu5yPuHCx+Vz2ZM3U3Fh/MqeThnPDPpHsWsM5sSFrbD5u/nr36ezJmqm5sf5kTicN54Z9Itm1hnNiQ9bYfNz89e7T2ZM1U3Nj/cmcThrODftEsmsN58SGrLH5uPnr3aezJ2um5sb6kzmdNJwb9olk1xrOiQ1ZY/Nx89ft6ZwTG0qaxMkd7ibq/k7SW8O5SfqkSdgdmxMbSpqvXbgoz+Wc2FDSJE7ucDdR93eS3hrOTdInTcLu2JzYUNJ87cJFeS7nxIaSJnFyh7uJur+T9NZwbpI+aRJ2x+bEhpLmaxcuynM5JzaUNImTO9xN1P2dpLeGc5P0SZOwOzYnNpQ0X5u/SHy6qTsT7H53TmxOnNy03WSe4C7Vbkka6vbj7n6Vf56pOxPsfndObE6c3LTdZJ7gLtVuSRrq9uPufpV/nqk7E+x+d05sTpzctN1knuAu1W5JGur24+5+lX+eqTsT7H53TmxOnNy03WSe4C7Vbkka6vbj5r/KP8nUnaV2S+2Wv6HhnKxJ5gnuUtJMsW9154b9iAsXA3Vnqd1Su+VvaDgna5J5gruUNFPsW925YT/iwsVA3Vlqt9Ru+RsazsmaZJ7gLiXNFPtWd27Yj7hwMVB3ltottVv+hoZzsiaZJ7hLSTPFvtWdG/YjLlwUtftWvfuJ7XJO1tic2NBUY7hLSUPW25zYkDXJfNz8dT6davetevcT2+WcrLE5saGpxnCXkoastzmxIWuS+bj563w61e5b9e4ntss5WWNzYkNTjeEuJQ1Zb3NiQ9Yk83Hz1/l0qt236t1PbJdzssbmxIamGsNdShqy3ubEhqxJ5uMuX2/+GexN3VlOGs7JmmRObEzdWZImYXc470runDScj5i/SN2nszd1ZzlpOCdrkjmxMXVnSZqE3eG8K7lz0nA+Yv4idZ/O3tSd5aThnKxJ5sTG1J0laRJ2h/Ou5M5Jw/mI+YvUfTp7U3eWk4ZzsiaZExtTd5akSdgdzruSOycN5yPmLxKfburOTt1Zug1Zw7lJejZkTTI31nNO1tjcTPWcE5sR8xepPn+n7uzUnaXbkDWcm6RnQ9Ykc2M952SNzc1UzzmxGTF/kerzd+rOTt1Zug1Zw7lJejZkTTI31nNO1tjcTPWcE5sR8xepPn+n7uzUnaXbkDWcm6RnQ9Ykc2M952SNzc1UzzmxGXHhYqDu7Jz0ZI3NyRqb39D9FvuE7XI+xe4n8xEXLgbqzs5JT9bYnKyx+Q3db7FP2C7nU+x+Mh9x4WKg7uyc9GSNzckam9/Q/Rb7hO1yPsXuJ/MRFy4G6s7OSU/W2JyssfkN3W+xT9gu51PsfjIfMX/xNv5zUO0Wa2xOSWO6u7d7k9xhQ7XbqTtL7X7iz3z1RP1nW2q3WGNzShrT3b3dm+QOG6rdTt1ZavcTf+arJ+o/21K7xRqbU9KY7u7t3iR32FDtdurOUruf+DNfPVH/2ZbaLdbYnJLGdHdv9ya5w4Zqt1N3ltr9xPxX6581we5354Y9JY2x3WRO1iRz6jYJ203mxIZqd+zCxQvsfndu2FPSGNtN5mRNMqduk7DdZE5sqHbHLly8wO5354Y9JY2x3WRO1iRz6jYJ203mxIZqd+zCxQvsfndu2FPSGNtN5mRNMqduk7DdZE5sqHbHLlwcem5yJ2kMd6l2HfXWUrudunNT/fZiDefExtSdxRrOx81fn3p6cidpDHepdh311lK7nbpzU/32Yg3nxMbUncUazsfNX596enInaQx3qXYd9dZSu526c1P99mIN58TG1J3FGs7HzV+fenpyJ2kMd6l2HfXWUrudunNT/fZiDefExtSdxRrOx81ft6dzbqzvzrt4h7rNDd1vsTd1Z0maE3Y/mY+4cFGey7mxvjvv4h3qNjd0v8Xe1J0laU7Y/WQ+4sJFeS7nxvruvIt3qNvc0P0We1N3lqQ5YfeT+YgLF+W5nBvru/Mu3qFuc0P3W+xN3VmS5oTdT+YjLlyU53JurLc5saE/1VDtPqn7HfXWNPsW5wnb5Xzc/HV7OufGepsTG/pTDdXuk7rfUW9Ns29xnrBdzsfNX7enc26stzmxoT/VUO0+qfsd9dY0+xbnCdvlfNz8dXs658Z6mxMb+lMN1e6Tut9Rb02zb3GesF3Ox81ft6dzbqy3+QneTNhuMj9hNzk37E3dWWq3dBvT7UfMf8n+DM6N9TY/wZsJ203mJ+wm54a9qTtL7ZZuY7r9iPkv2Z/BubHe5id4M2G7yfyE3eTcsDd1Z6nd0m1Mtx8x/yX7Mzg31tv8BG8mbDeZn7CbnBv2pu4stVu6jen2I+a/NPVn2B3OiQ1ZwzmxIWuSuWFv6s637ObJnH7ZfO3CxaHn2h3OiQ1ZwzmxIWuSuWFv6s637ObJnH7ZfO3CxaHn2h3OiQ1ZwzmxIWuSuWFv6s637ObJnH7ZfO3CxaHn2h3OiQ1ZwzmxIWuSuWFv6s637ObJnH7ZfO3CxQuS+9ZwbtifqHd36s4ndX8n6a3hnKxJ5gnumrpz7MLFC5L71nBu2J+od3fqzid1fyfpreGcrEnmCe6aunPswsULkvvWcG7Yn6h3d+rOJ3V/J+mt4ZysSeYJ7pq6c+zCxQuS+9ZwbtifqHd36s4ndX8n6a3hnKxJ5gnumrpzbP7i6/XXen/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB3l/7q8HeX/urwd5f+6vB/k/vXoujNy7IvEAAAAASUVORK5CYII=\",\n                \"plain\": \"00020101021226910014br.gov.bcb.pix2569api.developer.btgpactual.com/v1/p/v2/bacf610aa2d44070a6f83f35079db31b5204001053039865802BR5905teste6005BAURU61081701503162070503***63048A64\"\n            },\n            \"steps\": {\n                \"qrCode\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Abra o leitor de QRCode no APP e escaneie o código informado\",\n                    \"Ou copie o código e cole na função 'Copia e Cola'\",\n                    \"Siga os passos no APP e finalize a transação\"\n                ]\n            },\n            \"sellerTransactions\": [\n                {\n                    \"sellerId\": 1234,\n                    \"tid\": 260461920,\n                    \"uuid\": \"70bc8b8a-6490-3895-be8b-c23fafeaa163\",\n                    \"amount\": 1,\n                    \"commission\": 0,\n                    \"referenceCode\": \"ERD34A2N2AX55-1\",\n                    \"status\": \"PENDING\",\n                    \"creationDate\": \"2025-05-21T17:04:36\",\n                    \"maxAge\": \"2025-05-24T05:04:36\"\n                },\n                {\n                    \"sellerId\": 1234,\n                    \"tid\": 260461921,\n                    \"uuid\": \"1ef7a230-e124-3b8b-8463-dd1169a4febc\",\n                    \"amount\": 1,\n                    \"commission\": 0,\n                    \"referenceCode\": \"ERD34A2N2AX55-2\",\n                    \"status\": \"PENDING\",\n                    \"creationDate\": \"2025-05-21T17:04:36\",\n                    \"maxAge\": \"2025-05-24T05:04:37\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"96c56008-6a87-4b8a-bc4f-7547447cbbe0"}],"id":"00c80cde-2287-4cfd-a62d-41a1d83ae200","description":"<p><strong>Our API collections for checkout requests</strong></p>\n","_postman_id":"00c80cde-2287-4cfd-a62d-41a1d83ae200"},{"name":"Payouts","item":[{"name":"batch Payout request","id":"094ecf17-b273-473c-844d-6bc40750ca7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"payments\": [{\n\t\t\"amount\": 1.00,\n\t\t\"referenceCode\": \"X540QG02\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-11-29 15:00:00\",\n\t\t\"notes\": \"example-01\"\n\t},{\n\t\t\"amount\": 1.99,\n\t\t\"referenceCode\": \"X540QG12\",\n\t\t\"email\": \"foo1@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000001\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"branch\": \"7444\",\n\t\t\t\t\"account\": \"000002-2\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-11-25 00:00:00\",\n\t\t\"notes\": \"example-02\"\n\t},{\n\t\t\"amount\": 3.99,\n\t\t\"referenceCode\": \"X540QG22\",\n\t\t\"email\": \"foo2@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000002\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"SAVING\",\n\t\t\t\t\"bankCode\": \"104\",\n\t\t\t\t\"branch\": \"7474\",\n\t\t\t\t\"account\": \"000022-0\"\n\t\t\t}\n\t\t},\n\t\t\"notes\": \"saving-account-example\"\n\t}]\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create/batch","description":"<h1 id=\"payout-batch-request\">Payout batch request</h1>\n<p>Payouts at PayMee are cash-out transactions;</p>\n<p>Before we start, there are some important tips:</p>\n<ol>\n<li>you must have sufficient funds;</li>\n<li>you shoud provide a valid and complete beneficiary details</li>\n<li>Register your server CIDR for production enviroment</li>\n</ol>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>payments.[x].currency</td>\n<td>string</td>\n<td>3</td>\n<td>no</td>\n<td>ISO-4217 - default: BRL</td>\n</tr>\n<tr>\n<td>payments.[x].amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>true</td>\n<td>Order Amount</td>\n</tr>\n<tr>\n<td>payments.[x].referenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>false</td>\n<td>Unique order identifier</td>\n</tr>\n<tr>\n<td>payments.[x].scheduledDate</td>\n<td>string</td>\n<td>19</td>\n<td>false</td>\n<td>payment trigger date - format \"yyyy-MM-dd HH:mm:ss\" our timezone is GMT-3</td>\n</tr>\n<tr>\n<td>payments.[x].notes</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>payment optional notes</td>\n</tr>\n<tr>\n<td>payments.[x].callbackURL</td>\n<td>string</td>\n<td>2083</td>\n<td>false</td>\n<td>individual callback URL</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.email</td>\n<td>string</td>\n<td>75</td>\n<td>false</td>\n<td>beneficiary's email</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.document.type</td>\n<td>enum</td>\n<td>25</td>\n<td>true</td>\n<td>beneficiary's document type. (CPF - CNPJ - OTHER)</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.document.number</td>\n<td>enum</td>\n<td>20</td>\n<td>true</td>\n<td>beneficiary's document number</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.bankDetails.type</td>\n<td>enum</td>\n<td>20</td>\n<td>true</td>\n<td>beneficiary's bank account type (CHECKING - SAVING - UNKNOWN)</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.bankDetails.bankCode</td>\n<td>string</td>\n<td>3</td>\n<td>true</td>\n<td>beneficiary's bank code - COMPE code</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.bankDetails.branch</td>\n<td>string</td>\n<td>8</td>\n<td>true</td>\n<td>beneficiary's bank branch number</td>\n</tr>\n<tr>\n<td>payments.[x].beneficiary.bankDetails.account</td>\n<td>enum</td>\n<td>18</td>\n<td>true</td>\n<td>beneficiary's bank account number</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-document-type-values\">available document type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CPF</td>\n</tr>\n<tr>\n<td>CNPJ</td>\n</tr>\n<tr>\n<td>OHTER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-bank-account-type-values\">available bank account type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CHECKING</td>\n<td>checking account (conta-corrente)</td>\n</tr>\n<tr>\n<td>SAVING</td>\n<td>saving account (conta-poupança)</td>\n</tr>\n<tr>\n<td>UNKNOWN</td>\n<td>unknown account type</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-brazilian-compe-codes\">available Brazilian COMPE codes</h2>\n<p>reference: <a href=\"https://www.bcb.gov.br/pom/spb/estatistica/port/ASTR003.pdf\">https://www.bcb.gov.br/pom/spb/estatistica/port/ASTR003.pdf</a> </p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>resultSize</td>\n<td>int</td>\n<td>registered payout count</td>\n</tr>\n<tr>\n<td>result</td>\n<td>array[payouts]</td>\n<td>registered payouts details</td>\n</tr>\n<tr>\n<td>result[x].id</td>\n<td>long</td>\n<td>PayMee's internal Payout id</td>\n</tr>\n<tr>\n<td>result[x].uuid</td>\n<td>string</td>\n<td>PayMee's internal Payout uuid identifier</td>\n</tr>\n<tr>\n<td>result[x].type</td>\n<td>string</td>\n<td>transaction type label</td>\n</tr>\n<tr>\n<td>result[x].situation</td>\n<td>enum</td>\n<td>transaction status</td>\n</tr>\n<tr>\n<td>result[x].currency</td>\n<td>string</td>\n<td>transaction currency</td>\n</tr>\n<tr>\n<td>result[x].amount</td>\n<td>number</td>\n<td>transaction amount</td>\n</tr>\n<tr>\n<td>result[x].appliedRate</td>\n<td>number</td>\n<td>applied service fee</td>\n</tr>\n<tr>\n<td>result[x].total</td>\n<td>number</td>\n<td>transaction total due</td>\n</tr>\n<tr>\n<td>result[x].creation</td>\n<td>string</td>\n<td>transaction creation date - format \"yyyy-MM-dd HH:mm:ss\" our timezone is GMT-3</td>\n</tr>\n<tr>\n<td>rejectedItems[x].beneficiary.document.type</td>\n<td>request document type [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].beneficiary.document.number</td>\n<td>request document number [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].beneficiary.bankDetails.type</td>\n<td>request bankdetais account type [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].beneficiary.bankDetails.bankCode</td>\n<td>request bankdetais bank Code (COMPE) [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].beneficiary.bankDetails.branch</td>\n<td>request bankdetais branch [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].beneficiary.bankDetails.account</td>\n<td>request bankdetais account [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].amount</td>\n<td>request amount [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].referenceCode</td>\n<td>request referenceCode [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].email</td>\n<td>request email [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].scheduledDate</td>\n<td>request scheduledDate [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].notes</td>\n<td>request notes [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].callbackURL</td>\n<td>request callbackURL [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].errors.field</td>\n<td>rejected field [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].errors.message</td>\n<td>rejected message [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>rejectedItems[x].errorCount</td>\n<td>errors count [when PARTIAL_SUCCESS]</td>\n<td></td>\n</tr>\n<tr>\n<td>errors[x].field</td>\n<td>rejected field [when VALIDATION_FAILURE]</td>\n<td></td>\n</tr>\n<tr>\n<td>errors[x].message</td>\n<td>rejected message [when VALIDATION_FAILURE]</td>\n<td></td>\n</tr>\n<tr>\n<td>errorCount</td>\n<td>errors count [when VALIDATION_FAILURE]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status-values\">available status values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n<th>value</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SUCESSO</td>\n<td>0</td>\n<td>complete success response</td>\n</tr>\n<tr>\n<td>PARTIAL_SUCCESS</td>\n<td>partial success response</td>\n<td></td>\n</tr>\n<tr>\n<td>VALIDATION_FAILURE</td>\n<td>validation failure (detaits in errors description)</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-situation-values\">available situation values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PENDING</td>\n</tr>\n<tr>\n<td>CANCELLED</td>\n</tr>\n<tr>\n<td>PAID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","payout","create","batch"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"0d63ffef-a29e-40fa-953b-e61eebdec072","name":"partial-success-response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"payments\": [{\n\t\t\"amount\": 1.00,\n\t\t\"referenceCode\": \"X540QG02\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-11-29 15:00:00\",\n\t\t\"notes\": \"example-01\"\n\t},{\n\t\t\"amount\": 1.99,\n\t\t\"referenceCode\": \"X540QG12\",\n\t\t\"email\": \"foo1@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000001\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"branch\": \"7444\",\n\t\t\t\t\"account\": \"000002-2\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-11-25 00:00:00\",\n\t\t\"notes\": \"example-02\"\n\t},{\n\t\t\"amount\": 3.99,\n\t\t\"referenceCode\": \"X540QG22\",\n\t\t\"email\": \"foo2@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000002\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"SAVING\",\n\t\t\t\t\"bankCode\": \"104\",\n\t\t\t\t\"branch\": \"7474\",\n\t\t\t\t\"account\": \"000022-0\"\n\t\t\t}\n\t\t},\n\t\t\"notes\": \"saving-account-example\"\n\t}]\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 23 Oct 2020 21:20:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"message\": \"partial success\",\n    \"totalElements\": 2,\n    \"totalPages\": 1,\n    \"resultSize\": 2,\n    \"result\": [\n        {\n            \"id\": 33585,\n            \"uuid\": \"d074debe-433b-342f-bcac-3088f403719e\",\n            \"type\": \"PAYOUT\",\n            \"situation\": \"PENDING\",\n            \"currency\": \"BRL\",\n            \"amount\": 1,\n            \"discounts\": 0,\n            \"total\": 1,\n            \"serviceFee\": 3.5,\n            \"referenceCode\": \"X540QG02\",\n            \"creation\": \"2020-10-23 18:20:20\"\n        },\n        {\n            \"id\": 33586,\n            \"uuid\": \"1898d70c-105a-3542-9736-46c0c15dce9d\",\n            \"type\": \"PAYOUT\",\n            \"situation\": \"PENDING\",\n            \"currency\": \"BRL\",\n            \"amount\": 3.99,\n            \"discounts\": 0,\n            \"total\": 3.99,\n            \"serviceFee\": 3.5,\n            \"referenceCode\": \"X540QG22\",\n            \"creation\": \"2020-10-23 18:20:20\"\n        }\n    ],\n    \"rejectedItems\": [\n        {\n            \"beneficiary\": {\n                \"document\": {\n                    \"bankCode\": null,\n                    \"type\": \"CPF\",\n                    \"number\": \"00000000001\"\n                },\n                \"bankDetails\": {\n                    \"type\": \"CHECKING\",\n                    \"bankCode\": null,\n                    \"branch\": \"7444\",\n                    \"account\": \"000002-2\"\n                }\n            },\n            \"amount\": 1.99,\n            \"referenceCode\": \"X540QG12\",\n            \"email\": \"foo1@bar.com\",\n            \"scheduledDate\": \"2020-11-25 00:00:00\",\n            \"notes\": \"example-02\",\n            \"callbackURL\": null,\n            \"errors\": [\n                {\n                    \"field\": \"payments[1].beneficiary.bankDetails.bankCode\",\n                    \"message\": \"por favor informe um codigo COMPE valido.\"\n                }\n            ],\n            \"errorCount\": 1\n        }\n    ]\n}"},{"id":"f771c4a9-8490-4957-9275-16751c9084ba","name":"payout batch request - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/javascript","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"payments\": [{\n\t\t\"amount\": 1.00,\n\t\t\"referenceCode\": \"X540QG0\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2019-11-29 15:00:00\",\n\t\t\"notes\": \"example-01\"\n\t},{\n\t\t\"amount\": 1.99,\n\t\t\"referenceCode\": \"X540QG1\",\n\t\t\"email\": \"foo1@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000001\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"341\",\n\t\t\t\t\"branch\": \"7444\",\n\t\t\t\t\"account\": \"000002-2\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2019-11-25 00:00:00\",\n\t\t\"notes\": \"example-02\"\n\t},{\n\t\t\"amount\": 3.99,\n\t\t\"referenceCode\": \"X540QG2\",\n\t\t\"email\": \"foo2@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000002\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"SAVING\",\n\t\t\t\t\"bankCode\": \"104\",\n\t\t\t\t\"branch\": \"7474\",\n\t\t\t\t\"account\": \"000022-0\"\n\t\t\t}\n\t\t},\n\t\t\"notes\": \"saving-account-example\"\n\t}]\n}","options":{"raw":{"language":"javascript"}}},"url":"https://{{env}}.paymee.com.br/v1.1/payout/create/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 21 Nov 2019 22:32:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"totalElements\": 3,\n    \"totalPages\": 1,\n    \"resultSize\": 3,\n    \"result\": [\n        {\n            \"id\": 1103460,\n            \"uuid\": \"734150a2-3377-3717-832c-6f142ece7fa8\",\n            \"type\": \"PAYOUT\",\n            \"situation\": \"PENDING\",\n            \"currency\": \"BRL\",\n            \"amount\": 1,\n            \"discounts\": 0,\n            \"total\": 1,\n            \"appliedRate\": 3.5,\n            \"creation\": \"2019-11-21 19:33:00\"\n        },\n        {\n            \"id\": 1103461,\n            \"uuid\": \"b8784391-8d54-3d72-a9e6-5db10499c674\",\n            \"type\": \"PAYOUT\",\n            \"situation\": \"PENDING\",\n            \"currency\": \"BRL\",\n            \"amount\": 1.99,\n            \"discounts\": 0,\n            \"total\": 1.99,\n            \"appliedRate\": 3.5,\n            \"creation\": \"2019-11-21 19:33:00\"\n        },\n        {\n            \"id\": 1103462,\n            \"uuid\": \"ad4d5020-c896-324e-8979-03b7b5e63895\",\n            \"type\": \"PAYOUT\",\n            \"situation\": \"PENDING\",\n            \"currency\": \"BRL\",\n            \"amount\": 3.99,\n            \"discounts\": 0,\n            \"total\": 3.99,\n            \"appliedRate\": 3.5,\n            \"creation\": \"2019-11-21 19:33:00\"\n        }\n    ]\n}"}],"_postman_id":"094ecf17-b273-473c-844d-6bc40750ca7f"},{"name":"individual payout request","id":"81d8b695-5d8a-48c7-bf82-c4e0876ff62a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\t\"amount\": 10.01,\n\t\t\"referenceCode\": \"ABC012363YAA\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"notes\": \"example-01\",\n\t\t\"callbackURL\": \"https://www2.paymee.com.br/callback.php\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create","description":"<h1 id=\"payout-indivual-request\">Payout indivual request</h1>\n<p>Payouts at PayMee are cash-out transactions;</p>\n<p>Before we start, there are some important tips:</p>\n<ol>\n<li><p>you must have sufficient funds;</p>\n</li>\n<li><p>you shoud provide a valid and complete beneficiary details</p>\n</li>\n<li><p>Register your server CIDR for production enviroment</p>\n</li>\n</ol>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>3</td>\n<td>no</td>\n<td>ISO-4217 - default: BRL</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>true</td>\n<td>Order Amount</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>false</td>\n<td>Unique order identifier</td>\n</tr>\n<tr>\n<td>scheduledDate</td>\n<td>string</td>\n<td>19</td>\n<td>false</td>\n<td>payment trigger date - format \"yyyy-MM-dd HH:mm:ss\" our timezone is GMT-3</td>\n</tr>\n<tr>\n<td>callbackURL</td>\n<td>string</td>\n<td>2083</td>\n<td>false</td>\n<td>individual callback URL</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>payment optional notes</td>\n</tr>\n<tr>\n<td>beneficiary.email</td>\n<td>string</td>\n<td>75</td>\n<td>false</td>\n<td>beneficiary's email</td>\n</tr>\n<tr>\n<td>beneficiary.document.type</td>\n<td>enum</td>\n<td>25</td>\n<td>true</td>\n<td>beneficiary's document type. (CPF - CNPJ - OTHER)</td>\n</tr>\n<tr>\n<td>beneficiary.document.number</td>\n<td>enum</td>\n<td>20</td>\n<td>true</td>\n<td>beneficiary's document number</td>\n</tr>\n<tr>\n<td>beneficiary.bankDetails.type</td>\n<td>enum</td>\n<td>20</td>\n<td>true</td>\n<td>beneficiary's bank account type (CHECKING - SAVING - UNKNOWN)</td>\n</tr>\n<tr>\n<td>beneficiary.bankDetails.bankCode</td>\n<td>string</td>\n<td>3</td>\n<td>true</td>\n<td>beneficiary's bank code - COMPE code</td>\n</tr>\n<tr>\n<td>beneficiary.bankDetails.branch</td>\n<td>string</td>\n<td>8</td>\n<td>no</td>\n<td>beneficiary's bank branch number</td>\n</tr>\n<tr>\n<td>beneficiary.bankDetails.account</td>\n<td>string</td>\n<td>18</td>\n<td>no</td>\n<td>beneficiary's bank account number</td>\n</tr>\n<tr>\n<td>beneficiary.bankDetails.pixKey</td>\n<td>string</td>\n<td>100</td>\n<td>no</td>\n<td>beneficiary's bank details via PixKey</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-document-type-values\">available document type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CPF</td>\n</tr>\n<tr>\n<td>CNPJ</td>\n</tr>\n<tr>\n<td>OHTER</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-bank-account-type-values\">available bank account type values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CHECKING</td>\n<td>checking account (conta-corrente)</td>\n</tr>\n<tr>\n<td>SAVING</td>\n<td>saving account (conta-poupança)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-brazilian-compe-codes\">available Brazilian COMPE codes</h2>\n<p>reference: <a href=\"https://www.bcb.gov.br/pom/spb/estatistica/port/ASTR003.pdf\">https://www.bcb.gov.br/pom/spb/estatistica/port/ASTR003.pdf</a></p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>resultSize</td>\n<td>int</td>\n<td>registered payout count</td>\n</tr>\n<tr>\n<td>result</td>\n<td>array[payouts]</td>\n<td>registered payouts details</td>\n</tr>\n<tr>\n<td>id</td>\n<td>long</td>\n<td>PayMee's internal Payout id</td>\n</tr>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>PayMee's internal Payout uuid identifier</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>transaction type label</td>\n</tr>\n<tr>\n<td>situation</td>\n<td>enum</td>\n<td>transaction status</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>transaction currency</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>transaction amount</td>\n</tr>\n<tr>\n<td>appliedRate</td>\n<td>number</td>\n<td>applied service fee</td>\n</tr>\n<tr>\n<td>total</td>\n<td>number</td>\n<td>transaction total due</td>\n</tr>\n<tr>\n<td>creation</td>\n<td>string</td>\n<td>transaction creation date - format \"yyyy-MM-dd HH:mm:ss\" our timezone is GMT-3</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>50</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-situation-values\">available 'situation' values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PENDING</td>\n</tr>\n<tr>\n<td>CANCELLED</td>\n</tr>\n<tr>\n<td>PAID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-validation-vailure-responses\">available validation vailure responses</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>error</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>referenceCode</td>\n<td>tid.not_found</td>\n<td>transaction not found</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>payout.amount.gt</td>\n<td>transaction must be less than R$ XX.XX</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>tid.not_pending</td>\n<td>transaction not pending</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>tid.not_found</td>\n<td>payout is marked as Remark</td>\n</tr>\n<tr>\n<td>x-api-key</td>\n<td>merchant.no_role</td>\n<td>merchant not authorized - contact support for role setup</td>\n</tr>\n<tr>\n<td>x-api-key</td>\n<td>merchant.ip_not_allowed</td>\n<td>merchant ip not authorized - contact support IP Address</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>amount.no_funds</td>\n<td>you do not have sufficient funds: Balance After</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>amount.exceeded</td>\n<td>your monthly limit for this user has exceeded - sum: R$ XXX.XX</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","payout","create"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"9714236c-0a79-4c6f-8c1d-0076c8161c11","name":"success response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\t\"amount\": 1.00,\n\t\t\"referenceCode\": \"ABC01234\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-01-25 15:00:00\",\n\t\t\"notes\": \"example-01\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 20 Jan 2020 22:50:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 21526,\n    \"uuid\": \"8701772d-2d96-370d-a7a3-e2709e632658\",\n    \"type\": \"PAYOUT\",\n    \"situation\": \"PENDING\",\n    \"currency\": \"BRL\",\n    \"amount\": 1,\n    \"discounts\": 0,\n    \"total\": 1,\n    \"serviceFee\": 3.5,\n    \"creation\": \"2020-01-20 19:50:20\"\n}"},{"id":"5b6f6cae-15c9-4022-b03b-595eb0166c6b","name":"fileld validation error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\t\"amount\": 1.00,\n\t\t\"referenceCode\": \"ABC01236\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-01-25 15:00:00\",\n\t\t\"notes\": \"example-01\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 20 Jan 2020 22:57:30 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"referenceCode\",\n            \"message\": \"referenceCode duplicado\"\n        }\n    ]\n}"},{"id":"0ea367d9-1a82-45b4-9a9c-0f7308951748","name":"bad credentials","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"x-api-key","type":"text"},{"key":"x-api-token","value":"x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\t\"amount\": 1.00,\n\t\t\"referenceCode\": \"ABC01236\",\n\t\t\"email\": \"foo@bar.com\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"00000000000\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n\t\t\t\t\"type\": \"CHECKING\",\n\t\t\t\t\"bankCode\": \"077\",\n\t\t\t\t\"branch\": \"0001\",\n\t\t\t\t\"account\": \"000001-5\"\n\t\t\t}\n\t\t},\n\t\t\"scheduledDate\": \"2020-01-25 15:00:00\",\n\t\t\"notes\": \"example-01\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 20 Jan 2020 22:58:33 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"message\": \"Access Denied\",\n            \"error\": \"Forbidden\"\n        }\n    ]\n}"},{"id":"1b56f9ba-7ebf-4bd2-9a4a-1667d0a0b956","name":"individual payout request pix key - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\t\"amount\": 0.01,\n\t\t\"referenceCode\": \"CHAVEPIXTESTES001\",\n\t\t\"email\": \"ti@paymee.com.br\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"01234567890\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n                \"pixKey\": \"+5511999999999\"\n\t\t\t}\n\t\t},\n\t\t\"notes\": \"pixKey\",\n\t\t\"callbackURL\": \"https://www2.paymee.com.br/callback.php\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 27 May 2021 01:47:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 49913,\n    \"uuid\": \"b1b6c32c-65a5-3ecc-8c20-d1d24d7a1e40\",\n    \"type\": \"PAYOUT\",\n    \"situation\": \"PENDING\",\n    \"currency\": \"BRL\",\n    \"amount\": 0.01,\n    \"discounts\": 0,\n    \"total\": 0.01,\n    \"serviceFee\": 3.5,\n    \"creation\": \"2021-05-26 22:47:42\",\n    \"beneficiary\": {\n        \"bank\": \"000 - PIX\",\n        \"branch\": \"0000\",\n        \"account\": \"000000-0\"\n    },\n    \"authorizationKey\": \"2d1e28e2-b820-48fb-8b58-d2dc32b25944\"\n}"},{"id":"b81e909c-a2bb-4dde-9886-cd4d588c5476","name":"individual payout request pix key - pix key not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\t\"amount\": 0.01,\n\t\t\"referenceCode\": \"CHAVEPIXTESTES003\",\n\t\t\"email\": \"ti@paymee.com.br\",\n\t\t\"beneficiary\": {\n\t\t\t\"document\": {\n\t\t\t\t\"type\": \"CPF\",\n\t\t\t\t\"number\": \"01234567890\"\n\t\t\t},\n\t\t\t\"bankDetails\": {\n                \"pixKey\": \"00000000000\"\n\t\t\t}\n\t\t},\n\t\t\"notes\": \"pixKey\",\n\t\t\"callbackURL\": \"https://www2.paymee.com.br/callback.php\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/payout/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 27 May 2021 01:49:11 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"beneficiary.bankDetails.pixKey\",\n            \"message\": \"Chave DICT não encontrada\"\n        }\n    ]\n}"}],"_postman_id":"81d8b695-5d8a-48c7-bf82-c4e0876ff62a"},{"name":"cancel a Payout","id":"e2c1b5d8-d286-4648-bb47-e5cf48a476b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"uuid\": \"83abc908-9233-4b66-b455-2339809886b1\",\n\t\"reason\": \"example\"\n}"},"url":"https://{{env}}.paymee.com.br/v1.1/payout","description":"<h1 id=\"payout-cancelation\">Payout cancelation</h1>\n<p>;</p>\n<p>Before we start, there are some important notes:</p>\n<ol>\n<li>the transactions should have <strong>PENDING</strong> status and not marked as <strong>IN PROCESSING</strong></li>\n</ol>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>36</td>\n<td>yes</td>\n<td>Payout's UUID</td>\n</tr>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>255</td>\n<td>no</td>\n<td>cancel reason</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","payout"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2c1b5d8-d286-4648-bb47-e5cf48a476b3"},{"name":"Authorize Payout","id":"1e22d00c-5229-4063-a8f4-6dd5eb3287c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/payout/authorize/{{tid}}/{{authorizationCode}}","urlObject":{"protocol":"https","path":["v1.1","payout","authorize","{{tid}}","{{authorizationCode}}"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"2b40e334-5a87-4094-9af4-2b76cffc6760","name":"Authorize Payout - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/payout/authorize/{{tid}}/{{authorizationCode}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 27 May 2021 01:51:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"uuid\": \"1e637332-b2dd-3d3a-b76c-03e5bcb1dd0a\",\n    \"tid\": 49916,\n    \"response\": {\n        \"tid\": 49916,\n        \"response\": {\n            \"pagamentoId\": \"2d18f284-19fc-4434-887d-765b6b1a44ec\",\n            \"endToEndId\": \"E710278662021052700421198558814A\",\n            \"recebedor\": {\n                \"ispb\": \"00000000\",\n                \"conta\": {\n                    \"banco\": \"000\",\n                    \"bancoNome\": \"PAYMEE BRASIL\",\n                    \"agencia\": \"0000\",\n                    \"numero\": \"00000-5\",\n                    \"tipo\": \"ContaCorrente\"\n                },\n                \"pessoa\": {\n                    \"documento\": \"28683892000191\",\n                    \"tipoDocumento\": \"CNPJ\",\n                    \"nome\": \"PAYMEE BRASIL SERVICOS DE PAGAMENTOS S.A\",\n                    \"nomeFantasia\": null\n                }\n            },\n            \"pagador\": {\n                \"ispb\": \"00000000\",\n                \"conta\": {\n                    \"banco\": \"000\",\n                    \"bancoNome\": \"PAYMEE BRASIL\",\n                    \"agencia\": \"0000\",\n                    \"numero\": \"000000-0\",\n                    \"tipo\": \"ContaCorrente\"\n                },\n                \"pessoa\": {\n                    \"documento\": \"01234567890\",\n                    \"tipoDocumento\": \"CPF\",\n                    \"nome\": \"FOO BAR\",\n                    \"nomeFantasia\": null\n                }\n            }\n        }\n    },\n    \"status\": 0,\n    \"message\": \"success\"\n}"},{"id":"46a05c58-b279-4574-8a92-781c5545026a","name":"Authorize Payout - fail","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/payout/authorize/{{tid}}/{{authorizationCode}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 27 May 2021 01:52:29 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"token\",\n            \"message\": \"invalid authorization token\"\n        }\n    ]\n}"}],"_postman_id":"1e22d00c-5229-4063-a8f4-6dd5eb3287c3"}],"id":"a1ee7733-f6ab-4f40-9049-18a29c5367ab","description":"<p><strong>Our API collection for Payouts requests</strong></p>\n","_postman_id":"a1ee7733-f6ab-4f40-9049-18a29c5367ab"},{"name":"get available payment methods","id":"399e3335-8d41-45f3-9307-cb9e84cdb0c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/available_payment_methods","description":"<h1 id=\"response\"><strong>Response</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th><strong>DESCRIPTION</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>payment_method</td>\n<td>array[PaymentMethod]</td>\n<td>array of all availabled payment methods</td>\n</tr>\n<tr>\n<td>payment_method[x].type</td>\n<td>enum[pix, wire_transfer, cash_deposit]</td>\n<td>the ayment method type</td>\n</tr>\n<tr>\n<td>payment_method[x].value</td>\n<td>string</td>\n<td>the payment method value</td>\n</tr>\n<tr>\n<td>payment_method[x].label</td>\n<td>string</td>\n<td>description about the payment method</td>\n</tr>\n<tr>\n<td>payment_method[x].bank_code</td>\n<td>string</td>\n<td>COMPE code from chosen wire_transfer option</td>\n</tr>\n<tr>\n<td>payment_method[x].payment_method_name</td>\n<td>string</td>\n<td>display payment method name</td>\n</tr>\n<tr>\n<td>payment_method[x].approval_deadline</td>\n<td>integer</td>\n<td>approval deadline after payment (in seconds)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","available_payment_methods"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"68c5b747-4e48-4fc4-a2ef-22db7d75b816","name":"success response","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/available_payment_methods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 06 Nov 2023 18:27:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"payment_methods\": [\n        {\n            \"type\": \"pix\",\n            \"value\": \"PIX\",\n            \"label\": \"Pagamento via PIX\"\n        },\n        {\n            \"type\": \"wire_transfer\",\n            \"value\": \"BB_TRANSFER\",\n            \"label\": \"Pagamento por transferência via Banco do Brasil\"\n        },\n        {\n            \"type\": \"wire_transfer\",\n            \"value\": \"BRADESCO_TRANSFER\",\n            \"label\": \"Pagamento por transferência via Bradesco\"\n        },\n        {\n            \"type\": \"wire_transfer\",\n            \"value\": \"CEF_TRANSFER\",\n            \"label\": \"Pagamento por transferência via Caixa\"\n        },\n        {\n            \"type\": \"wire_transfer\",\n            \"value\": \"SANTANDER_TRANSFER\",\n            \"label\": \"Pagamento por transferência via Santander Brasil\"\n        },\n        {\n            \"type\": \"wire_transfer\",\n            \"value\": \"BS2_TRANSFER\",\n            \"label\": \"Pagamento por transferência via Banco BS2\"\n        },\n        {\n            \"type\": \"cash_deposit\",\n            \"value\": \"BB_DI\",\n            \"label\": \"Pagamento por depósito bancário via Banco do Brasil\"\n        },\n        {\n            \"type\": \"cash_deposit\",\n            \"value\": \"SANTANDER_DI\",\n            \"label\": \"Pagamento por depósito bancário via Santander Brasil\"\n        }\n    ],\n    \"status\": 0,\n    \"message\": \"success\"\n}"}],"_postman_id":"399e3335-8d41-45f3-9307-cb9e84cdb0c0"},{"name":"get pix data from a sale","id":"f6943562-0392-4e9e-af5d-175ff47692cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"http://{{env}}.paymee.com.br/v1.1/transactions/pix/{{transactionUUID}}","description":"<h1 id=\"query-a-transaction\">Query a transaction</h1>\n<p>To query a transaction, it is necessary to do a GET for the Payment feature as the example.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>qrCode</td>\n<td>object</td>\n<td>pix QRCode Object</td>\n</tr>\n<tr>\n<td>qrCode.plain</td>\n<td>string</td>\n<td>PIX QRCode plain text</td>\n</tr>\n<tr>\n<td>qrCode.base64</td>\n<td>string</td>\n<td>PIX QRCode Base64 PNG</td>\n</tr>\n<tr>\n<td>qrCode.url</td>\n<td>string</td>\n<td>PIX QRCode PNG URL</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"http","path":["v1.1","transactions","pix","{{transactionUUID}}"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"04abccf0-3527-45b0-a657-f705fbb9e3d4","name":"success response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions/pix/{{transactionUUID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Fri, 04 Feb 2022 17:52:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"qrCode\": {\n        \"plain\": \"00020126890014BR.GOV.BCB.PIX2567api-pix.bancobs2.com.br/spi/v2/d4dd5d08-d6ff-4b41-913c-4d9344e9a27c52040000530398654040.015802BR5906PAYMEE6014Belo Horizonte61083038040362070503***63040857\",\n        \"base64\": \"iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAIAAAAHjs1qAAAGJklEQVR42u3cUW6cQBBFUe9/084KIiWib1Uzc94ncgjQB6TnavnnV+Rr8uMRCO4iuIvgLoK7CO4iuIvgLoK7CO4iuIvgLriL4C6CuwjuIriL4C6CuwjuIriL4C6Cu+AugrsI7iJfz/0nyN/O/+Ta/vf6T/3Mk/va+n//5efrdccdd9xxxx133HHHveVen2frVTl1bQXZyWytO+6444477rjjjjvuLffJ6nbqnLe9fqe4nzr/1rrjjjvuuOOOO+644/4+7sU4rPj5yVHRVg3FHXfccccdd9xxxx33qsbV46ea2ti2qk/6zOGOO+6444477rjj/ltcbnHbTypX/QpNfgJOjdXesu6444477rjjjjvuuN9b3RzfPV6sO+6O446747jj7jju7/uTqKcqYFFJnyzb5Pmf3PsNIy3ccccdd9xxxx133NuqWoxUaiJPznnbFrF6q5kxE+6444477rjjjvvvV+2ZKSrXk1doknK9Na2ozvW94I477rjjjjvuuOP+OVV1spZNVufJaju5Fl+0IxJ33HHHHXfcccf9Y7ifYlRwrF/jt1TVmm99nbjjjjvuuOOOO+64t/SLavWkEtXbsIotbj+HcupzUPxKAHfccccdd9xxxx33lvjKWOFF46qbx0On1n2FOO6444477rjjjjvujx5TUenqV7Go3Vv1uh4Jnaq8uOOOO+6444477rjPjZm2HsHkqOXm7WKTo65iJIc77rjjjjvuuOOO+35VrSvaW2px8dq/5bmtjB1xxx133HHHHXfccX/0uItzPqlT9RJOXkOxLvXnqf19Ce6444477rjjjjvuW1wmq+HNW6+27qse+eGOO+6444477rjjvjNmqrdn1VuOJs9fb8na2ha2Xltxxx133HHHHXfccf+9gVFNf7LyTpK6eYyFO+6444477rjjjvs7uJ/6t/Wy1VvW6mpbZPL1wB133HHHHXfcccf9POXJx1qPXSbvd3Jc9YTp5NrhjjvuuOOOO+644z43Nqor2g2P/sl93fApKdar8IA77rjjjjvuuOOO+05VfVKhJkczp+rvZGV8cs3F9fvNDO6444477rjjjvtd3Ivbq0czT6gVVXWyak9W1R14uOOOO+6444477rhvjUJuGOtsjcMmX+lT92XMhDvuuOOOO+644/4+7sWYox5F1dd8im89+qlfmw+sqrjjjjvuuOOOO+7Xci9GP5PnKepXTXxyW1ixNW1sLIU77rjjjjvuuOOO+xV1ttjSVIx46mubHF1tfcJwxx133HHHHXfccZ+rU0UNOnW8WKrJelePkCaDO+6444477rjjjvu9VXWLWvEa13XzFPfJXxuc8oA77rjjjjvuuOOO+12jhCe8iu1HW5Xr1HM4xXfyc4A77rjjjjvuuOOO+11jpq3R1RaRU6O0yfFcvXZj28Vwxx133HHHHXfccX801rmBbL1UW6OfyTGWHZG444477rjjjjvu38W9oL81mjlVT28YS536bKmquOOOO+6444477u8YM516VYqq9IT+qXuva3r9bIv7xR133HHHHXfccce95V6PkIpKOrk8xchpcpRWf1ZeVlVxxx133HHHHXfcP557XdEmX4+tV3qy9tXjwjH6uOOOO+6444477rgnfCcrWrE16i01t677H75FDHfccccdd9xxx/3V3LeIn3rEk9d/asm3tpEV285wxx133HHHHXfccd+pqpOjq+J4Pbo6Na4q/u0No0Pccccdd9xxxx133Per6qll2BoDFWOpevtU/RrXW8dwxx133HHHHXfccb/rzyr973kmt1htXVux5av+DD15VrjjjjvuuOOOO+6473MvKl1x/noMVGylKrgXr83k5xJ33HHHHXfccccd93dwL44Xo66a/m0jv5V6ijvuuOOOO+644477Gvcn11NXq2ILVLG1a3L73eRa44477rjjjjvuuON+hnvx2jwhXt9XzbQgMvlsJ+8Ld9xxxx133HHHHffz1bCuNTeMTmoWWyOtYo1wxx133HHHHXfccW+5i1wb3AV3EdxFcBfBXQR3EdxFcBfBXQR3EdxFcBfcRXAXwV0EdxHcRXAXwV0EdxHcRXAXwV1wF8FdBHeRt+UPBOtYx51q2yYAAAAASUVORK5CYII=\",\n        \"url\": \"https://api.paymee.com.br/resources/payments/pix/qrcode/4ccad173-6206-3b30-a7ce-4ea455040ba2\"\n    },\n    \"status\": 0,\n    \"message\": \"success\"\n}"},{"id":"5d6962b1-b10f-4740-9c9e-2a5ab374f42c","name":"transaction not found response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/0e9b0338-9e40-3b53-be8a-cb264cb70a4f"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:39:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":998,\"message\":\"transaction not found\",\"errorCount\":1,\"errors\":[{\"field\":\"saleToken\",\"message\":\"transacao inexistente\"}]}"},{"id":"ca937617-56ad-43f1-90ca-890e661edd7a","name":"unauthorized response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"wrong-x-api-key"},{"key":"x-api-token","value":"wrong-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/0e9b0338-9e40-3b53-be8a-cb264cb70a4d"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:40:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"message\":\"Access Denied\",\"error\":\"Forbidden\"}]}"}],"_postman_id":"f6943562-0392-4e9e-af5d-175ff47692cc"},{"name":"query a transaction","id":"1fcb17b0-25d2-4839-b5d2-9cdfbaad52d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-token","type":"text"},{"key":"x-api-token","value":"your-x-api-key","type":"text"}],"url":"http://{{env}}.paymee.com.br/v1.1/transactions/{{transactionUUID}}","description":"<h1 id=\"query-a-transaction\">Query a transaction</h1>\n<p>To query a transaction, it is necessary to do a GET for the Payment feature as the example.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>internal transaction id</td>\n</tr>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>transaction UUID</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>transaction type</td>\n</tr>\n<tr>\n<td>situation</td>\n<td>string</td>\n<td>transaction status</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>ISO-4217</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>order amount</td>\n</tr>\n<tr>\n<td>shipping</td>\n<td>number</td>\n<td>shipping costs</td>\n</tr>\n<tr>\n<td>discounts</td>\n<td>number</td>\n<td>discounts</td>\n</tr>\n<tr>\n<td>total</td>\n<td>number</td>\n<td>(amout + shipping) - discounts</td>\n</tr>\n<tr>\n<td>appliedRate</td>\n<td>number</td>\n<td>PayMee service fee</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>merchant's unique sale identification</td>\n</tr>\n<tr>\n<td>creation</td>\n<td>string</td>\n<td>creation date and time (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>string</td>\n<td>order max age (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>refunds.quantity</td>\n<td>number</td>\n<td>number of requested refunds (if refund exists)</td>\n</tr>\n<tr>\n<td>refunds.requested</td>\n<td>number</td>\n<td>total amount of refunds (if refund exists)</td>\n</tr>\n<tr>\n<td>refunds.available</td>\n<td>number</td>\n<td>available amount to refund (if refund exists)</td>\n</tr>\n<tr>\n<td>refunds.transactions</td>\n<td>array[]</td>\n<td>refunds details (if refund exists)</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].uuid</td>\n<td>string</td>\n<td>transaction UUID</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].total</td>\n<td>string</td>\n<td>total of transaction</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].status</td>\n<td>string</td>\n<td>transaction status</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].creation</td>\n<td>string</td>\n<td>creation date time yyyy-MM-dd HH:mm:ss</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].creditDate</td>\n<td>string</td>\n<td>payment date time yyyy-MM-dd HH:mm:ss</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].receipt</td>\n<td>string</td>\n<td>refund receipt url</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].bankDetails.bank</td>\n<td>string</td>\n<td>Bank to refund</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].bankDetails.branch</td>\n<td>string</td>\n<td>branch to refund</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].bankDetails.account</td>\n<td>string</td>\n<td>account to refund</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].remark</td>\n<td>string</td>\n<td>refund remark</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].creditTransferDetails.saleUUID</td>\n<td>string</td>\n<td>credited sale UUID</td>\n</tr>\n<tr>\n<td>refunds.transactions[index].creditTransferDetails.referenceCode</td>\n<td>string</td>\n<td>credited sale referenceCode</td>\n</tr>\n<tr>\n<td>track.is_opened</td>\n<td>boolean</td>\n<td>check if reminder emails was opened</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-situation-values\">available situation values:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PENDING</td>\n<td>pending situation</td>\n</tr>\n<tr>\n<td>CANCELLED</td>\n<td>cancelled situation</td>\n</tr>\n<tr>\n<td>PAID</td>\n<td>paid situation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status-values\">available status values:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>999</td>\n<td>\"transaction not found\"</td>\n<td>A requested transaction not exists</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"http","path":["v1.1","transactions","{{transactionUUID}}"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"eca474da-cb1b-4d6d-a19e-c697f6911f8e","name":"success response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{TransactionUUID}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 17:32:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 2404,\n    \"uuid\": \"00000000-0000-0000-0000-000000000000\",\n    \"type\": \"SALE\",\n    \"situation\": \"CANCELLED\",\n    \"currency\": \"BRL\",\n    \"amount\": 0.99,\n    \"shipping\": 0,\n    \"discounts\": 0,\n    \"total\": 0.99,\n    \"appliedRate\": 0.1,\n    \"referenceCode\": \"0199201120510\",\n    \"creation\": \"2018-07-03 23:51:18\",\n    \"maxAge\": \"2018-07-04 01:00:18\",\n    \"shopper\": {\n        \"email\": \"JOHN DOE\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"00000000000\"\n        },\n        \"bankDetails\": {},\n        \"phone\": {\n            \"type\": \"MOBILE\",\n            \"number\": \"11999999999\"\n        }\n    },\n    \"refunds\": {\n        \"quantity\": 1,\n        \"requested\": 0.01,\n        \"available\": 0.98,\n        \"transactions\": [\n            {\n                \"uuid\": \"00000000-0000-0000-0000-000000000000\",\n                \"total\": 0.01,\n                \"status\": \"PAID\",\n                \"creation\": \"2019-10-15 16:13:26\",\n                \"creditDate\": \"2019-10-15 16:13:59\",\n                \"bankDetails\": {\n                    \"bank\": \"218 - BANCO BS2 S.A.\",\n                    \"branch\": \"0000\",\n                    \"account\": \"00000-0\"\n                },\n                \"remark\": \"Créditos Transferidos\",\n                \"creditTransferDetails\": {\n                    \"saleUUID\": \"00000000-0000-0000-0000-000000000000\",\n                    \"referenceCode\": \"example-999\",\n                    \"total\": 0.01\n                }\n            }\n        ]\n    }\n}"},{"id":"47bc6086-be9b-48af-a87f-7b0108659649","name":"transaction not found response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/0e9b0338-9e40-3b53-be8a-cb264cb70a4f"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:39:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":998,\"message\":\"transaction not found\",\"errorCount\":1,\"errors\":[{\"field\":\"saleToken\",\"message\":\"transacao inexistente\"}]}"},{"id":"4054740c-bf41-43c0-9f85-4f57476480b0","name":"unauthorized response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"wrong-x-api-key"},{"key":"x-api-token","value":"wrong-x-api-token"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/0e9b0338-9e40-3b53-be8a-cb264cb70a4d"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:40:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"message\":\"Access Denied\",\"error\":\"Forbidden\"}]}"},{"id":"b4615d6c-ead8-4a41-ab84-01e19bd29ab1","name":"sale response with refunds","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 04 Dec 2018 19:16:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 5483,\n    \"uuid\": \"44ae74b4-572d-3dc6-a9a1-95c1c6d1c7e3\",\n    \"type\": \"SALE\",\n    \"situation\": \"PAID\",\n    \"currency\": \"BRL\",\n    \"amount\": 111,\n    \"shipping\": 0,\n    \"discounts\": 0,\n    \"total\": 111,\n    \"appliedRate\": 2.21,\n    \"referenceCode\": \"019922112127661\",\n    \"creation\": \"2018-12-04 17:12:29\",\n    \"maxAge\": \"2018-12-04 19:00:29\",\n    \"shopper\": {\n        \"name\": \"JHON DOE\",\n        \"email\": \"foo@bar.com\",\n        \"document\": {\n            \"type\": \"CPF\",\n            \"number\": \"00000000000\"\n        },\n        \"bankDetails\": {\n            \"branch\": \"0001\",\n            \"account\": \"00011-0\"\n        },\n        \"phone\": {\n            \"type\": \"MOBILE\",\n            \"number\": \"11999990000\"\n        }\n    },\n    \"refunds\": {\n        \"quantity\": 1,\n        \"requested\": 11,\n        \"available\": 100,\n        \"transactions\": [\n            {\n                \"uuid\": \"53897fb2-e3fb-3549-9fe3-8998545b5d86\",\n                \"total\": 11,\n                \"status\": \"PENDING\",\n                \"creation\": \"2018-12-04 17:13:44\",\n                \"creditDate\": null,\n                \"bankDetails\": {\n                    \"bank\": \"033 - BANCO SANTANDER S.A.\",\n                    \"branch\": \"0000\",\n                    \"account\": \"00000-0\"\n                }\n            }\n        ]\n    }\n}"},{"id":"04fefa3e-3190-40d5-8a28-db1940f5edff","name":"pending-payout-query-with-no-return-error","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions/{{transactionUUID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 16 Dec 2020 04:01:03 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 3615951,\n    \"uuid\": \"{{transactionUUID}}\",\n    \"type\": \"PAYOUT\",\n    \"situation\": \"PENDING\",\n    \"currency\": \"BRL\",\n    \"amount\": 0.01,\n    \"discounts\": 0,\n    \"total\": 0.01,\n    \"serviceFee\": 1.25,\n    \"creation\": \"2020-12-16 00:59:21\",\n    \"beneficiary\": {\n        \"bank\": \"001 - BANCO DO BRASIL S.A.\",\n        \"branch\": \"1234\",\n        \"account\": \"1234-5\"\n    },\n    \"has_return_error\": false\n}"},{"id":"9bdc2d1b-a516-49bc-be5d-a84521e0fff9","name":"pending-payout-query-with-return-error","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-token","type":"text"},{"key":"x-api-token","value":"your-x-api-key","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions/{{transactionUUID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Wed, 16 Dec 2020 04:05:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"id\": 3615951,\n    \"uuid\": \"{{transactionUUID}}\",\n    \"type\": \"PAYOUT\",\n    \"situation\": \"PENDING\",\n    \"currency\": \"BRL\",\n    \"amount\": 0.01,\n    \"discounts\": 0,\n    \"total\": 0.01,\n    \"serviceFee\": 1.25,\n    \"creation\": \"2020-12-16 00:59:21\",\n    \"beneficiary\": {\n        \"bank\": \"001 - BANCO DO BRASIL S.A.\",\n        \"branch\": \"1234\",\n        \"account\": \"1234-5\"\n    },\n    \"has_return_error\": true,\n    \"return_error\": {\n        \"code\": \"PE0001\",\n        \"description\": \"Os dados bancarios fornecidos não validos\"\n    }\n}"}],"_postman_id":"1fcb17b0-25d2-4839-b5d2-9cdfbaad52d8"},{"name":"query current balance","id":"9e03b8fe-671e-4544-8f76-0d6cac61e3d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"url":"https://{{env}}.paymee.com.br/v1.1/balance","description":"<h1 id=\"query-merchants-current-balance\">query merchant's current balance</h1>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>balance</td>\n<td>number</td>\n<td>current balance</td>\n</tr>\n<tr>\n<td>date</td>\n<td>string</td>\n<td>balance date time (GMT-3) timezone</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","balance"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"27850b29-05bd-4c08-aa0c-37261ab869d9","name":"invalid credentials","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"wrong-x-api-key"},{"key":"x-api-token","type":"text","value":"wrong-x-api-token"}],"url":"https://{{env}}.paymee.com.br/v1.1/balance"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 17 Feb 2020 20:50:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"message\": \"Access Denied\",\n            \"error\": \"Forbidden\"\n        }\n    ]\n}"},{"id":"66c4a79c-df5d-4be0-8611-a36db6758f1a","name":"success response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"url":"https://{{env}}.paymee.com.br/v1.1/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 17 Feb 2020 20:49:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n\t\"status\": 0,\n    \"message\": \"success\",\n    \"balance\": 17494.02,\n    \"date\": \"2020-02-17T17:49:28Z\"\n}"}],"_postman_id":"9e03b8fe-671e-4544-8f76-0d6cac61e3d8"},{"name":"query transactions using filters","event":[{"listen":"prerequest","script":{"id":"ff9b7760-0f63-40b2-a99c-634d346f1aa3","exec":[""],"type":"text/javascript"}}],"id":"5c723e0a-f548-4b9a-a2ed-8475a255b4a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions?initialDate=2018-01-01&finalDate=2019-01-11","description":"<h1 id=\"querying-transactions-using-filters\">Querying transactions using filters</h1>\n<h2 id=\"request-parameters\">Request parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>initialDate</td>\n<td>string</td>\n<td>10</td>\n<td>false</td>\n<td>filter initial date (yyyy-MM-dd)</td>\n</tr>\n<tr>\n<td>finalDate</td>\n<td>string</td>\n<td>10</td>\n<td>false</td>\n<td>filter final date (yyyy-MM-dd)</td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>3</td>\n<td>false</td>\n<td>ISO-4217</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>false</td>\n<td>transaction amount</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>false</td>\n<td>merchant's unique internal order identification</td>\n</tr>\n<tr>\n<td>situation</td>\n<td>string</td>\n<td>25</td>\n<td>false</td>\n<td>transaction status</td>\n</tr>\n<tr>\n<td>type</td>\n<td>enum</td>\n<td>25</td>\n<td>false</td>\n<td>transaction type</td>\n</tr>\n<tr>\n<td>maxPageResults</td>\n<td>number</td>\n<td>100</td>\n<td>false</td>\n<td>maximum response size</td>\n</tr>\n<tr>\n<td>page</td>\n<td>number</td>\n<td>100</td>\n<td>false</td>\n<td>page number</td>\n</tr>\n<tr>\n<td>queryMode</td>\n<td>emum</td>\n<td>100</td>\n<td>false</td>\n<td>query type - default: REGULAR</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-situation-values\">available <strong>situation</strong> values:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PENDING</td>\n<td>pending situation</td>\n</tr>\n<tr>\n<td>CANCELLED</td>\n<td>cancelled situation</td>\n</tr>\n<tr>\n<td>PAID</td>\n<td>paid situation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-type-values\">available <strong>type</strong> values:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SALE</td>\n<td>sale type</td>\n</tr>\n<tr>\n<td>REFUND</td>\n<td>refund type</td>\n</tr>\n<tr>\n<td>WITHDRAW</td>\n<td>withdraw type</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-querymode-values\">available <strong>queryMode</strong> values:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREATION</td>\n<td>filter only transactions created at period</td>\n</tr>\n<tr>\n<td>PROCESSED</td>\n<td>filter only processed transactions at period</td>\n</tr>\n<tr>\n<td>REGULAR</td>\n<td>filter all transactions at period. processed and/or created at period</td>\n</tr>\n<tr>\n<td>RECONTILIATION</td>\n<td>filter all transactions accounted at period</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>totalElements</td>\n<td>number</td>\n<td>number of records</td>\n</tr>\n<tr>\n<td>totalPages</td>\n<td>number</td>\n<td>number of pages</td>\n</tr>\n<tr>\n<td>resultSize</td>\n<td>number</td>\n<td>size of the records on the page</td>\n</tr>\n<tr>\n<td>result[index].id</td>\n<td>string</td>\n<td>transaction id</td>\n</tr>\n<tr>\n<td>result[index].uuid</td>\n<td>string</td>\n<td>transaction UUID</td>\n</tr>\n<tr>\n<td>result[index].referenceCode</td>\n<td>string</td>\n<td>50</td>\n</tr>\n<tr>\n<td>result[index].type</td>\n<td>string</td>\n<td>transaction type</td>\n</tr>\n<tr>\n<td>result[index].situation</td>\n<td>enum</td>\n<td>transaction situation</td>\n</tr>\n<tr>\n<td>result[index].referenceCode</td>\n<td>string</td>\n<td>order identification - when type equals 'SALE'</td>\n</tr>\n<tr>\n<td>result[index].currency</td>\n<td>string</td>\n<td>ISO-4217</td>\n</tr>\n<tr>\n<td>result[index].amount</td>\n<td>number</td>\n<td>order amount</td>\n</tr>\n<tr>\n<td>result[index].shipping</td>\n<td>number</td>\n<td>shipping costs - when type equals 'SALE'</td>\n</tr>\n<tr>\n<td>result[index].discounts</td>\n<td>number</td>\n<td>order discounts</td>\n</tr>\n<tr>\n<td>result[index].creation</td>\n<td>string</td>\n<td>creation date and time (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n<tr>\n<td>result[index].maxAge</td>\n<td>string</td>\n<td>order max age (yyyy-MM-dd HH:mm:ss) - when type equals 'SALE'</td>\n</tr>\n<tr>\n<td>result[index].processingDate</td>\n<td>string</td>\n<td>creation date and time (yyyy-MM-dd HH:mm:ss)</td>\n</tr>\n<tr>\n<td>result[index].total</td>\n<td>number</td>\n<td>(amount + shipping) - discounts</td>\n</tr>\n<tr>\n<td>result[index].appliedRate</td>\n<td>number</td>\n<td>PayMee rate</td>\n</tr>\n<tr>\n<td>result[index].shopper.</td>\n<td>number</td>\n<td>(amount + shipping) - discounts</td>\n</tr>\n<tr>\n<td>result[index].shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>result[index].shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>result[index].shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>result[index].items.id</td>\n<td>string</td>\n<td>item identifier</td>\n</tr>\n<tr>\n<td>result[index].items.name</td>\n<td>string</td>\n<td>item name</td>\n</tr>\n<tr>\n<td>result[index].items.amount</td>\n<td>number</td>\n<td>item price</td>\n</tr>\n<tr>\n<td>result[index].items.taxes</td>\n<td>number</td>\n<td>product tax</td>\n</tr>\n<tr>\n<td>result[index].items.discounts</td>\n<td>number</td>\n<td>product discount</td>\n</tr>\n<tr>\n<td>result[index].items.total</td>\n<td>number</td>\n<td>product final price</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status\">available status</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions"],"host":["{{env}}","paymee","com","br"],"query":[{"key":"initialDate","value":"2018-01-01"},{"key":"finalDate","value":"2019-01-11"}],"variable":[]}},"response":[{"id":"8539ab12-822f-4e6b-91a3-68f5cc0d8afa","name":"success response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"url":{"raw":"https://apisandbox.paymee.com.br/v1.1/transactions?initialDate=2018-01-01&finalDate=2019-01-11","protocol":"https","host":["apisandbox","paymee","com","br"],"path":["v1.1","transactions"],"query":[{"key":"initialDate","value":"2018-01-01"},{"key":"finalDate","value":"2019-01-11"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 16:45:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"totalElements\": 2,\n    \"totalPages\": 1,\n    \"resultSize\": 2,\n    \"result\": [\n        {\n            \"id\": 346,\n            \"uuid\": \"a3b27666-49cc-3549-b621-60318a5e61e7\",\n            \"referenceCode\": \"XXXXXXXXX\",\n            \"type\": \"SALE\",\n            \"situation\": \"PAID\",\n            \"currency\": \"BRL\",\n            \"amount\": 206.9,\n            \"shipping\": 0,\n            \"discounts\": 0,\n            \"total\": 206.9,\n            \"appliedRate\": 2.05,\n            \"creation\": \"2018-01-02 16:20:00\",\n            \"maxAge\": \"2018-01-02 18:00:00\",\n            \"shopper\": {\n                \"email\": \"foo@bar.com\",\n                \"document\": {},\n                \"bankDetails\": {},\n                \"phone\": {}\n            },\n            \"items\": [\n                {\n                    \"id\": \"1\",\n                    \"name\": \"PRODUCT\",\n                    \"amount\": 206.9,\n                    \"taxes\": 0,\n                    \"total\": 206.9,\n                    \"quantity\": 1,\n                    \"discounts\": 0\n                }\n            ]\n        },\n        {\n            \"id\": 369,\n            \"uuid\": \"90e1dff3-dbb4-30f8-8a10-ee10eddea219\",\n            \"type\": \"SALE\",\n            \"situation\": \"PAID\",\n            \"currency\": \"BRL\",\n            \"amount\": 507.9,\n            \"shipping\": 0,\n            \"discounts\": 0,\n            \"total\": 507.9,\n            \"appliedRate\": 5.03,\n            \"creation\": \"2018-01-05 19:16:54\",\n            \"maxAge\": \"2018-01-05 21:00:54\",\n            \"shopper\": {\n                \"email\": \"foo@bar.com\",\n                \"document\": {},\n                \"bankDetails\": {},\n                \"phone\": {}\n            },\n            \"items\": [\n                {\n                    \"id\": \"1\",\n                    \"name\": \"PRODUCT\",\n                    \"amount\": 507.9,\n                    \"taxes\": 0,\n                    \"total\": 507.9,\n                    \"quantity\": 1,\n                    \"discounts\": 0\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"5c723e0a-f548-4b9a-a2ed-8475a255b4a5"},{"name":"cancel a transaction","id":"dc92fdf1-8190-4a0d-a9dd-e503675f65c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{env}}.paymee.com.br/v1.1/transactions/{saleUUID}/void","description":"<h1 id=\"canceling-a-sale\">Canceling a sale</h1>\n<p>Cancellation process via API is available only for PENDING sale.</p>\n<h2 id=\"possible-values-for-status\">Possible values for Status</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>998</td>\n<td>\"transaction not found\"</td>\n<td>A requested transaction not exists</td>\n</tr>\n<tr>\n<td>999</td>\n<td>\"transaction not 'PENDING'\"</td>\n<td>A requested transaction MUST have a 'PENDING' situation to void</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions","{saleUUID}","void"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"13ea5274-2e3b-44db-8a2c-99accc783c86","name":"transaction not found response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/void"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:29:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":998,\"message\":\"transaction not found\",\"errorCount\":1,\"errors\":[{\"field\":\"saleToken\",\"message\":\"transacao inexistente\"}]}"},{"id":"36319559-3755-40ed-9307-54f0b32f2b63","name":"unauthorized request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"wrong-x-api-key"},{"key":"x-api-token","value":"wrong-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/void"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:25:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"message\":\"Access Denied\",\"error\":\"Forbidden\"}]}"},{"id":"a436731e-f939-47df-ae18-9a31bbe17367","name":"transaction not pending response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/void"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 18:21:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":999,\"message\":\"transaction not PENDING\",\"errorCount\":1,\"errors\":[{\"field\":\"transactionToken\",\"message\":\"invalid transaction situation\"}]}"},{"id":"e4aaaffe-fd9c-48df-a13e-1b450a6b307e","name":"success response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"formdata","formdata":[]},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/void"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 17:20:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":0,\"message\":\"success\"}"}],"_postman_id":"dc92fdf1-8190-4a0d-a9dd-e503675f65c4"},{"name":"request a sale refund","id":"3157c262-fec8-47b9-8947-bd5985b82952","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 150.00,\n\t\"referenceCode\": \"your-unique-identifier\",\n\t\"reason\": \"shopper's request\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/refund","description":"<h1 id=\"requesting-a-refund\">Requesting a refund</h1>\n<p>Refunding process is available only for PAID sale.</p>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>19.2</td>\n<td>true</td>\n<td>amout to refund</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>refund reason</td>\n</tr>\n<tr>\n<td>callbackURL</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>callback URL</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"possible-values-for-status\">Possible values for Status</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>998</td>\n<td>\"transaction not found\"</td>\n<td>A requested transaction not exists</td>\n</tr>\n<tr>\n<td>1000</td>\n<td>\"transaction not 'PAID'\"</td>\n<td>A requested sale MUST have a 'PAID' situation to refund</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions","{saleUUID}","refund"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"205c593e-4759-415d-82d4-1e6fa52791fd","name":"Requesting a refund","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 11.00,\n\t\"reason\": \"example\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 04 Jul 2018 17:57:07 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":0,\"message\":\"success\",\"uuid\":\"a3b59529-ac56-3e24-9011-320456dd9491\",\"currency\":\"BRL\",\"originalAmount\":11.00,\"discounts\":0.00,\"totalToRefund\":11.00,\"shopper\":{\"email\":\"JHON DOE\",\"document\":{\"type\":\"CPF\",\"number\":\"00000000000\"},\"bankDetails\":{},\"phone\":{\"type\":\"MOBILE\",\"number\":\"11999990000\"}},\"currentBalance\":16495.84}"},{"id":"4dad7174-3437-4d60-9c3c-62eecabfac45","name":"Requesting amount greater than sale","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 150.00,\n\t\"reason\": \"shopper's request\"\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{saleUUID}/refund"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"close","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 25 Sep 2018 19:41:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":-1,\"message\":\"field validation failure\",\"errorCount\":1,\"errors\":[{\"field\":\"amount\",\"message\":\"O valor solicitado deve ser igual ou menor à R$ R$ 100,02\"}]}"}],"_postman_id":"3157c262-fec8-47b9-8947-bd5985b82952"},{"name":"register a callback URL","id":"e73b7af4-787b-4401-96b6-f17dbf593938","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":""},"url":"https://apisandbox.paymee.com.br/v1/sandbox?callbackURL=https://foo.bar/postback.php","description":"<h1 id=\"callback-url\">Callback URL</h1>\n<p>To receive a payment notification, you must send a request using the PUT method for the URI <strong>/v1/sandbox</strong> with a callbackURL parameter with the notification address, as shown.</p>\n","urlObject":{"protocol":"https","path":["v1","sandbox"],"host":["apisandbox","paymee","com","br"],"query":[{"key":"callbackURL","value":"https://foo.bar/postback.php"}],"variable":[]}},"response":[{"id":"4559f850-6051-4575-9039-a1d6985b0f60","name":"Callback URL","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://apisandbox.paymee.com.br/v1/sandbox?callbackURL=https://you_url_here/postback.php","protocol":"https","host":["apisandbox","paymee","com","br"],"path":["v1","sandbox"],"query":[{"key":"callbackURL","value":"https://you_url_here/postback.php"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 11 Jan 2018 19:23:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."}],"cookie":[],"responseTime":null,"body":"{\"status\":0,\"message\":\"success\"}"}],"_postman_id":"e73b7af4-787b-4401-96b6-f17dbf593938"},{"name":"request a webhook redeliver","id":"d5d718df-fdcb-490c-83ae-664ab48127a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook/redeliver","description":"<h1 id=\"requesting-webhook-redeliver\">Requesting webhook redeliver</h1>\n<p>To request a webhook redeliver, the transaction type must be a SALE and its payment status 'PAID'.</p>\n<h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions","{transactionUUID}","webhook","redeliver"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"0c16506f-76f8-46c5-9936-ed4891950c4d","name":"success response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook/redeliver"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 12 Feb 2019 18:32:21 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\"\n}"},{"id":"0f3e6297-51ce-42e0-b777-a3bda86bae1c","name":"error - invalid payment status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook/redeliver"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 12 Feb 2019 18:29:43 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"transactionUUID\",\n            \"message\": \"O status da transação deve ser 'PAID'.\"\n        }\n    ]\n}"},{"id":"6a070e08-5e27-40f2-a91b-67872b2a248a","name":"error - unknown transaction uuid","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook/redeliver"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 12 Feb 2019 18:30:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 998,\n    \"message\": \"transaction not found\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"transactionUUID\",\n            \"message\": \"A venda informada não existe.\"\n        }\n    ]\n}"}],"_postman_id":"d5d718df-fdcb-490c-83ae-664ab48127a0"},{"name":"query a webhook requests","id":"1a29edcf-6991-4d7e-9f47-cd263c684795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook","description":"<h2 id=\"querying-webhook-requests-by-transaction\">Querying webhook requests by transaction</h2>\n<p>Receive all webhook requests with details;</p>\n<h2 id=\"request-parameters\">Request parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>endpoint</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>requested endpoint</td>\n</tr>\n<tr>\n<td>eventType</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>webhook event type</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>255</td>\n<td>false</td>\n<td>webhook request status</td>\n</tr>\n<tr>\n<td>responseCode</td>\n<td>number</td>\n<td>4</td>\n<td>false</td>\n<td>received http status code response</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-eventtype\">available <strong>eventType</strong>:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PAYMENT_CONFIRMATION</td>\n<td>payment confirmation event</td>\n</tr>\n<tr>\n<td>REFUND_PAID</td>\n<td>refund confirmation event</td>\n</tr>\n<tr>\n<td>REVERSAL_CREATE</td>\n<td>reversal creation event</td>\n</tr>\n<tr>\n<td>REVERSAL_PAID</td>\n<td>reversal creation event</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status\">available <strong>status</strong>:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>VALUE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SUCCESS</td>\n<td>webhook accepted</td>\n</tr>\n<tr>\n<td>HTTP_STATUS_NOT_EQUALS_200</td>\n<td>http code not equals 200</td>\n</tr>\n<tr>\n<td>HTTP_REQUEST_TIMEOUT</td>\n<td>the request exceeded the maximum timeout (90s)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>notifications[index].endpoint</td>\n<td>string</td>\n<td>requested endpoint</td>\n</tr>\n<tr>\n<td>notifications[index].eventType</td>\n<td>string</td>\n<td>webhook event type</td>\n</tr>\n<tr>\n<td>notifications[index].status</td>\n<td>string</td>\n<td>webhook event status</td>\n</tr>\n<tr>\n<td>notifications[index].responseCode</td>\n<td>number</td>\n<td>received http code</td>\n</tr>\n<tr>\n<td>notifications[index].request.headers</td>\n<td>object</td>\n<td>sent headers</td>\n</tr>\n<tr>\n<td>notifications[index].request.payload</td>\n<td>string</td>\n<td>sent payload</td>\n</tr>\n<tr>\n<td>notifications[index].response.headers</td>\n<td>object</td>\n<td>received headers</td>\n</tr>\n<tr>\n<td>notifications[index].response.body</td>\n<td>string</td>\n<td>received body</td>\n</tr>\n<tr>\n<td>notifications[index].date</td>\n<td>string</td>\n<td>event date time (yyyy-MM-dd HH:mmss)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions","{transactionUUID}","webhook"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"3fdaf66c-9d7b-4435-82a7-347ba8479776","name":"success response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key","type":"text"},{"key":"x-api-token","value":"your-x-api-token","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 12 Feb 2019 18:59:16 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"notifications\": [\n        {\n            \"endpoint\": \"https://foo.bar/paymeeListener\",\n            \"eventType\": \"PAYMENT_CONFIRMATION\",\n            \"status\": \"SUCCESS\",\n            \"responseCode\": 200,\n            \"request\": {\n                \"headers\": {\n                    \"Authorization\": \"Basic YTEzNTUwNDItMjI0YS0zNDRkLWJmZTAtOWFmZDIzMDA2YjI5OmFhYzFiYzJmLWYxMjAtMzY1Zi1iMTAyLWI3YjYzZWYwYTNkZA==\",\n                    \"Content-type\": \"application/json\"\n                },\n                \"payload\": \"{\\\"saleToken\\\":\\\"{transactionUUID}\\\",\\\"referenceCode\\\":\\\"01992211212782433139\\\",\\\"currency\\\":\\\"BRL\\\",\\\"amount\\\":11.00,\\\"shopper\\\":{\\\"fullName\\\":\\\"JHON DOE\\\",\\\"firstName\\\":\\\"JHON\\\",\\\"lastName\\\":\\\"DOE\\\",\\\"email\\\":\\\"ti@paymee.com.br\\\",\\\"cpf\\\":\\\"00000000000\\\"},\\\"date\\\":\\\"2019-02-12 17:29:33\\\",\\\"newStatus\\\":\\\"PAID\\\"}\"\n            },\n            \"response\": {\n                \"headers\": {\n                    \"Strict-Transport-Security\": \"max-age=31536000 ; includeSubDomains\",\n                    \"Cache-Control\": \"no-cache, no-store, max-age=0, must-revalidate\",\n                    \"X-Content-Type-Options\": \"nosniff\",\n                    \"Pragma\": \"no-cache\",\n                    \"Expires\": \"0\",\n                    \"X-XSS-Protection\": \"1; mode=block\",\n                    \"Content-Length\": \"0\",\n                    \"Date\": \"Tue, 12 Feb 2019 18:59:11 GMT\"\n                },\n                \"body\": \"ok\"\n            },\n            \"date\": \"2019-02-12 16:59:12\"\n        }\n    ]\n}"},{"id":"fb4d721a-d03f-4966-9700-2227904a3a5e","name":"error - transaction not found","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"66355042-224a-344d-bfe0-9afd23006b84","type":"text"},{"key":"x-api-token","value":"863bbc2f-f120-365f-b102-b7b63ef0e5e6","type":"text"}],"url":"https://apisandbox.paymee.com.br/v1.1/transactions/{transactionUUID}/webhook"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 12 Feb 2019 19:32:13 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 998,\n    \"message\": \"transaction not found\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"transactionUUID\",\n            \"message\": \"A transação informada não existe.\"\n        }\n    ]\n}"}],"_postman_id":"1a29edcf-6991-4d7e-9f47-cd263c684795"},{"name":"request a Credit Transfer","id":"fb0697fb-99dd-45ca-9fe5-a475a294f0f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"refundUUID\": \"00000000-0000-0000-0000-00000000000\",\n\t\"destSaleReferenceCode\": \"sample-99\"\n}"},"url":"https://{{env}}.paymee.com.br/v1.1/transactions/creditTransfer","description":"<h2 id=\"request-a-credit-transfer\">Request a credit transfer</h2>\n<p>Request a credit transfer using a <strong>PENDING REFUND</strong> to processing a <strong>PENDING SALE</strong></p>\n<h2 id=\"request-parameters\">Request parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>refundUUID</td>\n<td>string</td>\n<td>36</td>\n<td>true</td>\n<td>a refund uuid source</td>\n</tr>\n<tr>\n<td>destSaleReferenceCode</td>\n<td>string</td>\n<td>50</td>\n<td>true</td>\n<td>destination sale code</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions","creditTransfer"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"a8d4ac14-218e-4906-a305-05e793b72f41","name":"validation failure","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"66355042-224a-344d-bfe0-9afd23006b84"},{"key":"x-api-token","type":"text","value":"863bbc2f-f120-365f-b102-b7b63ef0e5e6"}],"body":{"mode":"raw","raw":"{\n\t\"refundUUID\": \"00000000-0000-0000-0000-000000000000\",\n\t\"destSaleReferenceCode\": \"sample-99\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/creditTransfer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 15 Oct 2019 20:00:33 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"field validation failure\",\n    \"errorCount\": 2,\n    \"errors\": [\n        {\n            \"field\": \"refundUUID\",\n            \"message\": \"O reembolso informado não está pendente\"\n        },\n        {\n            \"field\": \"destSaleReferenceCode\",\n            \"message\": \"A venda informado já está paga.\"\n        }\n    ]\n}"},{"id":"c5030c26-f706-4bf7-a332-6a5b671fa90d","name":"success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"your-x-api-key"},{"key":"x-api-token","type":"text","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n\t\"refundUUID\": \"00000000-0000-0000-0000-000000000000\",\n\t\"destSaleReferenceCode\": \"sample-99\"\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/transactions/creditTransfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 15 Oct 2019 19:58:50 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"os créditos foram transferidos com sucesso.\"\n}"}],"_postman_id":"fb0697fb-99dd-45ca-9fe5-a475a294f0f0"},{"name":"get payer information","id":"fc2541dd-9fb2-4fe4-8803-899d78be48a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{x-api-token}}","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions/{{sale_uuid}}/payment_info","description":"<h2 id=\"get-payer-information\">Get Payer Information</h2>\n<p>Get PIX Payer Details</p>\n<h2 id=\"request-parameters\">Request parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sale_uuid</td>\n<td>uuid</td>\n<td>36</td>\n<td>true</td>\n<td>PAID Sale UUID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>sale_id</td>\n<td>long number</td>\n<td>requested sale id</td>\n</tr>\n<tr>\n<td>payment_bank</td>\n<td>string</td>\n<td>Payment Method (always PIX)</td>\n</tr>\n<tr>\n<td>end_to_end</td>\n<td>string</td>\n<td>endToEndId (BC payment ID)</td>\n</tr>\n<tr>\n<td>payer</td>\n<td>objec</td>\n<td>payer object</td>\n</tr>\n<tr>\n<td>payer.document</td>\n<td>strin</td>\n<td>payer document</td>\n</tr>\n<tr>\n<td>payer.name</td>\n<td>string</td>\n<td>payer name</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","transactions","{{sale_uuid}}","payment_info"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"fd164900-99b7-4e24-a87f-8dd84ad434d8","name":"get payer information","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{x-api-token}}","type":"text"}],"url":"https://{{env}}.paymee.com.br/v1.1/transactions/{{transaction_uuid}}/payment_info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Thu, 09 Jun 2022 22:54:53 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"sale_id\": 17403215,\n    \"payment_bank\": \"PIX\",\n    \"end_to_end\": \"E60701190202206091923DY53C3Y9TIN\",\n    \"payer\": {\n        \"document\": \"00000000000\",\n        \"name\": \"FOO BAR\"\n    },\n    \"status\": 0,\n    \"message\": \"success\"\n}"}],"_postman_id":"fc2541dd-9fb2-4fe4-8803-899d78be48a2"},{"name":"renew canceled pix","id":"47fcdcba-11e3-41d1-b566-b03c051a24f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-token"}],"body":{"mode":"raw","raw":"{\n  \"maxAge\": 120\n}"},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent/{{transactionUUID}}","description":"<h1 id=\"renew-canceled-pix\">renew canceled pix</h1>\n<p>To renew a transaction throught PayMee, it is necessary to send a request using the PUT method to the <strong>checkout</strong> resource and a previous transaction UUID, as shown. This example covers the minimum of fields required to be submitted for authorization.</p>\n<h2 id=\"request\">Request</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>SIZE</th>\n<th>REQUIRED</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>maxAgefalse</td>\n<td>number</td>\n<td>43200</td>\n<td>true</td>\n<td>Sale max age in minutes</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>chosen bank method</td>\n</tr>\n<tr>\n<td>response.instructions.name</td>\n<td>string</td>\n<td>chosen bank name</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>chosen bank description</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_branch</td>\n<td>string</td>\n<td>branch number to pay</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_op</td>\n<td>string</td>\n<td>operation code (only CEF)</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary_account</td>\n<td>string</td>\n<td>account number and verifing digit to pay</td>\n</tr>\n<tr>\n<td>response.instructions.need_identification</td>\n<td>boolean</td>\n<td>tells if has identification code when pay</td>\n</tr>\n<tr>\n<td>response.instructions.identification</td>\n<td>string</td>\n<td>identification code to pay</td>\n</tr>\n<tr>\n<td>response.instructions.steps</td>\n<td>array[string]</td>\n<td>simple steps description to display</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.desktop</td>\n<td>string</td>\n<td>default bank website URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.ios</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.android</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_urls.windows_phone</td>\n<td>string</td>\n<td>default bank app URL</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-pix-checkout\">Response for Pix checkout</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>pix chosen option</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>pix chosen description</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.url</td>\n<td>string</td>\n<td>qrcode for payment url</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.base64</td>\n<td>string</td>\n<td>qrcode in base64 encode</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.qrcode.plain</td>\n<td>string</td>\n<td>qrcode in plain text</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.keys.email</td>\n<td>string</td>\n<td>pix beneficiary key - email option</td>\n</tr>\n<tr>\n<td>response.instructions.beneficiary.keys.document</td>\n<td>string</td>\n<td>pix beneficiary key - document option</td>\n</tr>\n<tr>\n<td>response.instructions.steps.qrcode</td>\n<td>array[string]</td>\n<td>minimal steps for qrcode description to display</td>\n</tr>\n<tr>\n<td>response.instructions.steps.key</td>\n<td>array[string]</td>\n<td>minimal steps for key description to display</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-for-openbanking-initiator\">Response for OpenBanking Initiator</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>PROPERTY</th>\n<th>TYPE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>number</td>\n<td>response status code</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>response status message</td>\n</tr>\n<tr>\n<td>response.email</td>\n<td>string</td>\n<td>registered shopper email</td>\n</tr>\n<tr>\n<td>response.referenceCode</td>\n<td>string</td>\n<td>registered unique order identifier</td>\n</tr>\n<tr>\n<td>response.amount</td>\n<td>number</td>\n<td>registered order amount</td>\n</tr>\n<tr>\n<td>response.saleCode</td>\n<td>number</td>\n<td>Paymee's internal sale code</td>\n</tr>\n<tr>\n<td>response.uuid</td>\n<td>string</td>\n<td>internal transaction uuid</td>\n</tr>\n<tr>\n<td>response.shopper.id</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.email</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.name</td>\n<td>string</td>\n<td>the same as stated previously (if stated)</td>\n</tr>\n<tr>\n<td>response.shopper.document.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.document.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.type</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.phone.number</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.branch</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.shopper.bankDetails.account</td>\n<td>string</td>\n<td>the same as stated previously</td>\n</tr>\n<tr>\n<td>response.instructions.chosen</td>\n<td>string</td>\n<td>pix chosen option</td>\n</tr>\n<tr>\n<td>response.instructions.label</td>\n<td>string</td>\n<td>pix chosen description</td>\n</tr>\n<tr>\n<td>response.instructions.payment_id</td>\n<td>string</td>\n<td>openbanking payment id reference</td>\n</tr>\n<tr>\n<td>response.instructions.redirect_url</td>\n<td>string</td>\n<td>redirect URL for openbanking authentication</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-status-values\">available status values</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>code</th>\n<th>message</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>\"success\"</td>\n<td>operation was successful</td>\n</tr>\n<tr>\n<td>-1</td>\n<td>\"validation failure\"</td>\n<td>A validation error occurred when processing the request</td>\n</tr>\n<tr>\n<td>1001</td>\n<td>\"duplicated referenceCode\"</td>\n<td>the reference code must be unique</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-validation-vailure-responses\">available validation vailure responses</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>error</th>\n<th>message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.banned</td>\n<td>banned shopper</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.not_allowed</td>\n<td>document type not allowed</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.duplicated</td>\n<td>duplicated reference code</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>paymentMethod.invalid</td>\n<td>inform a valid payment method</td>\n</tr>\n<tr>\n<td>shopper.bankDetails</td>\n<td>shopper.bankDetails.isNull</td>\n<td>please inform a valid bank details</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>shopper.phone.number.isNull</td>\n<td>please inform a valid phone number</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.invalidDocument</td>\n<td>the shopper document XXXXXXXXXXX is not valid</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.limit</td>\n<td>the amount exceeded daily limit</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>amount.min</td>\n<td>must be greater than 0.01</td>\n</tr>\n<tr>\n<td>referenceCode</td>\n<td>referenceCode.lenght</td>\n<td>referenceCode must have length 1 up to 100</td>\n</tr>\n<tr>\n<td>maxAge</td>\n<td>maxAge.limit</td>\n<td>maxAge must be at least 1 and up to 4320 minutes</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>paymentMethod.is_null</td>\n<td>paymentMethod cannot be null</td>\n</tr>\n<tr>\n<td>shopper</td>\n<td>shopper.is_null</td>\n<td>shopper cannot be null</td>\n</tr>\n<tr>\n<td>shopper.id</td>\n<td>shopper.id.max_lenght</td>\n<td>shopper id must have up to 255 characters</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>shopper.name.length</td>\n<td>shopper name must have up to 255 characters</td>\n</tr>\n<tr>\n<td>shopper.name</td>\n<td>shopper.name.is_null</td>\n<td>shopper name cannot be null</td>\n</tr>\n<tr>\n<td>shopper.email</td>\n<td>shopper.email.length</td>\n<td>please fill a valid email</td>\n</tr>\n<tr>\n<td>shopper.document</td>\n<td>shopper.document.is_null</td>\n<td>shopper document cannot be null</td>\n</tr>\n<tr>\n<td>shopper.document.type</td>\n<td>shopper.document.type.invalid</td>\n<td>please inform a valid document type</td>\n</tr>\n<tr>\n<td>shopper.document.number</td>\n<td>shopper.document.number.invalid</td>\n<td>lenght must be between 2 and 25</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.branch</td>\n<td>shopper.bankDetails.branch.invalid</td>\n<td>please inform a valid branch</td>\n</tr>\n<tr>\n<td>shopper.bankDetails.account</td>\n<td>shopper.bankDetails.account.invalid</td>\n<td>please inform a valid bank account</td>\n</tr>\n<tr>\n<td>shopper.phone</td>\n<td>shopper.phone.is_null</td>\n<td>shopper.phone cannot be null</td>\n</tr>\n<tr>\n<td>shopper.phone.type</td>\n<td>shopper.phone.type.invalid</td>\n<td>please inform a valid phone type</td>\n</tr>\n<tr>\n<td>shopper.phone.number</td>\n<td>shopper.phone.number.invalid</td>\n<td>please inform a valid phone number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1.1","checkout","transparent","{{transactionUUID}}"],"host":["apisandbox","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"689b8d01-6293-4790-b443-81d3018ae07e","name":"success-response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"your-x-api-key"},{"key":"x-api-token","value":"your-x-api-key"}],"body":{"mode":"raw","raw":"{\n  \"maxAge\": 120\n}","options":{"raw":{"language":"json"}}},"url":"https://apisandbox.paymee.com.br/v1.1/checkout/transparent/{{transactionUUID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 20 Oct 2020 21:00:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"response\": {\n        \"referenceCode\": \"0199221121276150\",\n        \"amount\": 11,\n        \"id\": 33200,\n        \"saleCode\": \"00033200\",\n        \"uuid\": \"14fe1d3d-26f9-3790-8161-df091e8585da\",\n        \"shopper\": {\n            \"id\": \"24391203\",\n            \"name\": \"JHON DOE\",\n            \"email\": \"foo@bar.com\",\n            \"document\": {\n                \"type\": \"CPF\",\n                \"number\": \"00000000000\"\n            },\n            \"phone\": {\n                \"type\": \"MOBILE\",\n                \"number\": \"11999990000\"\n            }\n        },\n        \"instructions\": {\n            \"chosen\": \"PIX\",\n            \"name\": \"PIX\",\n            \"label\": \"Transferência via PIX\",\n            \"qrCode\": {\n                \"url\": \"https://apisandbox.paymee.com.br/payments/pix/qrcode/14fe1d3d-26f9-3790-8161-df091e8585da\",\n                \"base64\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAIAAAAHjs1qAAAEvklEQVR42u3ayXXDMBBEQeWftJ2ATzIw3QDqn7VwqeFhHj8/0jN9XALhLuEu4S7hLuEu4S7hLuEu4S7hLuEu3CXcJdwl3CXcJdwl3CXcJdwl3CXchbuEu4T7Xz8X7bsj3Hhxo+ee/Z3Je4o77rjjjjvuuOOOO+6444477rg3YPruVq361uQVmxz+tnuKO+6444477rjjjjvuuOOOO+647ya47zZkV5zZ85o85sl7ijvuuOOOO+6444477rjjjjvuuHdemraL3ong9EcY7rjjjjvuuOOOO+6444477rjjfu6l2XfMk6vSfUeIO+6444477rjjjjvuuOOOO+6438Q9O1qrjnlyAFYtNCevT6cf3HHHHXfccccdd9xxxx133HF/jfuJSzSfab6nuCOIO+6Y4o67z+COu8/gjrvP4P5aky88TS5Gn7uPKOOOu3DHHXfccccdd9xxx/1q7tklY9tCM/sCVvaY214+wx133HHHHXfccccdd9xxxx33F7hPDsm+BWLb+rJtaM9dleKOO+6444477rjjjjvuuOOO+2vcJy9fdj3XtkCcPNMGyrjjjjvuuOOOO+6444477rjjjnv2lCZfGlvF9MTVbXahiTvuuOOOO+6444477rjjjjvuuO9eDu5bok2i7F/h7Ru/zocj7rjjjjvuuOOOO+6444477rjfzX1yXZgdgP6FXfZ49t0L3HHHHXfccccdd9xxxx133HHH/W7K/QvESSiTr7Udv3fHHXfccccdd9xxxx133HHHHfcy7pO/0zZsd6Bc9a0nFpG444477rjjjjvuuOOOO+644x7l3r8K7F9oTg5bdgl7/CISd9xxxx133HHHHXfccccdd9zrua8aklNWXTvOtL/sgw933HHHHXfccccdd9xxxx133HFfu6Lat0TLLuyyS9jsGF+4iMQdd9xxxx133HHHHXfccccd9/pF5InLryzuycdB9uW8wNoXd9xxxx133HHHHXfccccdd9wf455F2X9jToHy/zv4xCISd9xxxx133HHHHXfccccdd9yj3PcRzNJp++XJ63zTgwZ33HHHHXfccccdd9xxxx133HFvI9g2ANlV4OT4BRamuOOOO+6444477rjjjjvuuOP+PPd9A7Dvv/aNaPZBkz3C+QHAHXfccccdd9xxxx133HHHHXfc2+hkobSde+erXbjjjjvuuOOOO+6444477rjjjvuJnfLqUgrl5Ng0rCZxxx133HHHHXfccccdd9xxx/1u7p9obbche177/mvV8Vy4d8cdd9xxxx133HHHHXfccccd9zLu2SXj5I2ZfPVtkvJNC1/ccccdd9xxxx133HHHHXfccce9bUHWj6BtbCYfGbjjjjvuuOOOO+6444477rjjjvvd3Pt/Jzv8+x4i86+R4Y477rjjjjvuuOOOO+6444477idyz55F/xifEu6444477rjjjjvuuOOOO+64454drVX/Nbn4y16N7GDjjjvuuOOOO+6444477rjjjjvua1nsq23pmX1AZAl2DgDuuOOOO+6444477rjjjjvuuN/NXWoOd+Eu4S7hLuEu4S7hLuEu4S7hLuEu4S7cJdwl3CXcJdwl3CXcJdwl3CXcJdyFu4S7dEm/llibksuxCZcAAAAASUVORK5CYII=\",\n                \"plain\": \"00020101021226720014br.gov.bcb.pix2550bx.com.br/pix/0fa55bba-cb0d-3e5a-8dd3-88af60f2a324520400005303986540647.925802BR5913PayMee Brasil\\n6008BRASILIA62190515RP12345678-2019630445C8\"\n            },\n            \"keys\": {\n                \"email\": \"pix-sandbox@paymee.com.br\",\n                \"document\": \"00000000000000\"\n            },\n            \"steps\": {\n                \"qrCode\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Abra o leitor de QRCode no APP e escaneie o código informado\",\n                    \"Siga os passos no APP e finalize a transação\"\n                ],\n                \"key\": [\n                    \"Acesse o APP ou o Internet Banking do seu Banco\",\n                    \"Acesse o menu PIX\",\n                    \"Informe a chave pix-sandbox@paymee.com.br ou se preferir o nosso CNPJ 00000000000000\",\n                    \"Siga os passos no seu APP e finalize a transação\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"47fcdcba-11e3-41d1-b566-b03c051a24f8"},{"name":"Create an internal transfer between PayMee accounts","id":"c59ac828-95cb-42a6-be8d-96794e4b1d47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 0.01,\n    \"destination\": {\n        \"accountNumber\": 12345\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/transfer/create","urlObject":{"protocol":"https","path":["v1.1","transfer","create"],"host":["{{env}}","paymee","com","br"],"query":[],"variable":[]}},"response":[{"id":"f1f3a01e-f6cc-4450-9910-d8645e90f204","name":"success response","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 0.01,\n    \"destination\": {\n        \"accountNumber\": 12345\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/transfer/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"255"},{"key":"Date","value":"Fri, 11 Jul 2025 18:14:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 0,\n    \"message\": \"success\",\n    \"origin\": {\n        \"tid\": 259059943,\n        \"uuid\": \"407c5877-0b29-45f9-ab89-1d739cb9edf4\",\n        \"status\": \"Processado\",\n        \"amount\": 0.01\n    },\n    \"destination\": {\n        \"tid\": 259059944,\n        \"uuid\": \"b0362309-54d0-4f2f-ac14-5bbe4ab9a0bc\",\n        \"status\": \"Processado\",\n        \"amount\": 0.01\n    }\n}"},{"id":"5f73c0bb-cf26-422c-8169-d6db85b31672","name":"error - relationship missing","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 0.01,\n    \"destination\": {\n        \"accountNumber\": 1234\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/transfer/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"277"},{"key":"Date","value":"Fri, 11 Jul 2025 18:08:40 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"destination.accountNumber\",\n            \"message\": \"os mids não possuem relação, solicite a liberação ao suporte.\"\n        }\n    ],\n    \"main_error_message\": \"os mids não possuem relação, solicite a liberação ao suporte.\"\n}"},{"id":"2d734178-5424-4d7a-8a04-84742b8f507d","name":"error - invalid amount request","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{your-x-api-key}}","type":"text"},{"key":"x-api-token","value":"{{your-x-api-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 1111110.01,\n    \"destination\": {\n        \"accountNumber\": 12345\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{env}}.paymee.com.br/v1.1/transfer/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Accept, X-Requested-With, remember-me"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"250"},{"key":"Date","value":"Fri, 11 Jul 2025 18:10:47 GMT"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": -1,\n    \"message\": \"validation failure\",\n    \"errorCount\": 1,\n    \"errors\": [\n        {\n            \"field\": \"amount\",\n            \"message\": \"o valor solicitado 1111110.01 é maior que o saldo atual 0.10.\"\n        }\n    ],\n    \"main_error_message\": \"o valor solicitado 1111110.01 é maior que o saldo atual 0.10.\"\n}"}],"_postman_id":"c59ac828-95cb-42a6-be8d-96794e4b1d47"}],"event":[{"listen":"prerequest","script":{"id":"16c94f28-57ad-4ae0-a9d9-b1c5cb147a60","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"26e0ce1b-5460-4904-a4fb-766dfa82d09a","type":"text/javascript","exec":[""]}}],"variable":[{"key":"transactionUUID","value":"{{transactionUUID}}"}]}