Retrieve the installation settings
Returns settings and configuration for the installation linked to the terminal (payment methods, UI options, etc.), after verifying the bound device.
The terminal must be connected via connect-device and must have an installation
configured on the merchant terminal record.
merchant_id
string
Required. The merchant ID this terminal belongs to.
terminal_id
string
Required. Terminal ID (trm_…).
device_id
string
Required. Device UUID bound to this terminal (same as connect-device).
| Attribute | Description |
|---|---|
installation_idstring
|
Always present. The ID of the installation. |
namestring
|
Always present. The name of the installation. |
platformstring
|
Always present. The platform type of the installation (e.g.,
|
identifierstring
|
Always present. The unique identifier for the installation on the platform. |
payment_methodsarray<object.payment_method>
|
Always present. List of payment methods supported by this installation. |
email_capturestring
|
Always present. Email capture configuration for this installation. 'disabled' means no email collection, 'optional' means email is collected if provided by customer, 'required' means email is mandatory for all customers. Possible values:
|
mobile_capturestring
|
Always present. Mobile phone capture configuration for this installation. 'disabled' means no mobile number collection, 'optional' means mobile number is collected if provided by customer, 'required' means mobile number is mandatory for all customers. Possible values:
|
address_capturestring
|
Always present. Billing-address capture configuration for this installation. 'disabled' means no address collection, 'optional' means address fields are shown but optional, 'required' means the fields listed in each payment method's
|
merchant_namestring
|
Always present. The name of the merchant that owns this installation. |
interest_bearerstring
|
Nullable. The merchant's default for who bears installment interest. When
|
primary_colorstring
|
Always present. Primary color used for buttons and main elements (hex format). |
secondary_colorstring
|
Always present. Secondary color used for backgrounds and accents (hex format). |
sidebar_colorstring
|
Always present. Background color for the sidebar (hex format). |
sidebar_background_typestring
|
Always present. The type of sidebar background to use (color or image). Possible values:
|
tile_sidebar_imageboolean
|
Always present. Whether to tile the sidebar image to fill the entire sidebar area. |
hide_logoboolean
|
Always present. Whether to hide the logo completely from the payment interface. |
heading_font_familystring
|
Always present. Font family for headings. |
heading_font_variantstring
|
Always present. Font weight variant for headings. Possible values:
|
body_font_familystring
|
Always present. Font family for body text. |
body_font_variantstring
|
Always present. Font weight variant for body text. Possible values:
|
use_iso_codeboolean
|
Always present. Whether to use ISO currency codes instead of currency symbols. |
hide_non_significant_zerosboolean
|
Always present. Whether to hide decimal places when they are zero. |
show_amount_in_buttonboolean
|
Always present. Whether to display the payment amount in the button text. |
symbol_placementstring
|
Always present. Where to place the currency symbol relative to the amount. Possible values:
|
default_button_textstring
|
Always present. Default text displayed on payment buttons. |
button_shapestring
|
Always present. Border radius style for buttons. Possible values:
|
light_logo_urlstring
|
Nullable. URL for the light logo (for light backgrounds). |
dark_logo_urlstring
|
Nullable. URL for the dark logo (for dark backgrounds). |
sidebar_image_urlstring
|
Nullable. URL for the sidebar background image. |
terminal_namestring
|
Always present. Display name of the terminal that requested these settings. |
terminal_branch_namestring
|
Always present. Branch name configured on the terminal, if any. |
terminal_kiosk_modeboolean
|
Always present. Whether the terminal is in kiosk mode. |
| Attribute | Description |
|---|---|
namestring
|
Always present. The name of the payment method. |
display_namestring
|
Always present. The display name of the payment method. |
flowstring
|
Always present. the flow of the payment method. |
categorystring
|
Always present. The category of the payment method. |
requires_addressboolean
|
Always present. Whether this payment method collects the cardholder's billing address. Already accounts for the installation's |
required_fieldsarray<string>
|
Always present. Address fields that are mandatory for this payment method when the installation's |
banksarray<object.bank>
|
Always present. The banks offering installment plans for this payment method. Always empty for payment methods that are not installments. |
| Attribute | Description |
|---|---|
namestring
|
Always present. The name of the bank offering the installment plans. |
display_namestring
|
Always present. The display name of the bank |
NOT_FOUND
The merchant or terminal could not be found, or no device is bound to the terminal.
UNRECOGNIZED_DEVICE
The device_id does not match the one bound to the terminal.
NOT_ENABLED
The terminal exists but is disabled.
NOT_CONFIGURED
The terminal has no installation linked; assign an installation to the terminal first.
UNHANDLED_ERROR
Raised when the server encounters an unexpected internal error.
INVALID_ARGUMENTS
Raised when the request contains invalid or missing parameters.
BAD_VERSION
Raised when requesting an unsupported or deprecated API version.
curl "https://api.reservepay.com/terminals/retrieve-installation-settings" \
-X POST
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"merchant_id": "123456789012",
"terminal_id": "trm_U4vfjCFwwK",
"device_id": "b3a98022-59cf-4f87-99ed-51a0f1cb135e"
}'
