def confirm(recipient_id, bulk_anticipation_id):
    return \
        handler_request.post(bulk_anticipation_routes.CONFIRM_ANTICIPATION.format(recipient_id, bulk_anticipation_id))
def create(dictionary):
    return handler_request.post(transaction_routes.BASE_URL, dictionary)
def create(recipient_id, dictionary):
    return handler_request.post(bulk_anticipation_routes.BASE_URL.format(recipient_id), dictionary)
def cancel(recipient_id, bulk_anticipation_id):
    return \
        handler_request.post(bulk_anticipation_routes.CANCEL_ANTICIPATION.format(recipient_id, bulk_anticipation_id))
def cancel(payment_link_id):
    return handler_request.post(
        payment_link_routes.CANCEL_PAYMENT_LINK.format(payment_link_id))
예제 #6
0
def create(dictionary):
    return handler_request.post(recipient_routes.BASE_URL, dictionary)
예제 #7
0
def cancel(transfer_id):
    return handler_request.post(
        transfer_routes.CANCEL_TRANSFER.format(transfer_id))
def capture(transaction_id, dictionary):
    return handler_request.post(
        transaction_routes.CAPTURE_TRANSACTION_AFTER.format(transaction_id),
        dictionary)
def cancel(subscription_id):
    return handler_request.post(
        subscription_routes.CANCEL_SUBSCRIPTION.format(subscription_id))
def create(dictionary):
    return handler_request.post(subscription_routes.BASE_URL, dictionary)
def settle_charges(subscription_id, dictionary={}):
    return handler_request.post(
        subscription_routes.SETTLE_CHARGES_SUBSCRIPTION.format(
            subscription_id), dictionary)
def postback_redeliver(subscription_id, postback_id):
    return \
        handler_request.post(subscription_routes.REDELIVER_SUBSCRIPTION_POSTBACK_BY_ID.format(subscription_id, postback_id))
def create(dictionary):
    return handler_request.post(payment_link_routes.BASE_URL, dictionary)
def postback_redeliver(transaction_id, postback_id):
    return handler_request.post(
        transaction_routes.POSTBACK_REDELIVER.format(transaction_id,
                                                     postback_id))
def create(dictionary):
    return handler_request.post(bank_account_routes.BASE_URL, dictionary)
def refund(transaction_id, dictionary):
    return handler_request.post(
        transaction_routes.REFUND_TRANSACTION.format(transaction_id),
        dictionary)
예제 #17
0
def create(params):
    return handler_request.post(plan_routes.BASE_URL, params)
def review(transaction_id, dictionary):
    return handler_request.post(
        transaction_routes.ANTIFRAUD_ANALYSIS.format(transaction_id),
        dictionary)
예제 #19
0
def create(dictionary):
    return handler_request.post(customer_routes.BASE_URL, dictionary)