Só seguir a lógica
js
async function verificarPagamento(pagamentoId) {
try {
const response = await gerencianet.pixDetail(pagamentoId);
const pagamento = response.data;
console.log(pagamento);
// Faça algo com o pagamento aqui
} catch (error) {
console.error('Erro ao verificar pagamento:', error);
}
}