gerencianet/gn-api-sdk-python

View on GitHub
examples/default/carnet/resend_parcel.py

Summary

Maintainability
A
2 hrs
Test Coverage
# encoding: utf-8

from gerencianet import Gerencianet
from ...credentials import credentials

gn = Gerencianet(credentials.CREDENTIALS)

params = {
    'id': 1,
    'parcel': 1
}

body = {
    'email': 'oldbuck@gerencianet.com.br'
}

response =  gn.resend_parcel(params=params, body=body)
print(response)