The configuration values submitted by the merchant after app installation.
The configuration returns the values added by the merchant on their dashboard. These can be used to retrieve custom data such as Partner app credentials, third-party credentials, and the merchant's customized configuration data, which can then be interpreted by the partner app installed via Recurpay.
For example, when you install a loyalty app or any other app in Recurpay and want to connect the integration, you’ll need to provide the app’s API keys and a few other configuration details. This ensures the loyalty app can correctly display points and allow redemptions only through your connected account.
refer to Partner app configuration overview if you are a partner.
The configuration object
This JSON object contains key-value pairs representing configuration settings submitted by the merchant. The keys are the names of the configuration fields defined by the partner app, and the values are the actual data (e.g., API credentials) entered by the merchant.
{
"name_of_the_configuration_added_by_partner": "api_key_123",
"name_of_the_configuration_added_by_partner": "api_secret_123",
// This will be dynamic, as partner app created the configuration, the name of them will be shown here
}
📝 Notes:
- The keys ("name_of_the_configuration_added_by_partner") will be dynamically named based on what the partner app defines—for example, "api_key" or "merchant_id".
- The values (like "api_key_123") are the actual credentials or settings provided by the merchant on their dashboard.
This data is used to enable and configure the integration between Recurpay and the partner app (e.g., to connect APIs, fetch data, etc.).