def delete_customer_shipping_address(customerProfileId, customerProfileShippingId):

	# Give merchant details
	merchantAuth = apicontractsv1.merchantAuthenticationType()
	merchantAuth.name = constants.apiLoginId
	merchantAuth.transactionKey = constants.transactionKey

	# create delete request
	deleteShippingAddress = apicontractsv1.deleteCustomerShippingAddressRequest()
	deleteShippingAddress.merchantAuthentication = merchantAuth
	deleteShippingAddress.customerProfileId = customerProfileId
	deleteShippingAddress.customerAddressId = customerProfileShippingId

	# Make the API call
	deleteShippingAddressController = deleteCustomerShippingAddressController(deleteShippingAddress)
	deleteShippingAddressController.execute()
	response = deleteShippingAddressController.getresponse()

	if response.messages.resultCode == "Ok":
	    print("SUCCESS")
	    print("Message code : %s " % response.messages.message[0]['code'].text)
	    print("Message text : %s " % response.messages.message[0]['text'].text)
	else:
	    print("ERROR")
	    print("Message code : %s " % response.messages.message[0]['code'].text)
	    print("Message text : %s " % response.messages.message[0]['text'].text)

	return response
Пример #2
0
def delete_customer_shipping_address(customerProfileId,
                                     customerProfileShippingId):

    # Give merchant details
    merchantAuth = apicontractsv1.merchantAuthenticationType()
    merchantAuth.name = constants.apiLoginId
    merchantAuth.transactionKey = constants.transactionKey

    # create delete request
    deleteShippingAddress = apicontractsv1.deleteCustomerShippingAddressRequest(
    )
    deleteShippingAddress.merchantAuthentication = merchantAuth
    deleteShippingAddress.customerProfileId = customerProfileId
    deleteShippingAddress.customerAddressId = customerProfileShippingId

    # Make the API call
    deleteShippingAddressController = deleteCustomerShippingAddressController(
        deleteShippingAddress)
    deleteShippingAddressController.execute()
    response = deleteShippingAddressController.getresponse()

    if response.messages.resultCode == "Ok":
        print "SUCCESS"
        print "Message code : %s " % response.messages.message[0].code
        print "Message text : %s " % response.messages.message[0].text
    else:
        print "ERROR"
        print "Message code : %s " % response.messages.message[0].code
        print "Message text : %s " % response.messages.message[0].text

    return response
Пример #3
0
from authorizenet import apicontractsv1
from authorizenet.apicontrollers import *

# Give merchant details
merchantAuth = apicontractsv1.merchantAuthenticationType()
merchantAuth.name = '5KP3u95bQpv'
merchantAuth.transactionKey = '4Ktq966gC55GAX7S'

# create delete request
deleteShippingAddress = apicontractsv1.deleteCustomerShippingAddressRequest()
deleteShippingAddress.merchantAuthentication = merchantAuth
deleteShippingAddress.customerProfileId = "36152165"
deleteShippingAddress.customerAddressId = "36413544"

# Make the API call
deleteShippingAddressController = deleteCustomerShippingAddressController(
    deleteShippingAddress)
deleteShippingAddressController.execute()
response = deleteShippingAddressController.getresponse()

if response.messages.resultCode == "Ok":
    print "SUCCESS"
    print "Message code : %s " % response.messages.message[0].code
    print "Message text : %s " % response.messages.message[0].text
else:
    print "ERROR"
    print "Message code : %s " % response.messages.message[0].code
    print "Message text : %s " % response.messages.message[0].text
from authorizenet import apicontractsv1
from authorizenet.apicontrollers import *

# Give merchant details
merchantAuth = apicontractsv1.merchantAuthenticationType()
merchantAuth.name = '5KP3u95bQpv'
merchantAuth.transactionKey = '4Ktq966gC55GAX7S'

# create delete request
deleteShippingAddress = apicontractsv1.deleteCustomerShippingAddressRequest()
deleteShippingAddress.merchantAuthentication = merchantAuth
deleteShippingAddress.customerProfileId = "36152165"
deleteShippingAddress.customerAddressId = "36413544"

# Make the API call
deleteShippingAddressController = deleteCustomerShippingAddressController(deleteShippingAddress)
deleteShippingAddressController.execute()
response = deleteShippingAddressController.getresponse()

if response.messages.resultCode == "Ok":
    print "SUCCESS"
    print "Message code : %s " % response.messages.message[0].code
    print "Message text : %s " % response.messages.message[0].text
else:
    print "ERROR"
    print "Message code : %s " % response.messages.message[0].code
    print "Message text : %s " % response.messages.message[0].text