{"info":{"_postman_id":"d9dd2b7a-796d-4406-8617-11954bf91556","name":"EvoPay","description":"<html><head></head><body><p>Essa coleção contém os endpoints para integração com o sistema de pagamentos Pix da EvoPay. Todos os endpoints seguem a especificação v1 da API e requerem autenticação via chave de API (API-Key) no header.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"20377760","collectionId":"d9dd2b7a-796d-4406-8617-11954bf91556","publishedId":"2sAXxV6VV5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"30E7F8"},"publishDate":"2024-10-17T06:21:05.000Z"},"item":[{"name":"Verificar Transacão","event":[{"listen":"test","script":{"id":"faab4ee3-e85e-4b02-95e7-51cda6a58ee5","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('type');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","    pm.expect(responseData).to.have.property('payerName');","    pm.expect(responseData).to.have.property('payerCPF');","})"],"type":"text/javascript","packages":{}}}],"id":"d329c549-0c22-4e99-acfd-150986235b1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the API-Key header generated by Postman.","key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/pix?id=TRANSACTION_ID","description":"<p>Esse endpoint permite a verificação do status de uma transação Pix já criada. O campo 'status' pode retornar os seguintes valores:</p>\n<ul>\n<li><strong>PENDING</strong>: A transação está aguardando pagamento.</li>\n<li><strong>COMPLETED</strong>: A transação foi paga com sucesso.</li>\n<li><strong>CANCELED</strong>: Ocorreu um erro no processamento da transação.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","pix"],"host":["pix","evopay","cash"],"query":[{"key":"id","value":"TRANSACTION_ID"}],"variable":[]}},"response":[{"id":"76c7cf20-5fe4-409c-9a46-82c7ec03ae4f","name":"Verificar Transacão","originalRequest":{"method":"GET","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":{"raw":"https://pix.evopay.cash/v1/pix?id=TRANSACTION_ID","protocol":"https","host":["pix","evopay","cash"],"path":["v1","pix"],"query":[{"key":"id","value":"TRANSACTION_ID","description":"ID de uma transação"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"string\",\n    \"status\": \"COMPLETED\",\n    \"amount\": 10,\n    \"type\": \"DEPOSIT\",\n    \"qrCodeText\": \"string\",\n    \"qrCodeBase64\": \"string\",\n    \"qrCodeUrl\": \"http://pix.evopay.cash/v1/pix/qr-code/<id>\",\n    \"payerName\": \"string\",\n    \"payerCPF\": \"string\"\n}"}],"_postman_id":"d329c549-0c22-4e99-acfd-150986235b1a"},{"name":"Criar Transacao Pix","event":[{"listen":"test","script":{"id":"4cf382b2-c23b-4716-a0c8-49abe2f8223c","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('taxAmount');","    pm.expect(responseData).to.have.property('amountWithTax');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","})","","pm.test('Amount, taxAmount, and amountWithTax are non-negative numbers', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.amount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.taxAmount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.amountWithTax).to.be.a('number').and.to.be.at.least(0);","})"],"type":"text/javascript","packages":{}}}],"id":"3c615f93-bc90-48ea-8cc4-60160a9e256d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"amount\": 150.50,\n  \"callbackUrl\": \"https://seusite.com/callback\",\n  \"payerName\": \"João Silva\",\n  \"payerDocument\": \"12345678909\",\n  \"payerEmail\": \"joao.silva@email.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://pix.evopay.cash/v1/pix","description":"<p>Esse endpoint permite a criação de uma nova transação Pix. Ao criar a transação, o usuário deverá receber um QR code para ser escaneado, bem como detalhes da transação.</p>\n<h4 id=\"parâmetros-do-corpo\">Parâmetros do corpo:</h4>\n<ul>\n<li><strong>amount</strong> (obrigatório): Valor da transação, use float para centavos, Exemplo: 10.90</li>\n<li><strong>callbackUrl</strong> (opcional): URL para onde as notificações sobre o status da transação serão enviadas.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","pix"],"host":["pix","evopay","cash"],"query":[],"variable":[]}},"response":[{"id":"b0370e81-b77f-481a-b148-156fbd4a599e","name":"Criar Transacao Pix","originalRequest":{"method":"POST","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"amount\": 10,\n   \"callbackUrl\": \"https://meusite.com/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://pix.evopay.cash/v1/pix"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"string\",\n    \"status\": \"PENDING\",\n    \"amount\": 10,\n    \"taxAmount\": 0.1,\n    \"amountWithTax\": 9.9,\n    \"qrCodeText\": \"string\",\n    \"qrCodeBase64\": \"string\",\n    \"qrCodeUrl\": \"http://pix.evopay.cash/v1/pix/qr-code/<id>\"\n}"}],"_postman_id":"3c615f93-bc90-48ea-8cc4-60160a9e256d"},{"name":"Efetuar Saque","event":[{"listen":"test","script":{"id":"4cf382b2-c23b-4716-a0c8-49abe2f8223c","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('taxAmount');","    pm.expect(responseData).to.have.property('amountWithTax');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","})","","pm.test('Amount, taxAmount, and amountWithTax are non-negative numbers', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.amount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.taxAmount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.amountWithTax).to.be.a('number').and.to.be.at.least(0);","})"],"type":"text/javascript","packages":{}}}],"id":"5da2d77d-7f01-45c8-83f2-9097397fb66e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"amount\": 200.50,\n  \"pixKey\": \"12345678909\",\n  \"pixType\": \"cpf\",\n  \"callbackUrl\": \"https://meusite.com/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://pix.evopay.cash/v1/withdraw","description":"<p>Esse endpoint permite a criação de uma nova transação Pix. Ao criar a transação, o usuário deverá receber um QR code para ser escaneado, bem como detalhes da transação.</p>\n<h4 id=\"parâmetros-do-corpo\">Parâmetros do corpo:</h4>\n<ul>\n<li><strong>amount</strong> (obrigatório): Valor da transação, use float para centavos, Exemplo: 10.90</li>\n<li><strong>callbackUrl</strong> (opcional): URL para onde as notificações sobre o status da transação serão enviadas.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","withdraw"],"host":["pix","evopay","cash"],"query":[],"variable":[]}},"response":[{"id":"593059f5-7cd0-4cf6-99f9-e359762c1c93","name":"Efetuar Saque","originalRequest":{"method":"POST","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"amount\": 200.50,\n  \"pixKey\": \"12345678909\",\n  \"pixType\": \"cpf\",\n  \"callbackUrl\": \"https://meusite.com/callback\"\n}","options":{"raw":{"language":"json"}}},"url":"https://pix.evopay.cash/v1/withdraw"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"a1b2c3d4e5f6g7h8\",\n  \"status\": \"PENDING\",\n  \"amount\": 200.50,\n  \"pixKey\": \"12345678909\",\n  \"pixType\": \"cpf\"\n}"}],"_postman_id":"5da2d77d-7f01-45c8-83f2-9097397fb66e"},{"name":"Informações da Conta","event":[{"listen":"test","script":{"id":"4cf382b2-c23b-4716-a0c8-49abe2f8223c","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('taxAmount');","    pm.expect(responseData).to.have.property('amountWithTax');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","})","","pm.test('Amount, taxAmount, and amountWithTax are non-negative numbers', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.amount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.taxAmount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.amountWithTax).to.be.a('number').and.to.be.at.least(0);","})"],"type":"text/javascript","packages":{}}}],"id":"06cd8322-4fa5-4994-bb73-d4cb298826e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the API-Key header generated by Postman.","key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/account","description":"<p>Esse endpoint permite a criação de uma nova transação Pix. Ao criar a transação, o usuário deverá receber um QR code para ser escaneado, bem como detalhes da transação.</p>\n<h4 id=\"parâmetros-do-corpo\">Parâmetros do corpo:</h4>\n<ul>\n<li><strong>amount</strong> (obrigatório): Valor da transação, use float para centavos, Exemplo: 10.90</li>\n<li><strong>callbackUrl</strong> (opcional): URL para onde as notificações sobre o status da transação serão enviadas.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","account"],"host":["pix","evopay","cash"],"query":[],"variable":[]}},"response":[{"id":"7c850732-a1c2-4322-a8ae-d64bb467ad54","name":"Informações da Conta","originalRequest":{"method":"GET","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/account"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"user\": {\n    \"id\": \"e4c5d419-55e0-43e5-93e7-ea5d6077f87c\",\n    \"name\": \"João Silva\",\n    \"balance\": 1500.50,\n    \"withdrawValue\": 200.00,\n    \"taxRules\": [\n      {\n        \"minAmount\": 0.01,\n        \"maxAmount\": 1000.00,\n        \"taxValue\": 2.5,\n        \"taxType\": \"PERCENTAGE\",\n        \"typeTransaction\": \"DEPOSIT\"\n      }\n    ],\n    \"pix\": {\n      \"type\": \"cpf\",\n      \"key\": \"12345678909\"\n    },\n    \"createdAt\": \"2024-01-01T12:00:00Z\",\n    \"updatedAt\": \"2024-01-01T12:00:00Z\"\n  }\n}"}],"_postman_id":"06cd8322-4fa5-4994-bb73-d4cb298826e4"},{"name":"Saldo","event":[{"listen":"test","script":{"id":"4cf382b2-c23b-4716-a0c8-49abe2f8223c","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('taxAmount');","    pm.expect(responseData).to.have.property('amountWithTax');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","})","","pm.test('Amount, taxAmount, and amountWithTax are non-negative numbers', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.amount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.taxAmount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.amountWithTax).to.be.a('number').and.to.be.at.least(0);","})"],"type":"text/javascript","packages":{}}}],"id":"34a79c9e-1712-4b36-bcc7-141db4c36ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the API-Key header generated by Postman.","key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/account/balance","description":"<p>Esse endpoint permite a criação de uma nova transação Pix. Ao criar a transação, o usuário deverá receber um QR code para ser escaneado, bem como detalhes da transação.</p>\n<h4 id=\"parâmetros-do-corpo\">Parâmetros do corpo:</h4>\n<ul>\n<li><strong>amount</strong> (obrigatório): Valor da transação, use float para centavos, Exemplo: 10.90</li>\n<li><strong>callbackUrl</strong> (opcional): URL para onde as notificações sobre o status da transação serão enviadas.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","account","balance"],"host":["pix","evopay","cash"],"query":[],"variable":[]}},"response":[{"id":"0787b870-ee77-416d-848b-0e8a2ed9ec66","name":"Saldo","originalRequest":{"method":"GET","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/account/balance"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"balance\": 1500.50\n}\n"}],"_postman_id":"34a79c9e-1712-4b36-bcc7-141db4c36ff8"},{"name":"Metricas","event":[{"listen":"test","script":{"id":"4cf382b2-c23b-4716-a0c8-49abe2f8223c","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('taxAmount');","    pm.expect(responseData).to.have.property('amountWithTax');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","})","","pm.test('Amount, taxAmount, and amountWithTax are non-negative numbers', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.amount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.taxAmount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.amountWithTax).to.be.a('number').and.to.be.at.least(0);","})"],"type":"text/javascript","packages":{}}}],"id":"4216ec31-c0df-4f34-8ba8-94f593f57a81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the API-Key header generated by Postman.","key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/account/summary?dateFrom=2024-01-01&dateTo=2024-01-31&groupBy=day&grouped=true","description":"<p>Esse endpoint permite a criação de uma nova transação Pix. Ao criar a transação, o usuário deverá receber um QR code para ser escaneado, bem como detalhes da transação.</p>\n<h4 id=\"parâmetros-do-corpo\">Parâmetros do corpo:</h4>\n<ul>\n<li><strong>amount</strong> (obrigatório): Valor da transação, use float para centavos, Exemplo: 10.90</li>\n<li><strong>callbackUrl</strong> (opcional): URL para onde as notificações sobre o status da transação serão enviadas.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","account","summary"],"host":["pix","evopay","cash"],"query":[{"key":"dateFrom","value":"2024-01-01"},{"key":"dateTo","value":"2024-01-31"},{"key":"groupBy","value":"day"},{"key":"grouped","value":"true"}],"variable":[]}},"response":[{"id":"3b072149-ecc0-4908-9318-5bfff99a6e1a","name":"Metricas","originalRequest":{"method":"GET","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":{"raw":"https://pix.evopay.cash/v1/account/summary?dateFrom=2024-01-01&dateTo=2024-01-31&groupBy=day&grouped=true","protocol":"https","host":["pix","evopay","cash"],"path":["v1","account","summary"],"query":[{"key":"dateFrom","value":"2024-01-01"},{"key":"dateTo","value":"2024-01-31"},{"key":"groupBy","value":"day"},{"key":"grouped","value":"true"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"totalTransactions\": 150,\n  \"deposit\": {\n    \"totalAmount\": 5000.00,\n    \"totalTransactions\": 120,\n    \"statuses\": {\n      \"pending\": {\n        \"count\": 10,\n        \"amount\": 200.00,\n        \"taxValue\": 5.00\n      },\n      \"completed\": {\n        \"count\": 100,\n        \"amount\": 4800.00,\n        \"taxValue\": 240.00\n      },\n      \"canceled\": {\n        \"count\": 10,\n        \"amount\": 0.00,\n        \"taxValue\": 0.00\n      }\n    },\n    \"grouped\": [\n      {\n        \"date\": \"2024-01-01\",\n        \"amount\": 500.00\n      }\n    ]\n  },\n  \"withdraw\": {\n    \"totalAmount\": 1000.00,\n    \"totalTransactions\": 30,\n    \"statuses\": {\n      \"pending\": {\n        \"count\": 5,\n        \"amount\": 100.00,\n        \"taxValue\": 2.50\n      },\n      \"completed\": {\n        \"count\": 25,\n        \"amount\": 900.00,\n        \"taxValue\": 45.00\n      },\n      \"canceled\": {\n        \"count\": 0,\n        \"amount\": 0.00,\n        \"taxValue\": 0.00\n      }\n    }\n  }\n}\n"}],"_postman_id":"4216ec31-c0df-4f34-8ba8-94f593f57a81"},{"name":"Transações","event":[{"listen":"test","script":{"id":"4cf382b2-c23b-4716-a0c8-49abe2f8223c","exec":["pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('id');","    pm.expect(responseData).to.have.property('status');","    pm.expect(responseData).to.have.property('amount');","    pm.expect(responseData).to.have.property('taxAmount');","    pm.expect(responseData).to.have.property('amountWithTax');","    pm.expect(responseData).to.have.property('qrCodeText');","    pm.expect(responseData).to.have.property('qrCodeBase64');","    pm.expect(responseData).to.have.property('qrCodeUrl');","})","","pm.test('Amount, taxAmount, and amountWithTax are non-negative numbers', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.amount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.taxAmount).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.amountWithTax).to.be.a('number').and.to.be.at.least(0);","})"],"type":"text/javascript","packages":{}}}],"id":"86cb673e-0768-4ec6-a325-0cbf2e4a6045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the API-Key header generated by Postman.","key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":"https://pix.evopay.cash/v1/account/transactions?dateFrom=2024-01-01&dateTo=2024-01-31&limit=10&page=1&status=COMPLETED&type=DEPOSIT","description":"<p>Esse endpoint permite a criação de uma nova transação Pix. Ao criar a transação, o usuário deverá receber um QR code para ser escaneado, bem como detalhes da transação.</p>\n<h4 id=\"parâmetros-do-corpo\">Parâmetros do corpo:</h4>\n<ul>\n<li><strong>amount</strong> (obrigatório): Valor da transação, use float para centavos, Exemplo: 10.90</li>\n<li><strong>callbackUrl</strong> (opcional): URL para onde as notificações sobre o status da transação serão enviadas.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","account","transactions"],"host":["pix","evopay","cash"],"query":[{"key":"dateFrom","value":"2024-01-01"},{"key":"dateTo","value":"2024-01-31"},{"key":"limit","value":"10"},{"key":"page","value":"1"},{"key":"status","value":"COMPLETED"},{"key":"type","value":"DEPOSIT"}],"variable":[]}},"response":[{"id":"37e62323-6b3e-4286-bd09-563564719735","name":"Transações","originalRequest":{"method":"GET","header":[{"key":"API-Key","value":"YOUR_TOKEN","type":"text"}],"url":{"raw":"https://pix.evopay.cash/v1/account/transactions?dateFrom=2024-01-01&dateTo=2024-01-31&limit=10&page=1&status=COMPLETED&type=DEPOSIT","protocol":"https","host":["pix","evopay","cash"],"path":["v1","account","transactions"],"query":[{"key":"dateFrom","value":"2024-01-01"},{"key":"dateTo","value":"2024-01-31"},{"key":"limit","value":"10"},{"key":"page","value":"1"},{"key":"status","value":"COMPLETED"},{"key":"type","value":"DEPOSIT"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"total\": 150,\n  \"pages\": 15,\n  \"transactions\": [\n    {\n      \"id\": \"trans123\",\n      \"amount\": 100.50,\n      \"status\": \"COMPLETED\",\n      \"type\": \"DEPOSIT\",\n      \"callbackUrl\": \"https://example.com/callback\",\n      \"qrCodeText\": \"000201010211...\",\n      \"qrCodeUrl\": \"http://pix.evopay.cash/v1/pix/qr-code/<id>\",\n      \"taxValue\": 5.00,\n      \"taxType\": \"percent\",\n      \"payerDocument\": \"12345678909\",\n      \"payerName\": \"João Silva\",\n      \"createdAt\": \"2024-01-01T12:00:00Z\",\n      \"updatedAt\": \"2024-01-01T12:00:00Z\"\n    }\n  ]\n}"}],"_postman_id":"86cb673e-0768-4ec6-a325-0cbf2e4a6045"}],"event":[{"listen":"prerequest","script":{"id":"cc8039d8-0f18-46ae-9513-e0ef336994df","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"000d7662-8e7a-4b97-8835-cf5080d1080b","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"api-key","value":"YOUR_TOKEN"}]}