cancel
Showing results for 
Search instead for 
Did you mean: 

code: E00001, text : "An error occurred during processing. Please try again.

Hello,

I am testing my sandbox account app_login_id and transaction_key in api/reference/#mobile-in-app-transactions getting this error - 

 

{
    "transactionResponse": {},
    "refId": "123456",
    "messages": {
        "resultCode": "Error",
        "message": [
            {
                "code": "E00001",
                "text": "An error occurred during processing. Please try again."
            }
        ]
    }
}
aakanksha44
Member
4 REPLIES 4

Hi @aakanksha44

 

Can you test your sandbox credentials by using them in our Try it Tab in the API reference ?

 

https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-credit-card 





Send feedback at developer_feedback@authorize.net
Anurag
Moderator Moderator
Moderator

Hello @Anurag

 

for charge a credit card, it is working properly but for the mobile in-app transaction it is showing error.

It seems like you're trying to run this API

https://developer.authorize.net/api/reference/index.html#mobile-in-app-transactions-create-an-accept...

 

The error may be due to an invalid value in the field opaqueData.DataValue

 

You can read about how to obtain the nonce for this field here:

https://developer.authorize.net/api/reference/features/acceptjs.html#Handling_the_Response

akagarwa
Authorize.Net Developer Authorize.Net Developer
Authorize.Net Developer

Hi Team ,

 

I am trying to pass the Invoice Number & Description but I keep on getting the error.

 

Request :-

 

{ "ARBCreateSubscriptionRequest": { "merchantAuthentication": { "name": "xxxxxxxx", "transactionKey": "xxxxxxxxxxxx" }, "refId": "123456789", "subscription": { "name": "Sample subscription", "paymentSchedule": { "interval": { "length": "1", "unit": "months" }, "startDate": "2020-09-01", "totalOccurrences": "12" }, "amount": "10.29", "trialAmount": "0.00",

"order": {
"invoiceNumber": "Test1234",

"description": "Test1234",

} "profile": { "customerProfileId": "1927615470", "customerPaymentProfileId": "1839835676", "customerAddressId": "1883762585" } } } }
 
Response :-
 
{ "messages": { "resultCode": "Error", "message": [ { "code": "E00001", "text": "After parsing a value an unexpected character was encountered: \". Path 'ARBCreateSubscriptionRequest.subscription.order', line 10, position 12." } ] }}
 
ENAGIC001
Member