gerencianet/gn-api-sdk-python

View on GitHub
examples/open-finance/of_update_settings.py

Summary

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

from gerencianet import Gerencianet
from ..credentials import credentials

gn = Gerencianet(credentials.CREDENTIALS)

body = {
  "redirectURL": "https://gerencianet.com.br",
  "webhookURL": "https://gerencianetwh.tk/webhook"
}

response = gn.of_update_settings(body=body)
print(response)