gerencianet/gn-api-sdk-python

View on GitHub
examples/pix/webhook/pix_list_webhook.py

Summary

Maintainability
A
1 hr
Test Coverage
# encoding: utf-8

from gerencianet import Gerencianet
from ...credentials import credentials

gn = Gerencianet(credentials.CREDENTIALS)

params = {
    'inicio': '2020-10-22T16:01:35Z',
    'fim': '2020-10-23T16:01:35Z'
}

response =  gn.pix_list_webhook(params=params)
print(response)