Itaú Pagamentos (SISPAG)
Inclusão de transferências Pix e consultas de pagamentos via plataforma SISPAG do Itaú.
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 4 actions:
| Action | Purpose | Parameters |
|---|---|---|
| pagamento/post_transferencias | API responsável por inserir transferências de Pix e pagamentos de Pix QR Code na plataforma SISPAG do Banco Itaú. | x-itau-flowID (string) x-itau-correlationID (string) data: { . pix_link (string) . emv (string) . url (string) . chave (string) . ispb (string) . tipo_identificacao_conta (string) . agencia_recebedor (string) . conta_recebedor (string) . tipo_de_identificacao_do_recebedor (string) . identificacao_recebedor (string) . status_pagamento (string) . cod_pagamento (string) . numero_lote (string) . numero_lancamento (string) . tipo_pagamento (string) . data_pagamento (string) . valor_pagamento (number) . referencia_empresa (string) . identificacao_comprovante (string) . informacoes_entre_usuarios (string) . pagador . recebedor . motivo_recusa (array) } (object) required |
| pagamento/get_pagamentos_sispag | Detalhe da consulta de pagamentos e transferências | agencia_operacao (string) required conta_operacao (string) required cnpj_empresa (string) required numero_lote (string) valor_minimo (number) valor_maximo (number) referencia_empresa (string) nome_beneficiario (string) data_inicial (string) data_final (string) tipo_lista (string) required modalidade_fornecedores (boolean) modalidade_impostos (boolean) modalidade_salario (boolean) status (string) tipo_pagamento (string) order_by (string) order (string) page (number) page_size (number) x-itau-flowID (string) x-itau-correlationID (string) |
| pagamento/get_pagamentos_sispag_by_id_pagamento_sispag | Operação responsável por recuperar o detalhamento do pagamento | id_pagamento_sispag (string) |
| 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) |