Skip to main content

NETOPIA Payments API - Version 1.x

Overview

[This API Version Will Be Phased Out]

Version 2.x is the latest release of the NETOPIA Payments API and is recommended for both new and existing customers. This version uses JSON endpoints and is secured with API tokens. Version 1.x will be fully phased out by the end of 2025. This documentation is provided to assist existing customers until they complete their migration.

Introduction

The NETOPIA Payments API provides a flexible and secure way to integrate payments into your applications. This guide covers the API structure, authentication, security measures, and request/response formats.

Feedback

Help us improve this guide by sending feedback to: implementare@netopia.ro

Architecture

Client-Server Model

NETOPIA API follows a client-server model:

  • The client (your website or application) sends a request using POST to one of NETOPIA's service endpoints.
  • The user is redirected to NETOPIA’s payment page.
  • NETOPIA processes the payment and notifies your server.

Security Measures

To ensure secure transactions, the API implements:

  1. Request authentication via API Signature (Signature field).
  2. Data encryption using RSA keys.
  3. Secure transport via SSL/TLS (recommended for responses).

Payment Request Workflow

Process Overview:

  1. Redirect the user to NETOPIA with a payment request.
  2. NETOPIA processes the transaction and notifies your server.
  3. Your system handles the IPN (Instant Payment Notification).

Key Parameters:

  • env_key – Public key for encryption.
  • data – XML-structured payment details, signed with NETOPIA’s public certificate.
  • cipher – Encryption algorithm.
  • iv – Initialization vector for encryption security.

Service Endpoints

Payment ModeStandard PaymentOne-Click Payment
Livehttps://secure.mobilpay.rohttps://secure.mobilpay.ro/card4
Testhttps://sandboxsecure.mobilpay.rohttps://sandboxsecure.mobilpay.ro/card4

For language-specific interfaces, append the language code (e.g., /en for English).

Payment Request Structure

XML Format

<?xml version="1.0" encoding="utf-8"?>
<order type="card" id="ORDER_ID" timestamp="YYYYMMDDHHMMSS">
<signature>XXXX-XXXX-XXXX-XXXX</signature>
<invoice currency="RON" amount="XX.YY">
<details>Payment Description</details>
<contact_info>
<billing type="company|person">
<first_name>John</first_name>
<last_name>Doe</last_name>
<email>john.doe@example.com</email>
<mobile_phone>+40712345678</mobile_phone>
<address>123 Main St, Bucharest</address>
</billing>
</contact_info>
</invoice>
<ipn_cipher>aes-256-cbc</ipn_cipher>
<params>
<param>
<name>custom_param</name>
<value>value123</value>
</param>
</params>
<url>
<confirm>https://yourdomain.com/confirm</confirm>
<return>https://yourdomain.com/return</return>
</url>
</order>

Request Parameters

ParameterDescriptionFormat / ConstraintsNotes
order typeSpecifies the type of transaction to be initiated.Accepted value: card-
order idInternal identifier for your order.Max 64 characters, unique per seller account.Refresh on each request unless duplicate is intended.
timestampThe timestamp from your server.Format: YYYYMMDDhhmmssExample: 20240425020304 (April 25, 2024, 02:03:04)
signatureThe unique key for your seller account.Format: XXXX-XXXX-XXXX-XXXXObtainable from NETOPIA's merchant console.
invoiceContains the payment details to be initiated.--
currencyCurrency for processing the payment.ISO Code (e.g., RON)Other currencies (EUR, USD, GBP) may be used if authorized; otherwise, converted to RON with dual display.
amountThe amount to be processed.Max: 99999 unitsCard checks may use an amount of 0.
installments (optional)Number of installments available.Type: IntegerMust be preconfigured by a NETOPIA representative.
selected_installments (optional)The number of installments selected by the client.Type: IntegerMust be within the installments range.
customer_idInternal identifier of your customer.Unique IDUseful for one-click payments.
token_idToken received from an initial payment request.-Identifies the customer and payment instrument.
pan_maskedFirst 6 and last 4 digits of the associated credit card.Masked Card NumberDisplays a user-friendly version of the card.
detailsPayment details as displayed on the NETOPIA secure payment page.Alphanumeric-
cipherAlgorithm/method for data encryption or decryption.Options: rc4, aes-256-cbc-
contact_infoPayer information for a smoother payment experience.-Eliminates the need for a secondary step to collect customer details.
billing_typeCustomer type.Values: person, company-
first_nameCustomer's first name.String-
last_nameCustomer's last name.String-
emailCustomer's email address.Valid email format-
mobile_phoneCustomer's phone number.Numeric-
addressCustomer's address.String-
paramsAn array of custom parameters.-Provides additional details about the payer and/or
urlThe URL where NETOPIA sends the payment result.Valid URL-
confirmYour web application's URL called on payment status changes or manual IPNs.Must be publicly accessibleMust support HTTP (port 80) or HTTPS (port 443). First call is synchronous; subsequent calls are asynchronous.
returnURL to which the client is redirected after payment completion.Valid URLNot to be confused with success or cancel URLs. Content is dynamic based on data sent to the confirm URL.

Payment Response Structure

Upon every change in the status of a payment, NETOPIA will make a POST request to the URL set as the confirmation endpoint, with the Content-Type: application/x-www-form-urlencoded. The request will contain the following parameters: env_key, data, cipher, and optionally, iv. The response XML will be encrypted using an X509 public certificate, and you must decrypt it using the private key provided by NETOPIA (or your own).

You will receive all the parameters you initially sent, unchanged, along with an additional element, called mobilpay, in the response XML.

XML Format

<?xml version="1.0" encoding="utf-8"?>
<order type="card" id="ORDER_ID" timestamp="YYYYMMDDHHMMSS">
<mobilpay timestamp="YYYYMMDDHHMMSS" crc="XXXXX">
<action>action_type</action>
<customer type="person|company">
<first_name>John</first_name>
<last_name>Doe</last_name>
<address>123 Main St, Bucharest</address>
<email>john.doe@example.com</email>
<mobile_phone>+40712345678</mobile_phone>
</customer>
<purchase>mobilPay_purchase_no</purchase>
<original_amount>XX.XX</original_amount>
<processed_amount>NN.NN</processed_amount>
<pan_masked>XXXXXX****YYYY</pan_masked>
<payment_instrument_id>ZZZZZZZ</payment_instrument_id>
<token_id>token_identifier</token_id>
<token_expiration_date>YYYY-MM-DD HH:MM:SS</token_expiration_date>
<error code="N">error_message</error>
</mobilpay>
</order>

Response Parameters

ParameterDescriptionFormat / ConstraintsNotes
mobilpayNETOPIA's response, appended to your unchanged request.--
timestampNETOPIA's internal timestamp.Format: YYYYMMDDHHMMSS-
crcNETOPIA internal identifier check.Alphanumeric-
actionThe action attempted by NETOPIA.Values: paid_pending, confirmed_pending, paid, confirmed, credit, canceledThis is not the transaction status, as all actions can succeed or fail.
customer typeThe type of paying customer.Values: person, company-
first_nameThe customer's first name.String-
last_nameThe customer's last name.String-
addressThe customer's address.String-
emailThe customer's email address.Valid email format-
mobile_phoneThe customer's phone number.Numeric-
purchaseNETOPIA internal identifier.Unique IDUnique for the entire NETOPIA platform.
original_amountThe original amount processed.Decimal-
processed_amountThe processed amount at the moment of response.DecimalCan be lower than the original amount in case of partial capture or refund.
pan_maskedFirst 6 and last 4 digits of the card used.Masked Card NumberStore and use for customer-friendly payment instrument identification.
payment_instrument_idInternal NETOPIA identifier of the payment instrument.AlphanumericHelps check uniqueness.
token_idToken associated with the payment instrument.AlphanumericUsed for recurring payments or one-click payments.
token_expiration_dateExpiration date of the token.Format: YYYY-MM-DD HH:MM:SSUsually the expiration date of the card.
error codeIndicates whether the action was successful.0 (Success) or other numeric valuesA value of 0 means success, any other value indicates failure.
error messageDescriptive error message.StringCan be displayed to the user for better understanding.

Merchant's Response

For each call to your confirmation URL, you must send a response in XML format back to NETOPIA, indicating whether you have successfully recorded the response. This response is crucial for NETOPIA to determine whether to retry sending the IPN.

If you encounter an error, you should specify an error code and message. You can check your response in the NETOPIA Platform under Orders > Card, selecting Any status and identifying the transaction.

XML Response Format

<?xml version="1.0" encoding="utf-8"?>
<crc error_type="1|2" error_code="numeric">message</crc>

Response Attributes

AttributeDescriptionFormat / ConstraintsNotes
error_typeDetermines if NETOPIA will retry sending the IPN.1 (Temporary Error), 2 (Permanent Error)Set to 1 for temporary issues, 2 for permanent failures.
error_codeYour internal error code.NumericHelps diagnose issues on your system.
messageYour error message.StringIf no error, return the received crc value or an appropriate success message.

This structured response ensures smooth communication with NETOPIA and prevents unnecessary retries of failed IPNs.


Error Codes

CodeMeaning
0Approved
16Stolen card
17Incorrect card number
18Closed card
19Expired card
20Insufficient funds
21CVV2 incorrect
22Issuer unavailable
32Incorrect amount
33Incorrect currency
34Transaction not permitted
35Transaction declined
36Rejected by antifraud
37Declined (legal restrictions)
38Requires 3D Authentication
48Invalid request
49Duplicate PREAUTH
50Duplicate AUTH
51Can only CANCEL preauth
52Can only CONFIRM preauth
53Can only CREDIT confirmed order
54Credit amount exceeds auth amount
55Capture amount exceeds preauth
56Duplicate request
99Generic error