{
  "info": {
    "_postman_id": "78129627-28a4-46df-9ecd-47d4e002505a",
    "name": "documentação-oficial",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "43118554"
  },
  "item": [
    {
      "name": "Autenticação",
      "item": [
        {
          "name": "Autenticação Aplicação",
          "item": [
            {
              "name": "Autenticação de aplicação",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var jsonData = JSON.parse(responseBody);",
                      "",
                      "postman.setEnvironmentVariable(\"tokenapp\", jsonData.token);"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{key_pub}}",
                      "type": "string"
                    },
                    {
                      "key": "password",
                      "value": "{{key_priv}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{url}}/api/v1/application/token",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "application",
                    "token"
                  ]
                },
                "description": "O token gerado neste endpoint deve ser utilizado nas requisições que tem o escopo de whitelabel."
              },
              "response": []
            }
          ]
        },
        {
          "name": "Autenticação Usuário",
          "item": [
            {
              "name": "Autenticação do customer via documento e senha",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var jsonData = JSON.parse(responseBody);",
                      "",
                      "postman.setEnvironmentVariable(\"token\", jsonData.token);"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{tokenapp}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"document\": \"\",\n    \"password\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/user/auth",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "auth"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Autenticação do customer via token",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "var jsonData = JSON.parse(responseBody);",
                      "",
                      "postman.setEnvironmentVariable(\"token\", jsonData.token);"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{tokenapp}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"pub\":\"\", // Chave publica do usuário\n    \"secret\": \"\" // Chave privada do usuário\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/user/authtoken",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "authtoken"
                  ]
                },
                "description": "Este endpoint utiliza o bearer token gerado no endpoint application/token.  \nO token gerado neste endpoint deve ser utilizado nas requisições que tem o escopo de usuário.\n\nAs chaves publicas e privadas devem ser solicitadas para a cronos, liberadas mediante a aprovação"
              },
              "response": []
            }
          ]
        }
      ]
    },
    {
      "name": "v2",
      "item": [
        {
          "name": "Geral",
          "item": [
            {
              "name": "Consulta a estrutura de layout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/application/layout",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "application",
                    "layout"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consulta a estrutura de settings",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/application/settings",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "application",
                    "settings"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Verificar status do sistema",
              "request": {
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "{{url}}/api/v1/application/health",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "application",
                    "health"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Lista de bancos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/banks/list",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "banks",
                    "list"
                  ],
                  "query": [
                    {
                      "key": "search",
                      "value": null,
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "direction",
                      "value": null,
                      "type": "text",
                      "disabled": true
                    },
                    {
                      "key": "order_by",
                      "value": null,
                      "type": "text",
                      "disabled": true
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consulta Politica de privacidade",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/privacypolicy",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "privacypolicy"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Autenticação de dois fatores",
          "item": [
            {
              "name": "Reenviar token de 4 digitos",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  },
                  {
                    "key": "x-app",
                    "value": "123",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/transactions/token",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "token"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Solicitar autorização de transação através do token de 4 dígitos",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"token\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/transactions/token/confirm",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "token",
                    "confirm"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Onboarding customer",
          "item": [
            {
              "name": "Atualizar cadastro pf",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"name\": \"Ana Paula Souza Melo\",\n    \"email\": \"ana.paulaMelo@gmail.com\",\n    \"phone\": \"18998752547\",\n    \"password\": \"Mudar@123\",\n    \"mother_name\": \"Carla Souza Melo\",\n    \"father_name\": \"Roberto Souza Melo\",\n    \"gender\": \"F\",\n    \"birth_date\": \"2000-01-01\",\n    \"nationality_state\": \"SP\",\n    \"marital_status\": 1,\n    \"pep\": 0,\n    \"renda_mensal\": 2500.00,\n    \"comprovante_renda\": \"{{arquivo_base64}}\",\n    \"selfie\": \"{{arquivo_base64}}\",\n    \"document_name\": \"rg\",\n    \"document_number\": \"123456\",\n    \"document_state\": \"SP\",\n    \"issuance_date\": \"2004-01-01\",\n    \"document_issuance\": \"SSP\",\n    \"rg_frente\": \"{{arquivo_base64}}\",\n    \"rg_verso\": \"{{arquivo_base64}}\",\n    \"postal_code\": \"12345678\",\n    \"street\": \"Rua das flores\",\n    \"number\": \"123\",\n    \"neighborhood\": \"Jd. das rosas\",\n    \"state\": \"SP\",\n    \"city\": \"São Paulo\",\n    \"country\": \"BR\",\n    \"complement\": \"\",\n    \"comprovante_endereco\": \"{{arquivo_base64}}\",\n    \"accept_communications\": 1,\n    \"accept_privacy\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/register/simplify/:individual_id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "register",
                    "simplify",
                    ":individual_id"
                  ],
                  "variable": [
                    {
                      "key": "individual_id",
                      "value": ""
                    }
                  ]
                },
                "description": "O endpoint realiza alteração do cadastro após inicio na rota: \\[POST\\]/api/v1/register/individual\n\nSerão atualizados somente os campos enviados no payload, mas para finalizar o cadastro, é necessário finalizar o envio de todos os campos que constarem como pendentes,\n\nÉ possivel realizar a consulta pelo endpoint: \\[GET\\]/api/v1/register/simplify/{individual_id}"
              },
              "response": []
            },
            {
              "name": "Atualizar cadastro pj",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"tipo_conta\": \"cnpj\", \n    \"name\": \"Empresa Multi Socios LTDA\",\n    \"nome_fantasia\": \"Multi Socios\",\n    \"foundation_date\": \"2015-06-15\",\n    \"capital_social\": 50000.00,\n    \"profitable\": \"Y\",\n    \"cnae\": \"6201501\",\n    \"cnae_description\": \"Desenvolvimento de Software\",\n    \"email\": \"financeiro@multisocios.com\",\n    \"phone\": \"19999999999\",\n    \"password\": \"Empresa@2024\",\n    \"postal_code\": \"04538-132\",\n    \"street\": \"Rua Clodomiro Amazonas\",\n    \"number\": \"1435\",\n    \"complement\": \"Cj 92\",\n    \"neighborhood\": \"Itaim Bibi\",\n    \"city\": \"São Paulo\",\n    \"state\": \"SP\",\n    \"country\": \"BR\",\n    \"cartao_cnpj\": \"{{arquivo_base64}}\",\n    \"contrato_social\": \"{{arquivo_base64}}\",\n    \"comprovante_endereco\": \"{{arquivo_base64}}\",\n    \"selfie\": \"{{arquivo_base64}}\",\n    \"foto_faturamento\": \"{{arquivo_base64}}\",\n    \"comprovante_renda\": \"{{arquivo_base64}}\",\n    \"accept_privacy\": 1,\n    \"accept_communications\": 1,\n    \"socios\": [\n        {\n            \"document\": \"59384172046\",\n            \"name\": \"Carlos Eduardo Menezes\",\n            \"email\": \"cadu.menezes@exemplo.com\",\n            \"phone\": \"11987456321\",\n            \"password\": \"Senha@987\",\n            \"mother_name\": \"Patrícia Helena Menezes\",\n            \"father_name\": \"Roberto Almeida Menezes\",\n            \"gender\": \"M\",\n            \"birth_date\": \"1990-11-08\",\n            \"nationality\": \"Brasileiro\",\n            \"nationality_state\": \"MG\",\n            \"marital_status\": 2,\n            \"pep\": 0,\n            \"renda_mensal\": 8200.50,\n            \"comprovante_renda\": \"{{arquivo_base64}}\",\n            \"selfie\": \"{{arquivo_base64}}\",\n            \"document_name\": \"rg\",\n            \"document_number\": \"512345678\",\n            \"document_state\": \"MG\",\n            \"document_issuance\": \"SSP\",\n            \"issuance_date\": \"2018-06-21\",\n            \"rg_frente\": \"{{arquivo_base64}}\",\n            \"rg_verso\": \"{{arquivo_base64}}\",\n            \"postal_code\": \"30140071\",\n            \"street\": \"Avenida Afonso Pena\",\n            \"number\": \"1450\",\n            \"neighborhood\": \"Centro\",\n            \"state\": \"MG\",\n            \"city\": \"Belo Horizonte\",\n            \"country\": \"BR\",\n            \"complement\": \"Sala 304\",\n            \"percentual_participacao\": 50.00,\n            \"comprovante_endereco\": \"{{arquivo_base64}}\",\n            \"accept_communications\": 1,\n            \"accept_privacy\": 1\n        },\n        {\n            \"document\": \"87421953068\",\n            \"name\": \"Fernanda Ribeiro Alves\",\n            \"email\": \"fernanda.alves@exemplo.com\",\n            \"phone\": \"21996547832\",\n            \"password\": \"Trocar@456\",\n            \"mother_name\": \"Luciana Ribeiro Alves\",\n            \"father_name\": \"Marcos Antônio Alves\",\n            \"gender\": \"F\",\n            \"birth_date\": \"1988-02-17\",\n            \"nationality\": \"Brasileira\",\n            \"nationality_state\": \"RJ\",\n            \"marital_status\": 1,\n            \"pep\": 0,\n            \"renda_mensal\": 12450.75,\n            \"comprovante_renda\": \"{{arquivo_base64}}\",\n            \"selfie\": \"{{arquivo_base64}}\",\n            \"document_name\": \"rg\",\n            \"document_number\": \"223456789\",\n            \"document_state\": \"RJ\",\n            \"document_issuance\": \"DETRAN\",\n            \"issuance_date\": \"2016-09-03\",\n            \"rg_frente\": \"{{arquivo_base64}}\",\n            \"rg_verso\": \"{{arquivo_base64}}\",\n            \"postal_code\": \"20040030\",\n            \"street\": \"Rua da Quitanda\",\n            \"number\": \"85\",\n            \"neighborhood\": \"Centro\",\n            \"state\": \"RJ\",\n            \"city\": \"Rio de Janeiro\",\n            \"country\": \"BR\",\n            \"complement\": \"Apto 1202\",\n            \"percentual_participacao\": 30.00,\n            \"comprovante_endereco\": \"{{arquivo_base64}}\",\n            \"accept_communications\": 1,\n            \"accept_privacy\": 1\n        }\n    ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/register/simplify/:individual_id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "register",
                    "simplify",
                    ":individual_id"
                  ],
                  "variable": [
                    {
                      "key": "individual_id",
                      "value": ""
                    }
                  ]
                },
                "description": "O endpoint realiza alteração do cadastro após inicio na rota: \\[POST\\]/api/v1/register/individual\n\nSerão atualizados somente os campos enviados no payload, mas para finalizar o cadastro, é necessário finalizar o envio de todos os campos que constarem como pendentes,\n\nÉ possivel realizar a consulta pelo endpoint: \\[GET\\]/api/v1/register/simplify/{individual_id}"
              },
              "response": []
            },
            {
              "name": "Registro individual",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text",
                    "disabled": true
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"document\" : \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/register/individual",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "register",
                    "individual"
                  ]
                },
                "description": "Cria o registro do cliente na whitelabel, e retorna o individual_id do cliente, usado no endpoint de envio e consulta do onboarding"
              },
              "response": []
            },
            {
              "name": "Consultar cadastro",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/register/simplify/:individual_id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "register",
                    "simplify",
                    ":individual_id"
                  ],
                  "variable": [
                    {
                      "key": "individual_id",
                      "value": ""
                    }
                  ]
                },
                "description": "Retorna todas as pendencias e status da conta"
              },
              "response": []
            }
          ]
        },
        {
          "name": "Funções da conta",
          "item": [
            {
              "name": "Documento da conta",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/document?document=",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "document"
                  ],
                  "query": [
                    {
                      "key": "document",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar CEP",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/consultcep/:cep",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "consultcep",
                    ":cep"
                  ],
                  "variable": [
                    {
                      "key": "cep",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Atualizar endereço",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"postal_code\": \"\",\n    \"address_type_id\": \"\",\n    \"street\": \"\",\n    \"number\": \"\",\n    \"neighborhood\": \"\",\n    \"state\": \"\",\n    \"city\": \"\",\n    \"country\": \"BR\",\n    \"complement\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/account/updateaddress",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "updateaddress"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar conta bancária",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar endereço",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/address",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "address"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Solicitar encerramento de conta ⚠️",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/closingaccount",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "closingaccount"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar avatar",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/user/avatar",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "avatar"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Alterar avatar",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"file\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/user/avatar",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "avatar"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar Indicados",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/myrecommendations",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "myrecommendations"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Cadastrar Indicados",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"indicated_name\": \"\",\n    \"indicated_email\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/account/myrecommendations",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "myrecommendations"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Reenvia email para o indicado",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/myrecommendations/:id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "myrecommendations",
                    ":id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "b1817426-b0af-4d22-9efe-ea422fe87469"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Deletar indicado",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/myrecommendations/:id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "myrecommendations",
                    ":id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "b1817426-b0af-4d22-9efe-ea422fe87469"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consulta o cliente",
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "username",
                      "value": "{{key_pub}}",
                      "type": "string"
                    },
                    {
                      "key": "password",
                      "value": "{{key_priv}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text",
                    "disabled": true
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text",
                    "disabled": true
                  },
                  {
                    "key": "x-app",
                    "value": "123",
                    "type": "text",
                    "disabled": true
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/json",
                    "type": "text",
                    "disabled": true
                  },
                  {
                    "key": "whitelabel",
                    "value": "df77dd81-a3bd-4629-8cab-76153eff8132",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/consult?document=",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "consult"
                  ],
                  "query": [
                    {
                      "key": "document",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar notificações",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/notifications/getnotifications",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "notifications",
                    "getnotifications"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Movimentação de conta",
          "item": [
            {
              "name": "Saldo em conta",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/balance",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "balance"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar gráfico transacional",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/monthlytransamount",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "monthlytransamount"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Lista de extratos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/statements",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "statements"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar transação",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/statements/:id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "statements",
                    ":id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Exportar extrato bancário",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/transactions/exports?typeExport=",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "exports"
                  ],
                  "query": [
                    {
                      "key": "typeExport",
                      "value": "",
                      "description": "pdf | excel",
                      "type": "text"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "P2P",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"amount\": 0.00,\n    \"target_document\": \"\",\n    \"description\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/transactions/p2p",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "p2p"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar taxas de transações",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"amount\": 1000.00\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/transactions/ratefromamount",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "ratefromamount"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Cartão",
          "item": [
            {
              "name": "Solicitar novo cartão físico",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/card/request",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    "request"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Custos e tarifas",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"cep\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/card/costsandfare",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    "costsandfare"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Lista de cartões do utilizador",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/cards",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "cards"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Informações de um cartão mascarado",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/card/:card_id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    ":card_id"
                  ],
                  "variable": [
                    {
                      "key": "card_id",
                      "value": "69bc10c6f6a2c4977f03e194"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Informações de um cartão desmascarado",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/card/:card_id/unmask",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    ":card_id",
                    "unmask"
                  ],
                  "variable": [
                    {
                      "key": "card_id",
                      "value": "69bc10c6f6a2c4977f03e194"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Alterar senha do cartão",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"password\": \"\",\n    \"confirm_password\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/card/:card_id/changepassword",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    ":card_id",
                    "changepassword"
                  ],
                  "variable": [
                    {
                      "key": "card_id",
                      "value": "crt-9304b67b-31ca-42dd-a6cc-088e7743000a"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Bloquear/Desbloquear temporariamente",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/card/:card_id/blocktemporaly?block=0",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    ":card_id",
                    "blocktemporaly"
                  ],
                  "query": [
                    {
                      "key": "block",
                      "value": "0"
                    }
                  ],
                  "variable": [
                    {
                      "key": "card_id",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Desbloquear cartão recebido",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"last_four\": \"\",\n    \"expiration_date\": \"MM/YYYY\",\n    \"password\": \"\",\n    \"confirm_password\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/card/:card_id/unblockcardreceived",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "card",
                    ":card_id",
                    "unblockcardreceived"
                  ],
                  "variable": [
                    {
                      "key": "card_id",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Recuperação de senha",
          "item": [
            {
              "name": "Recuperar senha",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"document\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/user/recoverypassword",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "recoverypassword"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Confirmar codigo",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"document\": \"\",\n    \"recoverycode\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/user/confirmrecoverycode",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "confirmrecoverycode"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Alterar senha",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{tokenapp}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"document\": \"\",\n    \"recoverycode\": \"\",\n    \"newpassword\": \"\",\n    \"confirmnewpassword\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/user/commitchangepassword",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "user",
                    "commitchangepassword"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Investimento",
          "item": [
            {
              "name": "Listar investimentos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/investments?page=1&limit=11&start=2026-06-29&end=",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "investments"
                  ],
                  "query": [
                    {
                      "key": "page",
                      "value": "1"
                    },
                    {
                      "key": "limit",
                      "value": "11"
                    },
                    {
                      "key": "start",
                      "value": "2026-06-29"
                    },
                    {
                      "key": "end",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar produtos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/packages",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "packages"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar produto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/packages?id=1",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "packages"
                  ],
                  "query": [
                    {
                      "key": "id",
                      "value": "1"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Investir em produto",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/investments?amount=100&package=1&contracts=15",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "investments"
                  ],
                  "query": [
                    {
                      "key": "amount",
                      "value": "100"
                    },
                    {
                      "key": "package",
                      "value": "1"
                    },
                    {
                      "key": "contracts",
                      "value": "15"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Resgatar investimento",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/investments/rescue",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "investments",
                    "rescue"
                  ]
                }
              },
              "response": []
            }
          ]
        }
      ]
    },
    {
      "name": "Pix",
      "item": [
        {
          "name": "Limites",
          "item": [
            {
              "name": "Consultar limites",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/account/limits",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "limits"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Solicitar novos limites (ted,p2p,boleto)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"ted\": 15000,\n    \"boleto\": 15000,\n    \"p2p\": 15000,\n    \"doc_upload\": \"{{arquivo_base64}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/account/limits",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "limits"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar limites Pix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/pix/limites",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "limites"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Solicitar novos limites (pix)",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"type_person\": \"pf\",\n    \"amount_pix_diurno\": 1000,\n    \"amount_pix_noturno\": 1000,\n    \"doc_upload\": \"{{arquivo_base64}}\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/account/pixlimits",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "account",
                    "pixlimits"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar limites saque e troco",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/pix/limitessaquetroco",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "limitessaquetroco"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar limites de indivíduo por ID ⚠️",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/pix/limitedaccount/:id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "limitedaccount",
                    ":id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "9defaf66-fe05-4804-bcf4-034987985a3e"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar limite de horário",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/pix/periodlimits",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "periodlimits"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Transferências e ordem de pagamentos",
          "item": [
            {
              "name": "Criar Transferência PIX - deprecated",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  },
                  {
                    "key": "Accept",
                    "value": "application/json",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"key_value\": \"\",\n  \"key_type\": \"evp\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/criartransferencia",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "criartransferencia"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Confirmar Transferência PIX - deprecated",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"id_pagamento\":\"\",\n    \"valor\": \"0.1\",\n    \"description\": \"\",\n    \"save_as_favorite\":\"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/confirmartransferencia",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "confirmartransferencia"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Enviar ordem de pagamento pix",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"amount\": 1000,\n    \"dateTimePsp\": \"\",\n    \"tpInitiation\":1,\n    \"e2e\": \"\",\n    \"key\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/pix/order",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "pix",
                    "order"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Gerar pix cobrança",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"amount\":1000,\n    \"description\": \"\",\n    \"pix_key\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/gerarcobranca",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "gerarcobranca"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Decodificar qrcode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"qrCodePayload\":\"\",\n    \"ispb\":\"\",\n    \"document\":\"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/pix/qrcode/decode",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "pix",
                    "qrcode",
                    "decode"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Pix Dict",
          "item": [
            {
              "name": "Cadastrar chave pix",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"tipo_chave\": \"evp\",\n    \"token\": \"\"\n}\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/chaves/cadastrar",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "chaves",
                    "cadastrar"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Requisitar autoridade sob chave pix",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"chave\":\"\",\n    \"tipo_chave\":\"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/chaves/requestauthority",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "chaves",
                    "requestauthority"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Confirmar código recebido via sms ou e-mail",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"chave\": \"\",\n    \"tipo_chave\": \"\",\n    \"token\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/chaves/confirmauthority",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "chaves",
                    "confirmauthority"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Validar se já possui autoridade sobre determinada chave",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"chave\":\"\",\n    \"tipo_chave\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/chaves/validateauthority",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "chaves",
                    "validateauthority"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar chave pix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/pix/chaves/listar",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "chaves",
                    "listar"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar chave DICT externa",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/pix/dict/external?key=1245678901",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "pix",
                    "dict",
                    "external"
                  ],
                  "query": [
                    {
                      "key": "key",
                      "value": "1245678901"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Deletar chave pix",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"id\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/pix/chaves/delete",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "pix",
                    "chaves",
                    "delete"
                  ]
                }
              },
              "response": []
            }
          ]
        }
      ]
    },
    {
      "name": "Cobrança via boleto",
      "item": [
        {
          "name": "Boleto",
          "item": [
            {
              "name": "Criar boleto unitário",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"type\": \"common\",\n    \"sync\": true,\n    \"amount\": 1000,\n    \"expires_at\": \"2026-06-25\",\n    \"payer\": {\n        \"name\":\"nome teste\",\n        \"document\":\"12345678900\",\n        \"address_zipcode\": \"12345678\",\n        \"address_city\": \"cidade teste\",\n        \"address_neighborhood\": \"Jd. das flores\",\n        \"address\": \"rua teste\",\n        \"address_number\": \"1135\",\n        \"address_state\": \"SP\",\n        \"address_complement\": \"Não consta\",\n        \"email\": \"email@gmail.com\",\n        \"phone\": \"18123456789\"\n    }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/billet",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "billet"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Criar boletos em lote por grupo ⚠️",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/billet/bulk/:groupName",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "billet",
                    "bulk",
                    ":groupName"
                  ],
                  "variable": [
                    {
                      "key": "groupName",
                      "value": "boleto teste"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar boletos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/billet/list/?page=1",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "billet",
                    "list",
                    ""
                  ],
                  "query": [
                    {
                      "key": "page",
                      "value": "1"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar boleto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/billet/:id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "billet",
                    ":id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Incluir instrução",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/billet/:id/:action",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "billet",
                    ":id",
                    ":action"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": ""
                    },
                    {
                      "key": "action",
                      "value": "cancelar",
                      "description": "cancelar | baixar"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Compartilhar boleto via e-mail",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/billet/share/:billetID",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "billet",
                    "share",
                    ":billetID"
                  ],
                  "variable": [
                    {
                      "key": "billetID",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Grupo",
          "item": [
            {
              "name": "Criar grupo",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"name\": \"Grupo teste API2\",\n    \"settings\": {\n        \"amount\": 1,\n        \"fees\": 1,\n        \"fine\": 1,\n        \"expires_at\": \"2026-06-25\",\n        \"description\": \"descrição teste\",\n        \"type\": \"common\",\n        \"recurrence\": {\n            \"qty_charges\": 2,\n            \"frequency\": 15,\n            \"expires_at\": \"2027-06-25\"\n        }\n    }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/group",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar grupos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/group/list/?page=1",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group",
                    "list",
                    ""
                  ],
                  "query": [
                    {
                      "key": "page",
                      "value": "1"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Deletar grupo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/group/:groupName",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group",
                    ":groupName"
                  ],
                  "variable": [
                    {
                      "key": "groupName",
                      "value": "Grupo teste API"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Consultar grupo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/group/:groupName/",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group",
                    ":groupName",
                    ""
                  ],
                  "variable": [
                    {
                      "key": "groupName",
                      "value": "Grupo teste"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Criar item no grupo",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"name\": \"Pagador teste\",\n    \"document\": \"12345678901\",\n    \"address_zipcode\": \"19023320\",\n    \"address_city\": \"Cidade teste\",\n    \"address_neighborhood\": \"Bairro teste\",\n    \"address\": \"Rua teste\",\n    \"address_state\": \"SP\",\n    \"address_number\": \"123\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/group/item/:groupName",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group",
                    "item",
                    ":groupName"
                  ],
                  "variable": [
                    {
                      "key": "groupName",
                      "value": "Grupo teste API2"
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Listar itens do grupo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/group/list/items/:groupName",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group",
                    "list",
                    "items",
                    ":groupName"
                  ],
                  "variable": [
                    {
                      "key": "groupName",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Deletar item",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/group/item/:id",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "group",
                    "item",
                    ":id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": ""
                    }
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Recargas",
          "item": [
            {
              "name": "Retornar lista de operadoras",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "url": {
                  "raw": "{{url}}/api/v1/transactions/providers",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "providers"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Retornar valores de recarga operadora",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"number\": \"\",\n    \"stateCode\": \"\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/transactions/providers/values",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "providers",
                    "values"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Efetuar recarga",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Bearer {{token}}",
                    "type": "text"
                  }
                ],
                "body": {
                  "mode": "raw",
                  "raw": "{\n    \"number\": \"\",\n    \"stateCode\": \"\",\n    \"amount\": 5.00\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "{{url}}/api/v1/transactions/topups",
                  "host": [
                    "{{url}}"
                  ],
                  "path": [
                    "api",
                    "v1",
                    "transactions",
                    "topups"
                  ]
                }
              },
              "response": []
            }
          ]
        }
      ]
    }
  ]
}