Skip to main content

Authorize Response

Once the 3DS authentication is completed, the bank (ACS) redirects the user to your backUrl with:

  • paRes: A token indicating the outcome of 3DS authentication.
At this point:
  1. You have the initial authenticationToken (from the Start response).
  2. You have the new paRes (sent to backUrl).

Final Step: Verify Auth

To complete the payment, call:

POST /payment/card/verify-auth

Required Parameters:

  • authenticationToken (received in Start response)
  • ntpID (NETOPIA transaction ID from Start response)
  • formData (all data from backUrl, including paRes)

Why is this step mandatory?

Calling Verify Auth ensures NETOPIA completes the transaction using the 3DS result.

If you skip this step, the payment remains incomplete!

Handling Different paRes Outcomes

ScenariopaRes IndicatorWhat to Do
Authentication SuccessfulValid paResCall /payment/card/verify-auth
Authentication FailedpaRes with errorInform user & retry
User CanceledpaRes missingTreat as canceled

Handling backUrl Correctly

Your backUrl should be a secure endpoint that:

  • Receives paRes and extracts it.
  • Handles errors gracefully, such as authentication failures or user cancellations.
Example:

If paRes contains an error, display a message to the user instead of proceeding with verification.

note

If the bank denies the authentication, or the user cancels, paRes may indicate a failed status.
Your backUrl must handle these cases to prevent incorrect processing.


Next Steps in the Flow

  1. Return to Start → Understand the initial request flow.
  2. Check Error Codes → Interpret authentication failures.
  3. Implement verify-auth → Finalize the payment with the 3DS authentication result.