from efipay import EfiPay
from credenciais import CREDENTIALS
gn = EfiPay(CREDENTIALS)
headers = {'x-skip-mtls-checking': 'false'}
params = {'chave': ''}
body = {'webhookUrl': '
http://xxx.xxx.xxx.xxx:5000/webhook/pix'}
response = gn.pix_config_webhook(params=params, body=body, headers=headers)
print(response)
alguem pode me dizer se com este exemplo consigo verificar se meu server webhook está funcionando?