{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "{{ config(\"app.url\") }}"
        }
    ],
    "info": {
        "name": "MeuPagamento API Documentation",
        "_postman_id": "38cb99e9-0b73-4d33-88a8-df1c0e8b2fdc",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "API Tokens",
            "description": "\nGerenciamento de tokens de API para autentica\u00e7\u00e3o",
            "item": [
                {
                    "name": "Listar tokens de API do usu\u00e1rio",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Tokens de API obtidos com sucesso\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My API Token\",\n      \"abilities\": [\"*\"],\n      \"expires_at\": \"2024-12-31T23:59:59.000000Z\",\n      \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n      \"last_used_at\": \"2024-01-15T10:30:00.000000Z\",\n      \"is_active\": true\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Criar novo token de API",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tokens"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"My API Token\",\"abilities\":[\"read\",\"write\"],\"expires_at\":\"2024-12-31T23:59:59Z\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"message\": \"Token de API criado com sucesso\",\n  \"data\": {\n    \"token\": \"1|abcdef123456...\",\n    \"name\": \"My API Token\",\n    \"abilities\": [\"read\", \"write\"],\n    \"expires_at\": \"2024-12-31T23:59:59.000000Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\"Nome do token \u00e9 obrigat\u00f3rio\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter informa\u00e7\u00f5es do token atual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tokens\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tokens\/current"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Revogar token de API",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tokens\/:tokenId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tokens\/:tokenId",
                            "variable": [
                                {
                                    "id": "tokenId",
                                    "key": "tokenId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Revogar todos os tokens de API do usu\u00e1rio",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tokens"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Autentica\u00e7\u00e3o Social",
            "description": "Inicia o processo de autentica\u00e7\u00e3o com um provedor social (Google, Apple ou Facebook).\nRetorna a URL de redirecionamento para o provedor social.",
            "item": [
                {
                    "name": "Redirecionar para o provedor social",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/social\/redirect\/:provider",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/social\/redirect\/:provider",
                            "variable": [
                                {
                                    "id": "provider",
                                    "key": "provider",
                                    "value": "architecto",
                                    "description": "O provedor social. Valores aceitos: google, apple, facebook"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"redirect_url\": \"https:\/\/accounts.google.com\/oauth\/authorize?...\",\n    \"provider\": \"google\"\n  }\n}",
                            "name": "success"
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Erro ao iniciar autentica\u00e7\u00e3o social\",\n  \"error\": \"Provedor social n\u00e3o suportado: twitter\"\n}",
                            "name": "error"
                        }
                    ]
                },
                {
                    "name": "Processar callback do provedor social",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/social\/callback\/:provider",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/social\/callback\/:provider",
                            "variable": [
                                {
                                    "id": "provider",
                                    "key": "provider",
                                    "value": "architecto",
                                    "description": "O provedor social. Valores aceitos: google, apple, facebook"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Login realizado com sucesso\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"Jo\u00e3o Silva\",\n      \"email\": \"joao@example.com\",\n      \"avatar_url\": \"https:\/\/lh3.googleusercontent.com\/...\",\n      \"social_provider\": \"google\",\n      \"user_type\": \"debtor\",\n      \"is_verified\": true,\n      \"created_at\": \"2025-01-27T10:00:00.000000Z\",\n      \"updated_at\": \"2025-01-27T10:00:00.000000Z\"\n    },\n    \"token\": \"1|abcdef123456...\",\n    \"token_type\": \"Bearer\"\n  }\n}",
                            "name": "success"
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"C\u00f3digo de autoriza\u00e7\u00e3o n\u00e3o fornecido\"\n}",
                            "name": "invalid_code"
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Sess\u00e3o expirada. Tente novamente.\"\n}",
                            "name": "invalid_state"
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Erro ao processar autentica\u00e7\u00e3o social\",\n  \"error\": \"Erro interno do servidor\"\n}",
                            "name": "error"
                        }
                    ]
                },
                {
                    "name": "Listar contas sociais conectadas",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/social\/connected-accounts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/social\/connected-accounts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"connected_accounts\": [\n      {\n        \"provider\": \"google\",\n        \"connected_at\": \"2025-01-27T10:00:00.000000Z\",\n        \"avatar_url\": \"https:\/\/lh3.googleusercontent.com\/...\"\n      }\n    ],\n    \"has_social_login\": true,\n    \"social_provider\": \"google\"\n  }\n}",
                            "name": "success"
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Erro ao listar contas sociais\"\n}",
                            "name": "error"
                        }
                    ]
                },
                {
                    "name": "Desconectar conta social",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/social\/disconnect\/:provider",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/social\/disconnect\/:provider",
                            "variable": [
                                {
                                    "id": "provider",
                                    "key": "provider",
                                    "value": "architecto",
                                    "description": "O provedor social a ser desconectado. Valores aceitos: google, apple, facebook"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Conta social desconectada com sucesso\"\n}",
                            "name": "success"
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Provedor social inv\u00e1lido\"\n}",
                            "name": "invalid_provider"
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Usu\u00e1rio n\u00e3o possui login com este provedor\"\n}",
                            "name": "not_connected"
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Erro ao desconectar conta social\"\n}",
                            "name": "error"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/health",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/health",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/health"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"ok\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/test"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"message\":\"Test endpoint working\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Register a new user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Jo\u00e3o Silva\",\"email\":\"joao@example.com\",\"password\":\"password123\",\"password_confirmation\":\"password123\",\"phone\":\"11999999999\",\"document\":\"12345678901\",\"user_type\":\"individual\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"message\": \"User registered successfully\",\n  \"user\": {\n    \"id\": 1,\n    \"name\": \"Jo\u00e3o Silva\",\n    \"email\": \"joao@example.com\",\n    \"phone\": \"11999999999\",\n    \"user_type\": \"individual\",\n    \"is_active\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"name\": [\"Nome \u00e9 obrigat\u00f3rio\"],\n    \"email\": [\"Email \u00e9 obrigat\u00f3rio\"],\n    \"password\": [\"Senha \u00e9 obrigat\u00f3ria\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"joao@example.com\",\"password\":\"password123\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Login successful\",\n  \"user\": {\n    \"id\": 1,\n    \"name\": \"Jo\u00e3o Silva\",\n    \"email\": \"joao@example.com\",\n    \"phone\": \"11999999999\",\n    \"user_type\": \"individual\",\n    \"is_active\": true\n  },\n  \"token\": \"1|abcdef123456...\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"message\": \"Credenciais inv\u00e1lidas\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Reset password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/reset-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/reset-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 422,
                            "body": "{\"message\":\"Validation failed\",\"errors\":{\"email\":[\"The email field is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verify password reset token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/verify-reset-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/verify-reset-token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 422,
                            "body": "{\"message\":\"Validation failed\",\"errors\":{\"email\":[\"The email field is required.\"],\"token\":[\"The token field is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update password with reset token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/update-password-with-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/update-password-with-token"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 422,
                            "body": "{\"message\":\"Validation failed\",\"errors\":{\"email\":[\"The email field is required.\"],\"token\":[\"The token field is required.\"],\"password\":[\"The password field is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Logout user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get authenticated user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/user"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of recipients.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created recipient.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Validate document.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients\/validate-document",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients\/validate-document"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified recipient.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the recipient."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified recipient.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the recipient."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remove the specified recipient.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the recipient."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get recipient history.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients\/:id\/history",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients\/:id\/history",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the recipient."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Listar cobran\u00e7as",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Criar nova cobran\u00e7a",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"description\":\"Pagamento de servi\u00e7os\",\"amount\":\"100.50\",\"due_date\":\"2024-12-31\",\"recipient_id\":1,\"installments\":3,\"payment_methods\":[\"pix\",\"credit_card\"],\"metadata\":{\"order_id\":\"12345\"}}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"message\": \"Cobran\u00e7a criada com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"description\": \"Pagamento de servi\u00e7os\",\n    \"amount\": 100.50,\n    \"due_date\": \"2024-12-31\",\n    \"status\": \"pending\",\n    \"recipient_id\": 1,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"description\": [\"Descri\u00e7\u00e3o \u00e9 obrigat\u00f3ria\"],\n    \"amount\": [\"Valor \u00e9 obrigat\u00f3rio\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/charges\/test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/test"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/charges\/new",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/new",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/new"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de cobran\u00e7as",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/metrics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/metrics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter resumo das cobran\u00e7as (alias para statistics)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter estat\u00edsticas das cobran\u00e7as",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter cobran\u00e7a espec\u00edfica",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atualizar cobran\u00e7a",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cancelar cobran\u00e7a",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/cancel",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Reenviar notifica\u00e7\u00e3o de cobran\u00e7a",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id\/resend",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/resend",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"channel\":\"email\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Notifica\u00e7\u00e3o reenviada com sucesso\",\n  \"data\": {\"id\": \"<charge_id>\", \"channel\": \"email\"}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Gerar link de pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id\/payment-link",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/payment-link",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Calcular taxas",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id\/fees",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/fees",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter parcelas pendentes de uma cobran\u00e7a",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id\/pending-installments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/pending-installments",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter resumo financeiro da cobran\u00e7a",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/charges\/:id\/financial-summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/financial-summary",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas gerais do dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/metrics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/metrics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de cobran\u00e7as",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/charges",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/charges"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de pagamentos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/payments"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de usu\u00e1rios",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de devedores",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/debtors",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/debtors"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de receita",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/revenue",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/revenue"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas de performance",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/performance",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/performance"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter dados para gr\u00e1ficos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/chart\/:type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/chart\/:type",
                            "variable": [
                                {
                                    "id": "type",
                                    "key": "type",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter atividades recentes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/activities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/activities"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter alertas e notifica\u00e7\u00f5es",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/alerts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/alerts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas em tempo real",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/realtime",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/realtime"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter estat\u00edsticas de uso",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/usage",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/usage"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter resumo completo do dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9tricas do extrato",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/ledger",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/ledger"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter resumo do extrato",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/ledger\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/ledger\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Limpar cache do dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dashboard\/clear-cache",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dashboard\/clear-cache"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Calcular taxas e valores de pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calculator\/calculate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calculator\/calculate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Calcular apenas taxas (m\u00e9todo simplificado)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calculator\/fees",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calculator\/fees"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9todos de pagamento dispon\u00edveis",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/calculator\/payment-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/calculator\/payment-methods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9todos de pagamento manual dispon\u00edveis",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/manual-payments\/methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/manual-payments\/methods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Validar dados de pagamento manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/manual-payments\/validate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/manual-payments\/validate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get ledger summary for dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ledger\/summary",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ledger\/summary"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get specific ledger entry",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ledger\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ledger\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the ledger."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/bank-accounts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/bank-accounts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/bank-accounts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/bank-accounts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/bank-accounts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/bank-accounts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/bank-accounts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/bank-accounts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/bank-accounts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the bank account."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/bank-accounts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/bank-accounts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/bank-accounts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the bank account."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE api\/v1\/bank-accounts\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/bank-accounts\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/bank-accounts\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "564",
                                    "description": "The ID of the bank account."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/penalty-settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/penalty-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/penalty-settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/penalty-settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/penalty-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/penalty-settings"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/transactions\/btg-pix",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/btg-pix",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/btg-pix"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/transactions\/btg-pix\/{transaction_id}\/reconcile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/transactions\/btg-pix\/:transaction_id\/reconcile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/transactions\/btg-pix\/:transaction_id\/reconcile",
                            "variable": [
                                {
                                    "id": "transaction_id",
                                    "key": "transaction_id",
                                    "value": "16",
                                    "description": "The ID of the transaction."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/btg\/token\/invalidate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/btg\/token\/invalidate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/btg\/token\/invalidate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Exibir cobran\u00e7a p\u00fablica por ID (ULID)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/public\/charge\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/public\/charge\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the charge."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 404,
                            "body": "{\"message\":\"Cobran\\u00e7a n\\u00e3o encontrada\",\"error\":\"CHARGE_NOT_FOUND\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Calcular taxas e valores de pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/public\/calculator\/calculate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/public\/calculator\/calculate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Par\\u00e2metros inv\\u00e1lidos\",\"errors\":{\"total_amount\":[\"The total amount field is required.\"],\"installments\":[\"The installments field is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Calcular apenas taxas (m\u00e9todo simplificado)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/public\/calculator\/fees",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/public\/calculator\/fees"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Par\\u00e2metros inv\\u00e1lidos\",\"errors\":{\"total_amount\":[\"The total amount field is required.\"],\"installments\":[\"The installments field is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter m\u00e9todos de pagamento dispon\u00edveis",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/public\/calculator\/payment-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/public\/calculator\/payment-methods"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"data\":[{\"value\":\"pix\",\"name\":\"PIX\",\"description\":\"Pagamento instant\\u00e2neo via PIX\",\"fee_percentage\":\"0.9900\",\"min_fee\":\"0.30\",\"max_fee\":null,\"is_instant\":true,\"requires_qr_code\":true,\"is_card\":false,\"is_manual\":false,\"metadata\":{\"icon\":\"pix\",\"color\":\"#32BCAD\",\"gateway\":\"pix\"}},{\"value\":\"pix_manual\",\"name\":\"PIX Manual\",\"description\":\"PIX com confirma\\u00e7\\u00e3o manual\",\"fee_percentage\":\"0.0000\",\"min_fee\":\"0.00\",\"max_fee\":null,\"is_instant\":true,\"requires_qr_code\":true,\"is_card\":false,\"is_manual\":true,\"metadata\":{\"icon\":\"pix\",\"color\":\"#32BCAD\",\"gateway\":\"pix_manual\"}},{\"value\":\"credit_card\",\"name\":\"Cart\\u00e3o de Cr\\u00e9dito\",\"description\":\"Pagamento com cart\\u00e3o de cr\\u00e9dito\",\"fee_percentage\":\"3.4900\",\"min_fee\":\"0.50\",\"max_fee\":null,\"is_instant\":true,\"requires_qr_code\":false,\"is_card\":true,\"is_manual\":false,\"metadata\":{\"icon\":\"credit-card\",\"color\":\"#007BFF\",\"gateway\":\"stripe\",\"supports_installments\":true}},{\"value\":\"debit_card\",\"name\":\"Cart\\u00e3o de D\\u00e9bito\",\"description\":\"Pagamento com cart\\u00e3o de d\\u00e9bito\",\"fee_percentage\":\"1.9900\",\"min_fee\":\"0.30\",\"max_fee\":null,\"is_instant\":true,\"requires_qr_code\":false,\"is_card\":true,\"is_manual\":false,\"metadata\":{\"icon\":\"credit-card\",\"color\":\"#28A745\",\"gateway\":\"stripe\",\"supports_installments\":false}},{\"value\":\"bank_slip\",\"name\":\"Boleto Banc\\u00e1rio\",\"description\":\"Pagamento via boleto banc\\u00e1rio\",\"fee_percentage\":\"1.4500\",\"min_fee\":\"0.30\",\"max_fee\":null,\"is_instant\":false,\"requires_qr_code\":false,\"is_card\":false,\"is_manual\":false,\"metadata\":{\"icon\":\"barcode\",\"color\":\"#FFC107\",\"gateway\":\"boleto\",\"processing_days\":1}},{\"value\":\"manual\",\"name\":\"Pagamento Manual\",\"description\":\"Pagamento com confirma\\u00e7\\u00e3o manual\",\"fee_percentage\":\"0.0000\",\"min_fee\":\"0.00\",\"max_fee\":null,\"is_instant\":true,\"requires_qr_code\":false,\"is_card\":false,\"is_manual\":true,\"metadata\":{\"icon\":\"hand\",\"color\":\"#6C757D\",\"gateway\":\"manual\"}}],\"message\":\"M\\u00e9todos de pagamento obtidos com sucesso\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/banks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/banks",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/banks"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"current_page\":1,\"data\":[{\"id\":116,\"COMPE\":\"237\",\"ISPB\":\"60746948\",\"Document\":\"60.746.948\\\/0001-12\",\"LongName\":\"Banco Bradesco S.A.\",\"ShortName\":\"BCO BRADESCO S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":1,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Imobili\\u00e1rio,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.bradesco.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":1,\"COMPE\":\"001\",\"ISPB\":\"00000000\",\"Document\":\"00.000.000\\\/0001-91\",\"LongName\":\"Banco do Brasil S.A.\",\"ShortName\":\"BCO DO BRASIL S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":1,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Imobili\\u00e1rio,Outros Cr\\u00e9ditos,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.bb.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":17,\"COMPE\":\"033\",\"ISPB\":\"90400888\",\"Document\":\"90.400.888\\\/0001-42\",\"LongName\":\"BANCO SANTANDER (BRASIL) S.A.\",\"ShortName\":\"BCO SANTANDER (BRASIL) S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":1,\"DetectaFlow\":1,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Imobili\\u00e1rio,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.santander.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":57,\"COMPE\":\"104\",\"ISPB\":\"00360305\",\"Document\":\"00.360.305\\\/0001-04\",\"LongName\":\"Caixa Econ\\u00f4mica Federal\",\"ShortName\":\"CAIXA ECONOMICA FEDERAL\",\"Network\":\"Caixa Econ\\u00f4mica Federal\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":1,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Imobi\\u00e1rio,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/caixa.gov.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":180,\"COMPE\":\"341\",\"ISPB\":\"60701190\",\"Document\":\"60.701.190\\\/0001-04\",\"LongName\":\"ITA\\u00da UNIBANCO S.A.\",\"ShortName\":\"ITA\\u00da UNIBANCO S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":1,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Imobili\\u00e1rio,Outros Cr\\u00e9ditos,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.itau.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":403,\"COMPE\":\"644\",\"ISPB\":\"54647259\",\"Document\":\"54.647.259\\\/0001-58\",\"LongName\":\"321 SOCIEDADE DE CR\\u00c9DITO DIRETO S.A.\",\"ShortName\":\"321 SCD S.A.\",\"Network\":null,\"Type\":null,\"PixType\":\"Internet\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2024-06-13\",\"DatePixStarted\":null,\"DateRegistered\":\"2024-06-07 12:08:28\",\"DateUpdated\":\"2024-06-07 12:08:28\",\"created_at\":null,\"updated_at\":null},{\"id\":475,\"COMPE\":\"769\",\"ISPB\":\"24313102\",\"Document\":\"24.313.102\\\/0001-25\",\"LongName\":\"99PAY INSTITUICAO DE PAGAMENTO S.A.\",\"ShortName\":\"99PAY IP S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2025-08-18\",\"DatePixStarted\":\"2025-08-18 10:10:00\",\"DateRegistered\":\"2025-08-18 12:09:55\",\"DateUpdated\":\"2025-08-19 12:09:19\",\"created_at\":null,\"updated_at\":null},{\"id\":359,\"COMPE\":\"574\",\"ISPB\":\"48756121\",\"Document\":\"48.756.121\\\/0001-94\",\"LongName\":\"A55 SOCIEDADE DE CR\\u00c9DITO DIRETO S.A.\",\"ShortName\":\"A55 SCD S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2025-02-21\",\"DatePixStarted\":\"2025-02-21 11:00:00\",\"DateRegistered\":\"2025-02-17 12:08:34\",\"DateUpdated\":\"2025-02-18 12:08:11\",\"created_at\":null,\"updated_at\":null},{\"id\":230,\"COMPE\":\"406\",\"ISPB\":\"37715993\",\"Document\":\"37.715.993\\\/0001-98\",\"LongName\":\"ACCREDITO - SOCIEDADE DE CR\\u00c9DITO DIRETO S.A.\",\"ShortName\":\"ACCREDITO SCD S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2020-11-27\",\"DatePixStarted\":\"2023-03-15 10:00:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":175,\"COMPE\":\"332\",\"ISPB\":\"13140088\",\"Document\":\"13.140.088\\\/0001-99\",\"LongName\":\"ACESSO SOLU\\u00c7\\u00d5ES DE PAGAMENTO S.A. - INSTITUI\\u00c7\\u00c3O DE PAGAMENTO\",\"ShortName\":\"ACESSO SOLU\\u00c7\\u00d5ES DE PAGAMENTO S.A. - INSTITUI\\u00c7\\u00c3O DE PAGAMENTO\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2019-08-16\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2022-12-13 12:06:52\",\"created_at\":null,\"updated_at\":null},{\"id\":414,\"COMPE\":\"663\",\"ISPB\":\"44782130\",\"Document\":\"44.782.130\\\/0001-07\",\"LongName\":\"ACTUAL DISTRIBUIDORA DE T\\u00cdTULOS E VALORES MOBILI\\u00c1RIOS S.A.\",\"ShortName\":\"ACTUAL DTVM S.A.\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2024-12-16\",\"DatePixStarted\":null,\"DateRegistered\":\"2024-12-10 12:09:00\",\"DateUpdated\":\"2024-12-10 12:09:00\",\"created_at\":null,\"updated_at\":null},{\"id\":64,\"COMPE\":\"117\",\"ISPB\":\"92856905\",\"Document\":\"92.856.905\\\/0001-86\",\"LongName\":\"ADVANCED CORRETORA DE C\\u00c2MBIO LTDA\",\"ShortName\":\"ADVANCED CC LTDA\",\"Network\":null,\"Type\":null,\"PixType\":\"Internet\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":\"https:\\\/\\\/advancedcorretora.com.br\\\/\",\"DateOperationStarted\":\"2011-10-03\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2021-05-05 09:11:12\",\"created_at\":null,\"updated_at\":null},{\"id\":132,\"COMPE\":\"272\",\"ISPB\":\"00250699\",\"Document\":\"00.250.699\\\/0001-48\",\"LongName\":\"AGK CORRETORA DE CAMBIO S.A.\",\"ShortName\":\"AGK CC S.A.\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2018-11-21\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2021-05-05 09:11:12\",\"created_at\":null,\"updated_at\":null},{\"id\":353,\"COMPE\":\"565\",\"ISPB\":\"74014747\",\"Document\":\"74.014.747\\\/0001-35\",\"LongName\":\"\\u00c1GORA CORRETORA DE TITULOS E VALORES MOBILIARIOS S.A.\",\"ShortName\":\"\\u00c1GORA CTVM S.A.\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2023-11-20\",\"DatePixStarted\":null,\"DateRegistered\":\"2023-11-14 12:06:11\",\"DateUpdated\":\"2023-11-14 12:06:11\",\"created_at\":null,\"updated_at\":null},{\"id\":383,\"COMPE\":\"599\",\"ISPB\":\"36321990\",\"Document\":\"36.321.990\\\/0001-07\",\"LongName\":\"AGORACRED S\\\/A SOCIEDADE DE CR\\u00c9DITO, FINANCIAMENTO E INVESTIMENTO\",\"ShortName\":\"AGORACRED S\\\/A SCFI\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2024-08-07\",\"DatePixStarted\":null,\"DateRegistered\":\"2024-08-05 12:07:23\",\"DateUpdated\":\"2024-08-05 12:07:23\",\"created_at\":null,\"updated_at\":null},{\"id\":184,\"COMPE\":\"349\",\"ISPB\":\"27214112\",\"Document\":\"27.214.112\\\/0001-00\",\"LongName\":\"AL5 S.A. CR\\u00c9DITO, FINANCIAMENTO E INVESTIMENTO\",\"ShortName\":\"AL5 S.A. CFI\",\"Network\":null,\"Type\":\"IDRT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Consignado,Imobili\\u00e1rio,Outros,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":null,\"DateOperationStarted\":\"2019-10-24\",\"DatePixStarted\":\"2023-08-01 15:22:55\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2023-10-21 12:05:56\",\"created_at\":null,\"updated_at\":null},{\"id\":358,\"COMPE\":\"572\",\"ISPB\":\"51414521\",\"Document\":\"51.414.521\\\/0001-26\",\"LongName\":\"ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.\",\"ShortName\":\"ALL IN CRED SCD S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2023-12-22\",\"DatePixStarted\":\"2024-12-10 11:00:00\",\"DateRegistered\":\"2023-12-18 12:06:50\",\"DateUpdated\":\"2024-12-05 12:08:35\",\"created_at\":null,\"updated_at\":null},{\"id\":160,\"COMPE\":\"313\",\"ISPB\":\"16927221\",\"Document\":\"16.927.221\\\/0001-40\",\"LongName\":\"AMAZ\\u00d4NIA CORRETORA DE C\\u00c2MBIO LTDA.\",\"ShortName\":\"AMAZ\\u00d4NIA CC LTDA.\",\"Network\":null,\"Type\":null,\"PixType\":\"Internet\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2020-08-28\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2021-05-05 09:11:12\",\"created_at\":null,\"updated_at\":null},{\"id\":289,\"COMPE\":\"482\",\"ISPB\":\"42259084\",\"Document\":\"42.259.084\\\/0001-22\",\"LongName\":\"ARTTA SOCIEDADE DE CR\\u00c9DITO DIRETO S.A\",\"ShortName\":\"ARTTA SCD\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2022-10-11\",\"DatePixStarted\":\"2024-12-11 11:00:00\",\"DateRegistered\":\"2022-10-04 12:08:42\",\"DateUpdated\":\"2025-05-08 12:09:16\",\"created_at\":null,\"updated_at\":null},{\"id\":379,\"COMPE\":\"594\",\"ISPB\":\"48703388\",\"Document\":\"48.703.388\\\/0001-13\",\"LongName\":\"ASA SOCIEDADE DE CR\\u00c9DITO FINANCIAMENTO E INVESTIMENTO S.A.\",\"ShortName\":\"ASA SCFI S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2024-03-11\",\"DatePixStarted\":\"2024-07-05 09:00:00\",\"DateRegistered\":\"2024-03-05 12:06:35\",\"DateUpdated\":\"2025-08-27 12:09:03\",\"created_at\":null,\"updated_at\":null},{\"id\":273,\"COMPE\":\"461\",\"ISPB\":\"19540550\",\"Document\":\"19.540.550\\\/0001-21\",\"LongName\":\"ASAAS GEST\\u00c3O FINANCEIRA INSTITUI\\u00c7\\u00c3O DE PAGAMENTO S.A.\",\"ShortName\":\"ASAAS IP S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"Internet\",\"Charge\":1,\"CreditDocument\":0,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2021-10-29\",\"DatePixStarted\":\"2021-11-01 09:00:00\",\"DateRegistered\":\"2021-11-22 11:00:23\",\"DateUpdated\":\"2025-09-20 12:08:16\",\"created_at\":null,\"updated_at\":null},{\"id\":304,\"COMPE\":\"513\",\"ISPB\":\"44728700\",\"Document\":\"44.728.700\\\/0001-72\",\"LongName\":\"ATF SOCIEDADE DE CR\\u00c9DITO DIRETO S.A.\",\"ShortName\":\"ATF SCD S.A.\",\"Network\":null,\"Type\":\"IDRT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":0,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2022-12-02\",\"DatePixStarted\":\"2025-04-25 10:36:24\",\"DateRegistered\":\"2022-11-30 12:07:13\",\"DateUpdated\":\"2025-04-25 23:36:40\",\"created_at\":null,\"updated_at\":null},{\"id\":316,\"COMPE\":\"527\",\"ISPB\":\"44478623\",\"Document\":\"44.478.623\\\/0001-40\",\"LongName\":\"ATICCA - SOCIEDADE DE CR\\u00c9DITO DIRETO S.A.\",\"ShortName\":\"ATICCA SCD S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":0,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2023-02-06\",\"DatePixStarted\":\"2025-06-04 10:00:00\",\"DateRegistered\":\"2023-03-03 14:56:55\",\"DateUpdated\":\"2025-05-08 12:09:18\",\"created_at\":null,\"updated_at\":null},{\"id\":100,\"COMPE\":\"188\",\"ISPB\":\"33775974\",\"Document\":\"33.775.974\\\/0001-04\",\"LongName\":\"ATIVA INVESTIMENTOS S.A. CORRETORA DE T\\u00cdTULOS, C\\u00c2MBIO E VALORES\",\"ShortName\":\"ATIVA S.A. INVESTIMENTOS CCTVM\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2017-07-28\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2021-05-05 09:11:12\",\"created_at\":null,\"updated_at\":null},{\"id\":299,\"COMPE\":\"508\",\"ISPB\":\"61384004\",\"Document\":\"61.384.004\\\/0001-05\",\"LongName\":\"AVENUE SECURITIES DISTRIBUIDORA DE T\\u00cdTULOS E VALORES MOBILI\\u00c1RIOS LTDA.\",\"ShortName\":\"AVENUE SECURITIES DTVM LTDA.\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2022-08-18\",\"DatePixStarted\":null,\"DateRegistered\":\"2022-08-13 12:30:35\",\"DateUpdated\":\"2022-08-13 12:30:35\",\"created_at\":null,\"updated_at\":null},{\"id\":351,\"COMPE\":\"562\",\"ISPB\":\"18684408\",\"Document\":\"18.684.408\\\/0001-95\",\"LongName\":\"AZIMUT BRASIL DISTRIBUIDORA DE T\\u00cdTULOS E VALORES MOBILI\\u00c1RIOS LTDA\",\"ShortName\":\"AZIMUT BRASIL DTVM LTDA\",\"Network\":null,\"Type\":\"IDRT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2024-01-08\",\"DatePixStarted\":\"2025-01-27 08:12:51\",\"DateRegistered\":\"2024-01-09 12:06:15\",\"DateUpdated\":\"2025-01-27 12:34:41\",\"created_at\":null,\"updated_at\":null},{\"id\":275,\"COMPE\":\"463\",\"ISPB\":\"40434681\",\"Document\":\"40.434.681\\\/0001-10\",\"LongName\":\"AZUMI DISTRIBUIDORA DE T\\u00edTULOS E VALORES MOBILI\\u00e1RIOS LTDA.\",\"ShortName\":\"AZUMI DTVM\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2021-12-21\",\"DatePixStarted\":null,\"DateRegistered\":\"2022-01-05 11:00:34\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":119,\"COMPE\":\"246\",\"ISPB\":\"28195667\",\"Document\":\"28.195.667\\\/0001-06\",\"LongName\":\"Banco ABC Brasil S.A.\",\"ShortName\":\"BCO ABC BRASIL S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Outros Cr\\u00e9ditos,Pessoal,Troca de Modalidade\",\"Url\":\"https:\\\/\\\/www.abcbrasil.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":32,\"COMPE\":\"075\",\"ISPB\":\"03532415\",\"Document\":\"03.532.415\\\/0001-02\",\"LongName\":\"BANCO ABN AMRO CLEARING S.A.\",\"ShortName\":\"BANCO ABN AMRO CLEARING S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":\"https:\\\/\\\/www.abnamro.com\",\"DateOperationStarted\":\"2005-11-11\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-06-24 12:07:23\",\"created_at\":null,\"updated_at\":null},{\"id\":150,\"COMPE\":\"299\",\"ISPB\":\"04814563\",\"Document\":\"04.814.563\\\/0001-74\",\"LongName\":\"BANCO AFINZ S.A. - BANCO M\\u00daLTIPLO\",\"ShortName\":\"BCO AFINZ S.A. - BM\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":0,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":0,\"SalaryPortability\":null,\"Products\":\"Consignado,Pessoal e Ve\\u00edculos\",\"Url\":null,\"DateOperationStarted\":\"2018-12-03\",\"DatePixStarted\":\"2023-05-15 10:00:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":67,\"COMPE\":\"121\",\"ISPB\":\"10664513\",\"Document\":\"10.664.513\\\/0001-50\",\"LongName\":\"Banco Agibank S.A.\",\"ShortName\":\"BCO AGIBANK S.A.\",\"Network\":\"Banco Comercial\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":1,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Destinat\\u00e1rio\",\"Products\":\"Cheque Especial,Consignado,Pessoal,Troca de Modalidade\",\"Url\":\"https:\\\/\\\/www.agibank.com.br\",\"DateOperationStarted\":\"2012-04-04\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":15,\"COMPE\":\"025\",\"ISPB\":\"03323840\",\"Document\":\"03.323.840\\\/0001-83\",\"LongName\":\"Banco Alfa S.A.\",\"ShortName\":\"BCO ALFA S.A.\",\"Network\":\"Banco Comercial\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":\"Consignado,Pessoal,Ve\\u00edculos\",\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":27,\"COMPE\":\"065\",\"ISPB\":\"48795256\",\"Document\":\"48.795.256\\\/0001-69\",\"LongName\":\"Banco AndBank (Brasil) S.A.\",\"ShortName\":\"BCO ANDBANK S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":0,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":\"Capita de Giro PJ,Cr\\u00e9dito Consignado,Cr\\u00e9dito Imobili\\u00e1rio,Cr\\u00e9dito Pessoal,Financiamento de Ve\\u00edculos,Troca de Modalidade\",\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2025-06-17 12:10:04\",\"created_at\":null,\"updated_at\":null},{\"id\":110,\"COMPE\":\"213\",\"ISPB\":\"54403563\",\"Document\":\"54.403.563\\\/0001-50\",\"LongName\":\"Banco Arbi S.A.\",\"ShortName\":\"BCO ARBI S.A.\",\"Network\":\"Banco Comercial\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Consignado\",\"Url\":\"https:\\\/\\\/www.bancoarbi.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":50,\"COMPE\":\"096\",\"ISPB\":\"00997185\",\"Document\":\"00.997.185\\\/0001-50\",\"LongName\":\"Banco B3 S.A.\",\"ShortName\":\"BCO B3 S.A.\",\"Network\":\"Banco Comercial\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":0,\"SalaryPortability\":null,\"Products\":null,\"Url\":\"https:\\\/\\\/www.bmfbovespa.com.br\\\/bancobmfbovespa\\\/\",\"DateOperationStarted\":\"2004-11-12\",\"DatePixStarted\":\"2023-09-11 11:00:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":14,\"COMPE\":\"024\",\"ISPB\":\"10866788\",\"Document\":\"10.866.788\\\/0001-77\",\"LongName\":\"Banco Bandepe S.A.\",\"ShortName\":\"BCO BANDEPE S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":\"https:\\\/\\\/www.santander.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2021-05-05 09:11:12\",\"created_at\":null,\"updated_at\":null},{\"id\":173,\"COMPE\":\"330\",\"ISPB\":\"00556603\",\"Document\":\"00.556.603\\\/0001-74\",\"LongName\":\"BANCO BARI DE INVESTIMENTOS E FINANCIAMENTOS S.A.\",\"ShortName\":\"BANCO BARI S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":0,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":\"Consignado,Imobili\\u00e1rio,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":null,\"DateOperationStarted\":\"2019-07-22\",\"DatePixStarted\":\"2021-02-25 09:00:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":176,\"COMPE\":\"334\",\"ISPB\":\"15124464\",\"Document\":\"15.124.464\\\/0001-87\",\"LongName\":\"BANCO BESA S.A.\",\"ShortName\":\"BANCO BESA S.A.\",\"Network\":null,\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2023-02-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2023-03-03 14:56:55\",\"DateUpdated\":\"2023-03-03 14:56:55\",\"created_at\":null,\"updated_at\":null},{\"id\":396,\"COMPE\":\"630\",\"ISPB\":\"58497702\",\"Document\":\"58.497.702\\\/0001-02\",\"LongName\":\"BANCO BLUEBANK S.A.\",\"ShortName\":\"BCO BLUEBANK S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2025-03-24 17:11:52\",\"created_at\":null,\"updated_at\":null},{\"id\":121,\"COMPE\":\"250\",\"ISPB\":\"50585090\",\"Document\":\"50.585.090\\\/0001-06\",\"LongName\":\"BANCO BMG CONSIGNADO S.A.\",\"ShortName\":\"BANCO BMG CONSIGNADO S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-07-30 12:30:20\",\"created_at\":null,\"updated_at\":null},{\"id\":162,\"COMPE\":\"318\",\"ISPB\":\"61186680\",\"Document\":\"61.186.680\\\/0001-74\",\"LongName\":\"Banco BMG S.A.\",\"ShortName\":\"BCO BMG S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Consignado,Imobili\\u00e1rio,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.bancobmg.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":115,\"COMPE\":\"233\",\"ISPB\":\"62421979\",\"Document\":\"62.421.979\\\/0001-29\",\"LongName\":\"BANCO BMG SOLU\\u00c7\\u00d5ES FINANCEIRAS S.A.\",\"ShortName\":\"BANCO BMG SOLU\\u00c7\\u00d5ES FINANCEIRAS S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2025-04-08 12:08:49\",\"created_at\":null,\"updated_at\":null},{\"id\":461,\"COMPE\":\"752\",\"ISPB\":\"01522368\",\"Document\":\"01.522.368\\\/0001-82\",\"LongName\":\"Banco BNP Paribas Brasil S.A.\",\"ShortName\":\"BCO BNP PARIBAS BRASIL S A\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":null,\"Products\":\"Capital de Giro,Consiginado,Outros Cr\\u00e9ditos,Pessoal,Troca de Modalidade,ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.bnpparibas.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2024-06-24 09:00:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":59,\"COMPE\":\"107\",\"ISPB\":\"15114366\",\"Document\":\"15.114.366\\\/0001-69\",\"LongName\":\"Banco Bocom BBM S.A.\",\"ShortName\":\"BCO BOCOM BBM S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":0,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null},{\"id\":25,\"COMPE\":\"063\",\"ISPB\":\"04184779\",\"Document\":\"04.184.779\\\/0001-01\",\"LongName\":\"Banco Bradescard S.A.\",\"ShortName\":\"BANCO BRADESCARD\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":\"Imobili\\u00e1rio,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":null,\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2025-02-25 12:08:29\",\"created_at\":null,\"updated_at\":null},{\"id\":18,\"COMPE\":\"036\",\"ISPB\":\"06271464\",\"Document\":\"06.271.464\\\/0001-19\",\"LongName\":\"Banco Bradesco BBI S.A.\",\"ShortName\":\"BCO BBI S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":\"https:\\\/\\\/www.bradescobbi.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2021-05-05 09:11:12\",\"created_at\":null,\"updated_at\":null},{\"id\":68,\"COMPE\":\"122\",\"ISPB\":\"33147315\",\"Document\":\"33.147.315\\\/0001-15\",\"LongName\":\"Banco Bradesco BERJ S.A.\",\"ShortName\":\"BCO BRADESCO BERJ S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":null,\"Url\":null,\"DateOperationStarted\":\"2011-11-08\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2022-06-23 13:48:15\",\"created_at\":null,\"updated_at\":null},{\"id\":219,\"COMPE\":\"394\",\"ISPB\":\"07207996\",\"Document\":\"07.207.996\\\/0001-50\",\"LongName\":\"Banco Bradesco Financiamentos S.A.\",\"ShortName\":\"BCO BRADESCO FINANC. S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":null,\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":\"Consignado,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.bradescofinanciamentos.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":null,\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2023-10-21 12:05:56\",\"created_at\":null,\"updated_at\":null},{\"id\":205,\"COMPE\":\"378\",\"ISPB\":\"01852137\",\"Document\":\"01.852.137\\\/0001-37\",\"LongName\":\"BANCO BRASILEIRO DE CR\\u00c9DITO SOCIEDADE AN\\u00d4NIMA\",\"ShortName\":\"BCO BRASILEIRO DE CR\\u00c9DITO S.A.\",\"Network\":null,\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":null,\"CreditDocument\":null,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":null,\"PCRP\":null,\"SalaryPortability\":null,\"Products\":\"Capita de Giro PJ,Cr\\u00e9dito Pessoal,Financiamento de Ve\\u00edculos,Outros,Troca de Modalidade\",\"Url\":null,\"DateOperationStarted\":\"2020-09-11\",\"DatePixStarted\":\"2024-03-18 06:00:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-08-31 12:29:47\",\"created_at\":null,\"updated_at\":null},{\"id\":112,\"COMPE\":\"218\",\"ISPB\":\"71027866\",\"Document\":\"71.027.866\\\/0001-34\",\"LongName\":\"Banco BS2 S.A.\",\"ShortName\":\"BCO BS2 S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":0,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":0,\"SalaryPortability\":\"Destinat\\u00e1rio\",\"Products\":\"Consignado\",\"Url\":\"https:\\\/\\\/www.bs2.com\\\/banco\\\/\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null}],\"first_page_url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=1\",\"from\":1,\"last_page\":10,\"last_page_url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=10\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=2\",\"label\":\"2\",\"page\":2,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=3\",\"label\":\"3\",\"page\":3,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=4\",\"label\":\"4\",\"page\":4,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=5\",\"label\":\"5\",\"page\":5,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=6\",\"label\":\"6\",\"page\":6,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=7\",\"label\":\"7\",\"page\":7,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=8\",\"label\":\"8\",\"page\":8,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=9\",\"label\":\"9\",\"page\":9,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=10\",\"label\":\"10\",\"page\":10,\"active\":false},{\"url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=2\",\"label\":\"Next &raquo;\",\"page\":2,\"active\":false}],\"next_page_url\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks?page=2\",\"path\":\"https:\\\/\\\/api.meupagamento.com.br\\\/api\\\/v1\\\/banks\",\"per_page\":50,\"prev_page_url\":null,\"to\":50,\"total\":476}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Estat\u00edsticas de uso dos bancos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/banks\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/banks\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"most_used_banks\":[{\"id\":57,\"COMPE\":\"104\",\"LongName\":\"Caixa Econ\\u00f4mica Federal\",\"ShortName\":\"CAIXA ECONOMICA FEDERAL\",\"PixType\":\"RSFN\",\"usage_count\":2,\"default_count\":2},{\"id\":125,\"COMPE\":\"260\",\"LongName\":\"NU PAGAMENTOS S.A. - INSTITUI\\u00c7\\u00c3O DE PAGAMENTO\",\"ShortName\":\"NU PAGAMENTOS - IP\",\"PixType\":\"RSFN\",\"usage_count\":2,\"default_count\":2},{\"id\":167,\"COMPE\":\"323\",\"LongName\":\"MERCADO PAGO INSTITUI\\u00c7\\u00c3O DE PAGAMENTO LTDA.\",\"ShortName\":\"MERCADO PAGO IP LTDA.\",\"PixType\":\"RSFN\",\"usage_count\":1,\"default_count\":1},{\"id\":138,\"COMPE\":\"280\",\"LongName\":\"WILL FINANCEIRA S.A. CR\\u00c9DITO, FINANCIAMENTO E INVESTIMENTO\",\"ShortName\":\"WILL FINANCEIRA S.A.CFI\",\"PixType\":\"RSFN\",\"usage_count\":1,\"default_count\":0},{\"id\":203,\"COMPE\":\"376\",\"LongName\":\"BANCO J.P. MORGAN S.A.\",\"ShortName\":\"BCO J.P. MORGAN S.A.\",\"PixType\":\"RSFN\",\"usage_count\":1,\"default_count\":1},{\"id\":17,\"COMPE\":\"033\",\"LongName\":\"BANCO SANTANDER (BRASIL) S.A.\",\"ShortName\":\"BCO SANTANDER (BRASIL) S.A.\",\"PixType\":\"RSFN\",\"usage_count\":1,\"default_count\":0},{\"id\":147,\"COMPE\":\"293\",\"LongName\":\"Lastro RDV Distribuidora de T\\u00edtulos e Valores Mobili\\u00e1rios Ltda.\",\"ShortName\":\"LASTRO RDV DTVM LTDA\",\"PixType\":\"Internet\",\"usage_count\":0,\"default_count\":0},{\"id\":35,\"COMPE\":\"078\",\"LongName\":\"Haitong Banco de Investimento do Brasil S.A.\",\"ShortName\":\"HAITONG BI DO BRASIL S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":403,\"COMPE\":\"644\",\"LongName\":\"321 SOCIEDADE DE CR\\u00c9DITO DIRETO S.A.\",\"ShortName\":\"321 SCD S.A.\",\"PixType\":\"Internet\",\"usage_count\":0,\"default_count\":0},{\"id\":291,\"COMPE\":\"487\",\"LongName\":\"DEUTSCHE BANK S.A. - BANCO ALEMAO\",\"ShortName\":\"DEUTSCHE BANK S.A.BCO ALEMAO\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":179,\"COMPE\":\"340\",\"LongName\":\"SUPERDIGITAL INSTITUI\\u00c7\\u00c3O DE PAGAMENTO S.A.\",\"ShortName\":\"SUPERDIGITAL I.P. S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":67,\"COMPE\":\"121\",\"LongName\":\"Banco Agibank S.A.\",\"ShortName\":\"BCO AGIBANK S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":435,\"COMPE\":\"687\",\"LongName\":\"INCO SOCIEDADE DE EMPR\\u00c9STIMO ENTRE PESSOAS S.A.\",\"ShortName\":\"INCO SEP S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":323,\"COMPE\":\"534\",\"LongName\":\"EWALLY INSTITUI\\u00c7\\u00c3O DE PAGAMENTO S.A.\",\"ShortName\":\"EWALLY IP S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":211,\"COMPE\":\"384\",\"LongName\":\"GLOBAL FINAN\\u00c7AS SOCIEDADE DE CR\\u00c9DITO AO MICROEMPREENDEDOR E \\u00c0 EMPRESA DE PEQUENO PORTE LTDA.\",\"ShortName\":\"GLOBAL SCM LTDA\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":99,\"COMPE\":\"184\",\"LongName\":\"Banco Ita\\u00fa BBA S.A.\",\"ShortName\":\"BCO ITA\\u00da BBA S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":467,\"COMPE\":\"759\",\"LongName\":\"BANSUR JM SOCIEDADE DE CR\\u00c9DITO DIRETO S\\\/A\",\"ShortName\":\"BANSUR JM SCD S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":355,\"COMPE\":\"567\",\"LongName\":\"MERCANTIL FINANCEIRA S.A. - CR\\u00c9DITO, FINANCIAMENTO E INVESTIMENTO\",\"ShortName\":\"MERCANTIL FINANCEIRA\",\"PixType\":\"Internet\",\"usage_count\":0,\"default_count\":0},{\"id\":243,\"COMPE\":\"422\",\"LongName\":\"Banco Safra S.A.\",\"ShortName\":\"BCO SAFRA S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0},{\"id\":131,\"COMPE\":\"271\",\"LongName\":\"BPY CORRETORA DE C\\u00c2MBIO, T\\u00cdTULOS E VALORES MOBILI\\u00c1RIOS S.A.\",\"ShortName\":\"BPY CCTVM S.A.\",\"PixType\":\"RSFN\",\"usage_count\":0,\"default_count\":0}],\"total_banks\":476,\"total_accounts\":8}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/banks\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/banks\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/banks\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the bank."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":1,\"COMPE\":\"001\",\"ISPB\":\"00000000\",\"Document\":\"00.000.000\\\/0001-91\",\"LongName\":\"Banco do Brasil S.A.\",\"ShortName\":\"BCO DO BRASIL S.A.\",\"Network\":\"Banco M\\u00faltiplo\",\"Type\":\"DRCT\",\"PixType\":\"RSFN\",\"Charge\":1,\"CreditDocument\":1,\"LegalCheque\":1,\"DetectaFlow\":0,\"PCR\":1,\"PCRP\":1,\"SalaryPortability\":\"Banco folha e Destinat\\u00e1rio\",\"Products\":\"Capital de Giro,Cheque Especial,Consignado,Imobili\\u00e1rio,Outros Cr\\u00e9ditos,Pessoal,Troca de Modalidade,Ve\\u00edculos\",\"Url\":\"https:\\\/\\\/www.bb.com.br\",\"DateOperationStarted\":\"2002-04-22\",\"DatePixStarted\":\"2020-11-03 06:30:00\",\"DateRegistered\":\"2021-05-05 09:11:12\",\"DateUpdated\":\"2024-05-15 16:49:45\",\"created_at\":null,\"updated_at\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Processar webhook do PagarMe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhooks\/pagarme",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhooks\/pagarme"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "120"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "119"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"success\",\"message\":\"Webhook recebido e ser\\u00e1 processado\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Processar webhook do Stripe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhooks\/stripe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhooks\/stripe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "120"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "118"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"success\",\"message\":\"Webhook recebido e ser\\u00e1 processado\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Processar webhook do Mercado Pago",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhooks\/mercadopago",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhooks\/mercadopago"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "120"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "117"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"success\",\"message\":\"Webhook recebido e ser\\u00e1 processado\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Processar webhook do BTG",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhooks\/btg",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhooks\/btg"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "120"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "116"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"success\",\"message\":\"Webhook recebido e ser\\u00e1 processado\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Processar webhook gen\u00e9rico",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhooks\/:gateway",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhooks\/:gateway",
                            "variable": [
                                {
                                    "id": "gateway",
                                    "key": "gateway",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "120"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "115"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 200,
                            "body": "{\"status\":\"success\",\"message\":\"Webhook recebido e ser\\u00e1 processado\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Register a new user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Jo\u00e3o Silva\",\"email\":\"joao@example.com\",\"password\":\"password123\",\"password_confirmation\":\"password123\",\"phone\":\"11999999999\",\"document\":\"12345678901\",\"user_type\":\"individual\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"message\": \"User registered successfully\",\n  \"user\": {\n    \"id\": 1,\n    \"name\": \"Jo\u00e3o Silva\",\n    \"email\": \"joao@example.com\",\n    \"phone\": \"11999999999\",\n    \"user_type\": \"individual\",\n    \"is_active\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"name\": [\"Nome \u00e9 obrigat\u00f3rio\"],\n    \"email\": [\"Email \u00e9 obrigat\u00f3rio\"],\n    \"password\": [\"Senha \u00e9 obrigat\u00f3ria\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"joao@example.com\",\"password\":\"password123\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Login successful\",\n  \"user\": {\n    \"id\": 1,\n    \"name\": \"Jo\u00e3o Silva\",\n    \"email\": \"joao@example.com\",\n    \"phone\": \"11999999999\",\n    \"user_type\": \"individual\",\n    \"is_active\": true\n  },\n  \"token\": \"1|abcdef123456...\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"message\": \"Credenciais inv\u00e1lidas\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Extrato",
            "description": "",
            "item": [
                {
                    "name": "Listar extrato do credor (com filtro opcional por cobran\u00e7a)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ledger",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ledger"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Financiamento",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/financings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/financings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/financings\/simulate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings\/simulate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings\/simulate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"interest_rate_monthly\":4326.41688}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/financings\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the financing."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/financings\/{id}\/generate-charge",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings\/:id\/generate-charge",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings\/:id\/generate-charge",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the financing."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/financings\/{id}\/anticipate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings\/:id\/anticipate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings\/:id\/anticipate",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the financing."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"count\":16,\"amount\":4326.41688}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/financings\/{id}\/anticipate\/apply",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/financings\/:id\/anticipate\/apply",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/financings\/:id\/anticipate\/apply",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the financing."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"amount\":4326.41688,\"mode\":\"architecto\",\"manual_payment_method\":\"architecto\",\"manual_payment_notes\":\"architecto\",\"manual_payment_date\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "My Charges",
            "description": "\nEndpoints para visualiza\u00e7\u00e3o de cobran\u00e7as do usu\u00e1rio autenticado.\nAs cobran\u00e7as s\u00e3o vinculadas dinamicamente por email (verificado ou social login) ou telefone (verificado).",
            "item": [
                {
                    "name": "Listar cobran\u00e7as do usu\u00e1rio",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/my-charges",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/my-charges"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Lista todas as cobran\u00e7as vinculadas ao usu\u00e1rio autenticado.\nAs cobran\u00e7as s\u00e3o vinculadas por:\n- Email verificado OU login social\n- Telefone verificado"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter estat\u00edsticas das cobran\u00e7as",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/my-charges\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/my-charges\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retorna estat\u00edsticas das cobran\u00e7as do usu\u00e1rio autenticado."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Visualizar cobran\u00e7a espec\u00edfica",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/my-charges\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/my-charges\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the my charge."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Exibe detalhes de uma cobran\u00e7a espec\u00edfica do usu\u00e1rio autenticado."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "PIX Manual",
            "description": "\nGerenciamento de pagamentos PIX Manual",
            "item": [
                {
                    "name": "Criar pagamento PIX Manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pix-manual\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pix-manual\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"charge_id\":1,\"installment_id\":1,\"pix_manual_amount\":100,\"pix_key\":\"12345678901\",\"pix_manual_notes\":\"Pagamento via PIX\",\"pix_manual_date\":\"2024-01-01\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"message\": \"Pagamento PIX Manual criado com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"charge_id\": 1,\n    \"installment_id\": 1,\n    \"amount\": 10000,\n    \"status\": \"pending\",\n    \"payment_method\": \"pix_manual\",\n    \"pix_key\": \"PIX-000001-20240101120000\",\n    \"pix_manual_confirmation_code\": \"ABC12345\",\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Confirmar pagamento PIX Manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pix-manual\/:id\/confirm",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pix-manual\/:id\/confirm",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID do pagamento."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"confirmation_code\":\"ABC12345\",\"confirmation_notes\":\"Pagamento confirmado\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamento PIX Manual confirmado com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"status\": \"approved\",\n    \"pix_manual_confirmed_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cancelar pagamento PIX Manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pix-manual\/:id\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pix-manual\/:id\/cancel",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID do pagamento."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"Pagamento n\u00e3o realizado\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamento PIX Manual cancelado com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"status\": \"cancelled\",\n    \"pix_manual_cancelled_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Listar pagamentos PIX Manual pendentes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pix-manual\/pending",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pix-manual\/pending"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamentos PIX Manual pendentes obtidos com sucesso\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"charge_id\": 1,\n      \"installment_id\": 1,\n      \"amount\": 10000,\n      \"status\": \"pending\",\n      \"pix_key\": \"PIX-000001-20240101120000\",\n      \"pix_manual_confirmation_code\": \"ABC12345\",\n      \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Estat\u00edsticas de PIX Manual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pix-manual\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pix-manual\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Estat\u00edsticas de PIX Manual obtidas com sucesso\",\n  \"data\": {\n    \"total_payments\": 10,\n    \"pending_payments\": 3,\n    \"approved_payments\": 6,\n    \"cancelled_payments\": 1,\n    \"total_amount\": 100000,\n    \"pending_amount\": 30000,\n    \"approved_amount\": 60000\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Pagamentos Manuais",
            "description": "",
            "item": [
                {
                    "name": "Cobran\u00e7as (Charges)\n\nPermite registrar pagamentos manuais para parcelas espec\u00edficas, informando seus IDs.\nPara distribuir automaticamente um valor entre parcelas (quitar + abater), utilize o endpoint\nde Aloca\u00e7\u00e3o Autom\u00e1tica.",
                    "description": "",
                    "item": [
                        {
                            "name": "Processar quita\u00e7\u00e3o manual de parcelas",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/charges\/:id\/manual-payment",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/manual-payment",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "ULID da cobran\u00e7a. Exemplo: 01K5T9B6R8XCBSZ0FXZGH9RKC7"
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"installment_ids\":[\"architecto\"],\"manual_payment_method\":\"architecto\",\"manual_payment_notes\":\"architecto\",\"manual_payment_date\":\"architecto\",\"manual_payment_amount\":4326.41688}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"message\": \"Pagamentos processados com sucesso\",\n  \"data\": {\n    \"payments\": [\n      {\"id\": 123, \"installment_id\": 456, \"amount\": 300.00, \"payment_method\": \"manual\", \"status\": \"approved\"}\n    ],\n    \"charge\": {\"id\": \"01K5T9B6R8XCBSZ0FXZGH9RKC7\"}\n  }\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"message\": \"Uma ou mais parcelas j\u00e1 foram quitadas\"\n}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Cobran\u00e7as (Charges)",
                    "description": "Endpoints para aplicar pagamentos manuais em cobran\u00e7as e parcelas.\n\nAplica automaticamente um valor pago para quitar o m\u00e1ximo de parcelas pendentes de uma cobran\u00e7a.\nSe houver um valor residual que n\u00e3o quite a pr\u00f3xima parcela, este valor ser\u00e1 abatido do\nvalor dessa pr\u00f3xima parcela (ela permanece pendente). A soma do total pago + total faltante \u00e9\nvalidada para ser igual ao total da cobran\u00e7a ao final da opera\u00e7\u00e3o.",
                    "item": [
                        {
                            "name": "Aloca\u00e7\u00e3o autom\u00e1tica de pagamento manual (quita + abate)",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/charges\/:id\/manual-payment\/automatic-allocation",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/charges\/:id\/manual-payment\/automatic-allocation",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "ULID da cobran\u00e7a. Exemplo: 01K5T9B6R8XCBSZ0FXZGH9RKC7"
                                        }
                                    ]
                                },
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\"amount\":4326.41688,\"manual_payment_method\":\"architecto\",\"manual_payment_notes\":\"architecto\",\"manual_payment_date\":\"architecto\"}"
                                },
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"message\": \"Aloca\u00e7\u00e3o autom\u00e1tica processada com sucesso\",\n  \"data\": {\n    \"payments\": [\n      {\n        \"id\": 123,\n        \"charge_id\": \"01K5T9B6R8XCBSZ0FXZGH9RKC7\",\n        \"installment_id\": 456,\n        \"amount\": 300.00,\n        \"payment_method\": \"manual\",\n        \"status\": \"approved\",\n        \"manual_payment_method\": \"pix_manual\",\n        \"confirmed_at\": \"2025-09-23T12:00:00Z\"\n      }\n    ],\n    \"charge\": {\n      \"id\": \"01K5T9B6R8XCBSZ0FXZGH9RKC7\",\n      \"installments\": [\n        {\"id\": 456, \"installment_number\": 1, \"amount\": 300.00, \"status\": \"paid\"},\n        {\"id\": 789, \"installment_number\": 2, \"amount\": 300.00, \"status\": \"paid\"},\n        {\"id\": 1011, \"installment_number\": 3, \"amount\": 350.00, \"status\": \"pending\"}\n      ]\n    }\n  }\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 422,
                                    "body": "{\n  \"message\": \"Erro ao processar aloca\u00e7\u00e3o autom\u00e1tica\",\n  \"error\": \"Valor informado excede o total pendente das parcelas\"\n}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "Cancelamento\n\nPermite cancelar um pagamento manual realizado anteriormente.\nSomente permitido se a cobran\u00e7a for manual e o pagamento for manual.\nO status do pagamento muda para 'cancelled' e a parcela volta para 'pending'.",
                    "description": "",
                    "item": [
                        {
                            "name": "Cancelar um pagamento manual",
                            "request": {
                                "url": {
                                    "host": "{{baseUrl}}",
                                    "path": "api\/v1\/manual-payments\/:id",
                                    "query": [],
                                    "raw": "{{baseUrl}}\/api\/v1\/manual-payments\/:id",
                                    "variable": [
                                        {
                                            "id": "id",
                                            "key": "id",
                                            "value": "architecto",
                                            "description": "ID do pagamento. Exemplo: 123"
                                        }
                                    ]
                                },
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application\/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application\/json"
                                    }
                                ],
                                "body": null,
                                "description": ""
                            },
                            "response": [
                                {
                                    "header": [],
                                    "code": 200,
                                    "body": "{\n  \"message\": \"Pagamento cancelado com sucesso\"\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 403,
                                    "body": "{\n  \"message\": \"Apenas pagamentos de cobran\u00e7as manuais podem ser cancelados\"\n}",
                                    "name": ""
                                },
                                {
                                    "header": [],
                                    "code": 404,
                                    "body": "{\n  \"message\": \"Pagamento n\u00e3o encontrado\"\n}",
                                    "name": ""
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "Payments",
            "description": "\nGerenciamento de pagamentos do sistema",
            "item": [
                {
                    "name": "Listar pagamentos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamentos obtidos com sucesso\",\n  \"data\": {\n    \"data\": [\n      {\n        \"id\": 1,\n        \"charge_id\": 1,\n        \"amount\": 10000,\n        \"status\": \"pending\",\n        \"payment_method\": \"pix\",\n        \"gateway_transaction_id\": \"tx_123456\",\n        \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n      }\n    ],\n    \"meta\": {\n      \"total\": 100,\n      \"per_page\": 15,\n      \"current_page\": 1,\n      \"total_pages\": 7\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Criar pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"charge_id\":1,\"amount\":10000,\"payment_method\":\"pix\",\"gateway\":\"pagarme\",\"metadata\":[]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"message\": \"Pagamento criado com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"charge_id\": 1,\n    \"amount\": 10000,\n    \"status\": \"pending\",\n    \"payment_method\": \"pix\",\n    \"gateway\": \"pagarme\",\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Estat\u00edsticas de pagamentos",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Estat\u00edsticas obtidas com sucesso\",\n  \"data\": {\n    \"total_payments\": 100,\n    \"total_amount\": 1000000,\n    \"pending_payments\": 10,\n    \"paid_payments\": 80,\n    \"failed_payments\": 10,\n    \"average_amount\": 10000\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Exibir pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID do pagamento."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamento obtido com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"charge_id\": 1,\n    \"amount\": 10000,\n    \"status\": \"pending\",\n    \"payment_method\": \"pix\",\n    \"gateway\": \"pagarme\",\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atualizar pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID do pagamento."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"paid\",\"gateway_transaction_id\":\"tx_123456\",\"metadata\":[]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamento atualizado com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"charge_id\": 1,\n    \"amount\": 10000,\n    \"status\": \"paid\",\n    \"payment_method\": \"pix\",\n    \"gateway\": \"pagarme\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Estornar pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id\/refund",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id\/refund",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID do pagamento."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reason\":\"Solicita\u00e7\u00e3o do cliente\",\"amount\":10000}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Pagamento estornado com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"charge_id\": 1,\n    \"amount\": 10000,\n    \"status\": \"refunded\",\n    \"payment_method\": \"pix\",\n    \"gateway\": \"pagarme\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Status do pagamento",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:id\/status",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "ID do pagamento."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Status obtido com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"status\": \"paid\",\n    \"gateway_status\": \"approved\",\n    \"last_updated\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/payments\/{payment_id}\/receipt",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payments\/:payment_id\/receipt",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payments\/:payment_id\/receipt",
                            "variable": [
                                {
                                    "id": "payment_id",
                                    "key": "payment_id",
                                    "value": "1",
                                    "description": "The ID of the payment."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Plans",
            "description": "\nGerenciamento de planos de usu\u00e1rios",
            "item": [
                {
                    "name": "Meu plano atual",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/plans\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/plans\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Listar planos ativos para usu\u00e1rio autenticado",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/plans\/authenticated",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/plans\/authenticated"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atribuir plano ao usu\u00e1rio autenticado",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/plans\/:code\/assign",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/plans\/:code\/assign",
                            "variable": [
                                {
                                    "id": "code",
                                    "key": "code",
                                    "value": "architecto",
                                    "description": "C\u00f3digo do plano"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Idempotency-Key",
                                "value": "string Opcional. Chave de idempot\u00eancia para evitar duplicidades"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"starts_at\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\"message\":\"Plano contratado com sucesso\",\"data\":{\"charge\":{\"id\":\"01HXYZ...\",\"creditor_id\":1,\"recipient_id\":10,\"description\":\"Contrata\u00e7\u00e3o do plano annual\",\"total_amount\":\"199.90\",\"status\":\"pending\"},\"share_link\":\"https:\/\/app.meupagamento.io\/public\/charge\/01HXYZ...\",\"pix\":{\"qr\":\"00020126...\",\"txid\":\"XYZ123\",\"emv\":\"00020126...\",\"location_url\":\"https:\/\/btg.example\/loc\/123\",\"expires_at\":null}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Listar planos ativos (P\u00fablico)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/plans",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/plans"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"message\":\"Planos obtidos com sucesso\",\"data\":[{\"code\":\"annual\",\"name\":\"Plano Anual\",\"description\":\"Benef\u00edcios do plano anual\",\"price\":\"199.90\",\"billing_cycle\":\"yearly\",\"limits\":{\"max_charges_per_month\":100},\"is_active\":true,\"is_current\":false}]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Recipients",
            "description": "",
            "item": [
                {
                    "name": "Search recipients",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/recipients\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/recipients\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": [\n    {\n      \"id\": 10,\n      \"name\": \"Maria Oliveira\",\n      \"email\": \"maria@example.com\",\n      \"document\": \"12345678901\",\n      \"document_type\": \"cpf\",\n      \"is_active\": true\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "RelayO Webhooks",
            "description": "Recebimento de eventos do RelayO (WhatsApp)",
            "item": [
                {
                    "name": "Recebe eventos do WhatsApp",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/webhooks\/relayo\/whatsapp\/receive",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/webhooks\/relayo\/whatsapp\/receive"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"http_params\":[]}"
                        },
                        "description": "Endpoint p\u00fablico para receber callbacks do RelayO contendo mensagens e eventos de inst\u00e2ncia."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\": true}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "RelayO WhatsApp Management",
            "description": "Lista todas as inst\u00e2ncias WhatsApp dispon\u00edveis no RelayO e sincroniza com o banco local.",
            "item": [
                {
                    "name": "Lista todas as inst\u00e2ncias WhatsApp",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/instances",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/instances"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"Inst\u00e2ncia Principal\",\n      \"instance_id\": \"relayo_instance_123\",\n      \"status\": \"connected\",\n      \"is_connected\": true,\n      \"last_connected_at\": \"01\/10\/2025 22:30:00\",\n      \"created_at\": \"01\/10\/2025 22:00:00\"\n    }\n  ],\n  \"message\": \"Inst\u00e2ncias listadas com sucesso\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 500,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Erro ao listar inst\u00e2ncias\",\n  \"error\": \"Mensagem de erro\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obt\u00e9m detalhes de uma inst\u00e2ncia espec\u00edfica",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/instances\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/instances\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "ID da inst\u00e2ncia"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"Inst\u00e2ncia Principal\",\n    \"instance_id\": \"relayo_instance_123\",\n    \"status\": \"connected\",\n    \"is_connected\": true,\n    \"last_connected_at\": \"01\/10\/2025 22:30:00\",\n    \"created_at\": \"01\/10\/2025 22:00:00\"\n  },\n  \"message\": \"Inst\u00e2ncia obtida com sucesso\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Inst\u00e2ncia n\u00e3o encontrada\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obt\u00e9m o QR Code de uma inst\u00e2ncia",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/instances\/:id\/qrcode",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/instances\/:id\/qrcode",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "ID da inst\u00e2ncia"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"qrcode\": \"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAA...\",\n    \"status\": \"disconnected\"\n  },\n  \"message\": \"QR Code obtido com sucesso\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Ativa\/desativa uma inst\u00e2ncia",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/instances\/:id\/toggle",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/instances\/:id\/toggle",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "ID da inst\u00e2ncia"
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"id\": 1,\n    \"is_active\": false\n  },\n  \"message\": \"Inst\u00e2ncia desativada\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Sincroniza as inst\u00e2ncias com o RelayO",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/instances\/sync",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/instances\/sync"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"instances_count\": 3\n  },\n  \"message\": \"Inst\u00e2ncias sincronizadas com sucesso\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verifica o status do servi\u00e7o RelayO",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"service_available\": true,\n    \"total_instances\": 3,\n    \"connected_instances\": 2,\n    \"status\": \"online\"\n  },\n  \"message\": \"Status do servi\u00e7o obtido com sucesso\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Testa o envio de uma mensagem",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/relayo\/test-message",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/relayo\/test-message"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"instance_id\":\"architecto\",\"phone_number\":\"architecto\",\"message\":\"architecto\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"success\": true,\n    \"message_id\": \"msg_123456\",\n    \"message\": \"Mensagem enviada com sucesso\"\n  },\n  \"message\": \"Mensagem enviada com sucesso\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Dados inv\u00e1lidos\",\n  \"errors\": {\n    \"phone_number\": [\"O campo phone_number \u00e9 obrigat\u00f3rio.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Subscription Adjustments",
            "description": "Lan\u00e7amentos vari\u00e1veis por per\u00edodo de uma assinatura.",
            "item": [
                {
                    "name": "Listar ajustes da assinatura (opcional filtro por per\u00edodo)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/adjustments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/adjustments",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Criar ajuste no per\u00edodo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/adjustments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/adjustments",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atualizar ajuste",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/adjustments\/:adjustmentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/adjustments\/:adjustmentId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                },
                                {
                                    "id": "adjustmentId",
                                    "key": "adjustmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Remover ajuste",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/adjustments\/:adjustmentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/adjustments\/:adjustmentId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                },
                                {
                                    "id": "adjustmentId",
                                    "key": "adjustmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Subscriptions",
            "description": "Endpoints para gerenciamento de assinaturas recorrentes.",
            "item": [
                {
                    "name": "Listar assinaturas",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Criar assinatura",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Estat\u00edsticas das assinaturas do usu\u00e1rio autenticado",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/statistics"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Detalhar assinatura",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atualizar assinatura",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Pr\u00e9via de cobran\u00e7a do per\u00edodo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/preview",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/preview",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Gerar cobran\u00e7a do per\u00edodo (idempotente)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/generate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/generate",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Recalcular cobran\u00e7a existente do per\u00edodo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/subscriptions\/:id\/recalculate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/subscriptions\/:id\/recalculate",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the subscription."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "System",
            "description": "\nInforma\u00e7\u00f5es do sistema",
            "item": [
                {
                    "name": "Obter vers\u00e3o do sistema",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/version",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/version"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retorna a vers\u00e3o atual do sistema baseada no Git"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"version\": \"v1.2.3\",\n  \"commit\": \"abc123def456\",\n  \"branch\": \"main\",\n  \"timestamp\": \"2024-01-01T12:00:00Z\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter informa\u00e7\u00f5es detalhadas da vers\u00e3o",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/version\/detailed",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/version\/detailed"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retorna informa\u00e7\u00f5es mais detalhadas sobre a vers\u00e3o atual"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"version\": \"v1.2.3\",\n  \"commit\": \"abc123def456\",\n  \"commit_short\": \"abc123d\",\n  \"branch\": \"main\",\n  \"timestamp\": \"2024-01-01T12:00:00Z\",\n  \"author\": \"Developer Name\",\n  \"message\": \"Commit message\",\n  \"date\": \"2024-01-01T10:00:00Z\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users",
            "description": "\nGerenciamento de usu\u00e1rios do sistema",
            "item": [
                {
                    "name": "Listar usu\u00e1rios",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Usu\u00e1rios obtidos com sucesso\",\n  \"data\": {\n    \"data\": [\n      {\n        \"id\": 1,\n        \"name\": \"Jo\u00e3o Silva\",\n        \"email\": \"joao@example.com\",\n        \"status\": \"active\",\n        \"created_at\": \"2024-01-01T00:00:00.000000Z\"\n      }\n    ],\n    \"meta\": {\n      \"total\": 100,\n      \"per_page\": 15,\n      \"current_page\": 1,\n      \"total_pages\": 7\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter perfil do usu\u00e1rio autenticado",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/profile"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atualizar perfil do usu\u00e1rio autenticado",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/profile"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verificar se a chave PIX est\u00e1 ativada",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/pix-status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/pix-status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Status da chave PIX obtido com sucesso\",\n  \"data\": {\n    \"pix_activated\": true,\n    \"chave_pix\": \"11999999999\",\n    \"pix_key_type\": \"phone\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Buscar usu\u00e1rio por CPF ou email",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/find",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/find"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verificar usu\u00e1rio por token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/verify"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter usu\u00e1rio espec\u00edfico",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Atualizar usu\u00e1rio",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Excluir usu\u00e1rio (soft delete)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"confirmation\":\"DELETE\",\"reason\":\"Usu\u00e1rio solicitou exclus\u00e3o de dados\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"message\": \"Usu\u00e1rio exclu\u00eddo com sucesso\",\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"Jo\u00e3o Silva\",\n    \"email\": \"joao@example.com\",\n    \"deleted_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"message\": \"Confirma\u00e7\u00e3o inv\u00e1lida\",\n  \"error\": \"INVALID_CONFIRMATION\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"message\": \"Usu\u00e1rio n\u00e3o encontrado\",\n  \"error\": \"USER_NOT_FOUND\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter estat\u00edsticas do usu\u00e1rio",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id\/statistics",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id\/statistics",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter cobran\u00e7as do devedor",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id\/debtor-charges",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id\/debtor-charges",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Obter pagamentos do devedor",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/users\/:id\/debtor-payments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/users\/:id\/debtor-payments",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "null"
                                },
                                {
                                    "key": "access-control-allow-credentials",
                                    "value": "false"
                                },
                                {
                                    "key": "access-control-allow-methods",
                                    "value": "GET, POST, PUT, DELETE, OPTIONS, PATCH"
                                },
                                {
                                    "key": "access-control-allow-headers",
                                    "value": "Content-Type, Authorization, X-Requested-With, Accept, Origin, X-CSRF-TOKEN"
                                },
                                {
                                    "key": "access-control-max-age",
                                    "value": "86400"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Verifica\u00e7\u00e3o de E-mail",
            "description": "Endpoints para verifica\u00e7\u00e3o de e-mail via c\u00f3digo",
            "item": [
                {
                    "name": "Enviar c\u00f3digo de verifica\u00e7\u00e3o",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email-verification\/send-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email-verification\/send-code"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"gbailey@example.net\"}"
                        },
                        "description": "Envia um c\u00f3digo de verifica\u00e7\u00e3o de 6 d\u00edgitos para o e-mail do usu\u00e1rio.\nApenas usu\u00e1rios que n\u00e3o fizeram login via redes sociais podem solicitar."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"C\u00f3digo de verifica\u00e7\u00e3o enviado com sucesso\",\n  \"expires_at\": \"2024-01-01T12:15:00.000000Z\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Usu\u00e1rio social n\u00e3o pode solicitar verifica\u00e7\u00e3o de e-mail\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Dados inv\u00e1lidos\",\n  \"errors\": {\n    \"email\": [\"O campo e-mail \u00e9 obrigat\u00f3rio\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verificar c\u00f3digo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email-verification\/verify-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email-verification\/verify-code"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"architecto\"}"
                        },
                        "description": "Verifica o c\u00f3digo de verifica\u00e7\u00e3o enviado para o e-mail."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"E-mail verificado com sucesso\",\n  \"email\": \"usuario@exemplo.com\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"C\u00f3digo inv\u00e1lido ou expirado\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Status da verifica\u00e7\u00e3o",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email-verification\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email-verification\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retorna o status atual da verifica\u00e7\u00e3o do e-mail do usu\u00e1rio."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"is_verified\": true,\n    \"email\": \"usuario@exemplo.com\",\n    \"verified_at\": \"2024-01-01T12:00:00.000000Z\",\n    \"can_request_verification\": true,\n    \"is_social_user\": false\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Verifica\u00e7\u00e3o de Telefone",
            "description": "Endpoints para verifica\u00e7\u00e3o de telefone via SMS\/WhatsApp",
            "item": [
                {
                    "name": "Enviar c\u00f3digo de verifica\u00e7\u00e3o",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/phone-verification\/send-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/phone-verification\/send-code"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"phone\":\"architecto\"}"
                        },
                        "description": "Envia um c\u00f3digo de verifica\u00e7\u00e3o de 6 d\u00edgitos para o telefone do usu\u00e1rio via WhatsApp."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"C\u00f3digo de verifica\u00e7\u00e3o enviado com sucesso\",\n  \"expires_at\": \"2024-01-01T12:10:00.000000Z\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Dados inv\u00e1lidos\",\n  \"errors\": {\n    \"phone\": [\"O campo telefone \u00e9 obrigat\u00f3rio\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verificar c\u00f3digo",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/phone-verification\/verify-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/phone-verification\/verify-code"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"architecto\"}"
                        },
                        "description": "Verifica o c\u00f3digo de verifica\u00e7\u00e3o enviado para o telefone."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Telefone verificado com sucesso\",\n  \"phone\": \"11999999999\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"C\u00f3digo inv\u00e1lido ou expirado\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Status da verifica\u00e7\u00e3o",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/phone-verification\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/phone-verification\/status"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retorna o status atual da verifica\u00e7\u00e3o do telefone do usu\u00e1rio."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"data\": {\n    \"is_verified\": true,\n    \"phone\": \"11999999999\",\n    \"verified_at\": \"2024-01-01T12:00:00.000000Z\"\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}