Ejemplo n.º 1
0
def public_key(resource_token):
    return get(f'{BASE_MODEL_URL}/public-key', resource_token=resource_token)
Ejemplo n.º 2
0
def list_business_areas():
    url = '/data/business-areas'
    return get(url)
Ejemplo n.º 3
0
def list_banks():
    url = '/data/banks'
    return get(url)
Ejemplo n.º 4
0
def detail(resource_token):
    return get(BASE_MODEL_URL, resource_token=resource_token)
Ejemplo n.º 5
0
def list_company_types():
    url = '/data/company-types'
    return get(url)
Ejemplo n.º 6
0
Archivo: charge.py Proyecto: mjr/junopy
def details(charge_id):
    url = f'{BASE_MODEL_URL}/{charge_id}'
    return get(url)
Ejemplo n.º 7
0
Archivo: charge.py Proyecto: mjr/junopy
def list(params={}):
    url = f'{BASE_MODEL_URL}'
    return get(url, params=params)
Ejemplo n.º 8
0
def list_event_types():
    url = f'{BASE_MODEL_URL}/event-types'
    return get(url)
Ejemplo n.º 9
0
def detail(webhook_id):
    return get(end_point=f'{WEBHOOK_BASE_MODEL_URL}/{webhook_id}')
Ejemplo n.º 10
0
def list(params={}):
    return get(end_point=WEBHOOK_BASE_MODEL_URL, data=params)
Ejemplo n.º 11
0
def list(resource_token):
    url = f'{BASE_MODEL_URL}'
    return get(url, resource_token=resource_token)
Ejemplo n.º 12
0
def detail(document_id):
    return get(f'{BASE_MODEL_URL}/{document_id}')