-
- abort-payment-on-terminal
- capture-payment
- filter-payments
- find-payment
- initiate-payment-flow
- list-activity-logs
- list-payment-activities
- list-payments
- list-payments-by-contact
- list-payments-by-terminal
- refund-payment
- request-payment
- resume-payment-on-terminal
- retrieve-refund-performance
- retrieve-sales-performance
- reverse-payment
- start-payment-on-terminal
- void-payment
Retrieve Merchant Branding
Get the current visual branding settings for your merchant account. This includes colors, typography, button styling, display preferences, and uploaded assets (logos, sidebar images) for your payment interface.
The response includes all branding configuration options that can be customized through the update-branding endpoint, as well as URLs to any uploaded branding assets.
Common use cases for this endpoint include: - Checking your current branding configuration - Previewing how your payment interface will look to customers - Verifying that uploaded logos and images are properly configured - Getting branding settings for integration with your own systems
This endpoint requires authentication and will only return branding details for the authenticated merchant.
| Attribute | Description |
|---|---|
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). |
light_logo_idstring
|
Nullable. Upload ID for the light logo. Use this ID with remove-branding-document to remove the logo. |
light_logo_filenamestring
|
Nullable. Original filename of the uploaded light logo. |
light_logo_file_typestring
|
Nullable. MIME type of the light logo file (e.g., 'image/png', 'image/jpeg'). |
dark_logo_urlstring
|
Nullable. URL for the dark logo (for dark backgrounds). |
dark_logo_idstring
|
Nullable. Upload ID for the dark logo. Use this ID with remove-branding-document to remove the logo. |
dark_logo_filenamestring
|
Nullable. Original filename of the uploaded dark logo. |
dark_logo_file_typestring
|
Nullable. MIME type of the dark logo file (e.g., 'image/png', 'image/jpeg'). |
sidebar_image_urlstring
|
Nullable. URL for the sidebar background image. |
sidebar_image_idstring
|
Nullable. Upload ID for the sidebar image. Use this ID with remove-branding-document to remove the image. |
sidebar_image_filenamestring
|
Nullable. Original filename of the uploaded sidebar image. |
sidebar_image_file_typestring
|
Nullable. MIME type of the sidebar image file (e.g., 'image/png', 'image/jpeg'). |
UNHANDLED_ERROR
This error occurs when the server encounters an unexpected internal error that it cannot handle gracefully. This typically happens due to bugs, infrastructure issues, or edge cases that weren't anticipated during development.
INVALID_ARGUMENTS
This error occurs when the request contains invalid or missing parameters. Common cases include missing required fields, or values that don't match the expected format or type.
BAD_VERSION
This error occurs when making requests to an API version that does not exist. This commonly happens when using an outdated SDK or when the API version specified in the request URL is incorrect.
curl "https://api.reservepay.com/merchants/retrieve-branding" \
-X POST
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer $(RESERVEPAY_API_KEY)" \
-d '{}'
