Vórtx VxRecebíveis
Módulo VxRecebíveis da Vórtx (dashboard FIDC, relatórios síncronos, envio de arquivos).
Authentication
This connector uses Token-based authentication.
info
Set up your connection in the Abstra Console before using it in your workflows.
How to use
Using the Smart Chat
Execute the action "CHOOSE_ONE_ACTION_BELOW" from my connector "YOUR_CONNECTOR_NAME" using the params "PARAMS_HERE".
Using the Web Editor
from abstra.connectors import run_connection_action
result = run_connection_action(
connection_name="your_connection_name",
action_name="your_action_name",
params={
"param1": "value1",
"param2": "value2"
})
Available Actions
This connector provides 7 actions:
| Action | Purpose | Parameters |
|---|---|---|
| get_vxrecebiveis_dashboard | Retorna dados do FIDC quantidade de cedentes/sacados, PDD, valores, rankings. | fundoCnpj (string) required date (string) required |
| get_vxrecebiveis_relatorios_download | Download em base64 de relatórios estoque, aquisicao, liquidacao, recompra. Limitado a 1 relatório por minuto. | cnpjFundo (string) required dataInicial (string) required dataFinal (string) required tipoRelatorio (string) required extensao (string) required |
| post_vxrecebiveis_integration_send_file | Envia arquivos XML/ZIP em base64 CADASTRO, ATUALIZACAO, DOCUMENTO ou REMESSA. O handshake é injetado automaticamente no body pelo conector. | data: { . tipo (string) . arquivo (string) . hash (string) . cpf_cnpj (string) . cnpj_fundo (string) . tipo_documento (string) . pesquisa_receita (boolean) . substituicao_dados (boolean) } (object) required |
| post_vxrecebiveis_integration_send_large_file | Envia arquivos zipados 100MB. O handshake é injetado automaticamente no body. | data: { . tipo (string) . arquivo (string) . hash (string) . cpf_cnpj (string) . cnpj_fundo (string) . tipo_documento (string) . pesquisa_receita (boolean) . substituicao_dados (boolean) } (object) required |
| get_vxrecebiveis_relatorios_estoque_by_cnpj_fundo | Retorna o estoque de títulos do fundo. Máximo 100.000 itens por consulta — pagine com Skip/Take. | cnpjFundo (string) DataReferencia (string) NumeroTitulo (string) CedenteCnpjCpf (string) SacadoCnpjCpf (string) DataEmissaoInicio (string) DataEmissaoFim (string) DataAquisicaoInicio (string) DataAquisicaoFim (string) DataVencimentoInicio (string) DataVencimentoFim (string) Take (integer) Skip (integer) |
| get_vxrecebiveis_relatorios_by_tipo_relatorio | Retorna o relatório de remessa do tipo especificado no path. | tipoRelatorio (string) cnpjFundo (string) required dataInicial (string) required dataFinal (string) required |
| custom | Call any endpoint of the connected service while reusing the connection auth. Pass the full URL as _url. Other reserved keys: _method, _query, _body, _headers. Remaining params flow naturally — empty → GET, non-empty → POST JSON body. | _url (string) required _method (string) _query (object) _body (undefined) _headers (object) |