Skip to main content

Verify a Payment

The verify-auth endpoint is used only for transactions with 3DS-secured cards and must be called after receiving the response from the authorize endpoint.

To complete the transaction process, you need to verify the paRes token and ntpID.

Payment Verification Flow

StepAction
1. Start PaymentCall /payment/card/start to initiate a payment. If 3D Secure is required, the response will contain customerAction.type = Authentication3D.
2. Redirect to BankSend paReq to the customerAction.url provided by NETOPIA.
3. Receive Bank ResponseThe bank redirects the user to backUrl with paRes.
4. Finalize PaymentCall /payment/card/verify-auth with authenticationToken, ntpID, and paRes to confirm authentication.

verify-auth Payment URL

Sandbox:

https://secure.sandbox.netopia-payments.com/payment/card/verify-auth

Production:

https://secure.mobilpay.ro/pay/payment/card/verify-auth

Request Structure

{
"authenticationToken": "string",
"ntpID": "string",
"formData": {
"paRes": "string"
}
}

Query Parameters

ParameterTypeRequired
authenticationTokenstringYes
ntpIDstringYes
formData.paResstringYes

Parameters Explanation

What is authenticationToken and how to get it?

  • The authenticationToken is a unique token for authentication, generated per transaction by NETOPIA Payments.
  • You receive the authenticationToken in the response from the start endpoint.

What is ntpID and how to get it?

  • The ntpID is a unique transaction identifier assigned by NETOPIA Payments.
  • You receive the ntpID in the response from the start endpoint.

What is paRes and where does it come from?

  • The paRes (Payment Authentication Response) token is received from the bank after the 3D Secure authentication process.
  • You receive paRes as a parameter in your backUrl after the user completes the 3DS challenge.

Sample Request

verify-auth

Below are examples of how to send a verify-auth request using different methods.

{
"authenticationToken": "ihsLdvikrsTiYqprMh9ViBO_iNPqJWDRoRXsd77StNELrvBiGr-JTZPqf04uS4dBhCAQjNSxcAyZcVAcGhCH3r7knNlq_i38YsmxT-KePOzno16psy5O_OvzfRlbuvkrBtrpjcXyzcTi--M6uM-X1C7aBzVgPa1",
"ntpID": "1310396",
"formData": {
"paRes": "Tti9mI28jvShfDTK_7hn6TAZmeO7xQEpoc8wwKIR7tWWlybyWDiYEYRKKw=="
}
}

Sample Response

{
"error": {
"code": "00",
"message": "Approved"
},
"payment": {
"amount": 200,
"currency": "RON",
"data": {
"AuthCode": "HenQ",
"BIN": "990000",
"ISSUER": "Netopia GB",
"ISSUER_COUNTRY": "642",
"RRN": "zVfHN8o9gRjn"
},
"ntpID": "1310396",
"status": 3,
"token": "MjMyNTotx7IbVyQ+ahEfk3v0ZX03NktTuBhDYQAAGRCoDzWfERrmE477yJnqDCem6RTWE3S1r2L7zNbihsOCA1clluQd"
}
}

Error Handling

  • If the paRes validation fails, the bank may reject the transaction.
  • Check the error codes in Errors & Statuses for troubleshooting.
  • Ensure you correctly pass authenticationToken, ntpID, and paRes as expected.

Next Steps

  1. Return to the Start: Start Payment Documentation to understand the initial request.
  2. Handle Errors Properly: Check Errors & Statuses for debugging failed transactions.
  3. Complete the Payment Flow: Implement the verify-auth call correctly to ensure the transaction is finalized.
Important:

If you skip the verify-auth call, the payment remains incomplete, and funds will not be captured.