Created
October 2, 2015 18:29
-
-
Save dbrent-amazon/4d631f093d36df57cd8f to your computer and use it in GitHub Desktop.
GetOrderReferenceDetails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pay_with_amazon.client import PayWithAmazonClient | |
client = PayWithAmazonClient( | |
mws_access_key='YOUR_ACCESS_KEY', | |
mws_secret_key='YOUR_SECRET_KEY', | |
merchant_id='YOUR_MERCHANT_ID', | |
region='na', | |
currency_code='USD') | |
response = client.get_order_reference_details( | |
amazon_order_reference_id='AMAZON_ORDER_REFERENCE_ID', | |
address_consent_token='ADDRESS_CONSENT_TOKEN') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment