Used by 12,000+ retailers, our API connectors enable secure payments

RCPSecurePay’s API connectors are trusted by over 12,000 retail outlets, enabling seamless and secure payment processing. Our robust integration ensures merchants can accept payments effortlessly while maintaining top-tier security and performance. Whether you're a small business or a large enterprise, our API solutions provide the flexibility and reliability needed to enhance your payment experience.

Secure Authentication

Implementing user login and registration with the latest security standards, including authentication throttling and social login options.

Two-Factor Authentication

Enhance account security with built-in Two-Factor Authentication (2FA) for an added layer of protection.

Virtual Terminal Roles & Permissions

Create and manage an unlimited number of user roles and permissions, giving you complete control over user access and actions on your Merchant Dashboard.

REST API

A fully documented REST API is provided, allowing you to seamlessly integrate backend functionality into your mobile applications without the need to build it from the ground up.

Active Sessions Management

The built-in database session driver enables you to efficiently manage active sessions, including those of any user, ensuring smooth control over your application's session activity.

Localization Support

Easily customizable for any language, with built-in support for three languages: English, Serbian, and German. Translate it effortlessly to suit your needs.

Retrieve and manage information about merchant accounts integrated with RCPSecurePay.

API Overview

The RCPSecurePay Merchants API allows developers to access and configure merchant account details to streamline payment services across multiple locations. Each merchant represents a business or organization utilizing RCPSecurePay for secure transactions.

Use this API to retrieve core information such as merchant IDs, business names, location data, and account status. Integrate seamlessly with your application to enhance merchant management.

Endpoints

Key endpoints available in the Merchants API:

  • GET /v2/merchants - Provides details about the merchant associated with a given access token.
  • GET /v2/merchants/{merchant_id} - Retrieves specific merchant details by ID.
  • POST /v2/merchants/locations - Adds a new location to a merchant’s account.

Example Request

curl --request GET \    --url 'https://api.rcpsecure.net/v2/merchants' \    --header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \    --header 'Content-Type: application/json'              

Example Response

{    "merchant": {      "id": "RCPM123456789",      "business_name": "Sample Store",      "country": "US",      "language_code": "en-US",      "currency": "USD",      "status": "ACTIVE",      "main_location_id": "RCPL987654321",      "created_at": "2025-02-22T04:33:00Z"    }  }              

Developer Notes

Note: The merchant ID is only accessible via the API and is not visible in the RCPSecurePay Dashboard. Use the RetrieveMerchant endpoint with me to fetch the merchant tied to your access token.