Closed lighth7015 closed 6 years ago
You need to login to your Merchant Interface for enabling the permission for it .
Here's what you can do to enable the API:
1) Log in to your Authorize.net Merchant Interface
2) Navigate to Settings under Account in the main menu on the left.
3) Click on Transaction Details API in the Security Settings section.
4) If you've not already enabled the Transaction Details API, enter the answer to your Secret Question and click Enable Transaction Details API.
Do you happen to know what the transactionId
in the python samples would be? I've looked all over, and am unable to understand what its purpose is.
If you are calling the GetTransactionDetails API, transactionId
is the id of the transaction, you wish to view the details of.
If instead, you are looking to get a list of transactions done by merchant:
batchId
's of settled transactions, based on date range passed. BatchId is used to identify the settlement batch these transactions were part of.
b. Followed by, call to get-transaction-list for which batchId
is a mandatory field. API Reference GetTransactionDetails API Reference GetUnsettledTransactionList API Reference GetSettledBatchList API Reference GetTransactionList
Can I get a list of transactions associated with an ARB?
@lighth7015 Sorry for the late response. Yes, you can get the list of transactions ran successfully for an ARB subscription.
In the request, includeTransactions flag has to be set as true (GetSubscription example). And then you can traverse the array of transactions returned in the response (GetSubscription example).
Kindly close this issue if your problem is resolved. Feel free to reopen this issue or raise a new one for any queries in future.
Thank you, It works now! You all are wonderfully helpful!
So I'm working on getting used to the python API for Authorize.Net, however I seem to be running into the following issues with the API-
And all the logs will tell me is this,
And I don't know how to get more information.