GET
/
payments
/
business
/
{api_key}
curl --request GET \
  --url https://stage.tonder.io/api/v1/payments/business/{api_key}
{
  "business": {
    "pk": 88,
    "name": "QA Test",
    "categories": [
      {
        "pk": 6,
        "name": "E-commerce"
      }
    ],
    "web": "http://sitioinformatico.com/tonderwp",
    "logo": "https://zplit-stage.s3.amazonaws.com/media/business_logos/ftrain_1.png",
    "full_logo_url": "https://zplit-stage.s3.amazonaws.com/media/business_logos/ftrain_1.png",
    "background_color": "#004080",
    "primary_color": "#47a76d",
    "checkout_mode": true,
    "textCheckoutColor": "#ffffff",
    "textDetailsColor": "#ed8201",
    "checkout_logo": "<string>"
  },
  "openpay_keys": {
    "merchant_id": "mabkc7smuyermmueyxcl",
    "public_key": "pk_707d2ac7cc5d43ee881de43be9eea22d"
  },
  "fintoc_keys": {
    "public_key": "<string>"
  },
  "vault_id": "seaf898c927c4ee1a5b2c58315b6ee0d",
  "vault_url": "https://a370a9658141.vault.skyflowapis-preview.com",
  "reference": 520961,
  "is_installments_available": true
}

The Authorization needs to be in the following format:

Authorization: Token <YOUR_API_KEY>

Retrieve all the information about your business using this endpoint. Get details on branding, providers public keys, vault information and more.

Path Parameters

api_key
string
required

Your Tonder API Key. You can recover it on Tonder's dashboard.

Response

200 - application/json
business
object

Contains information about the business.

openpay_keys
object

Contains OpenPay keys for the business.

fintoc_keys
object

Contains Fintoc keys for the business.

vault_id
string

The identifier for the vault.

vault_url
string

The URL for the vault.

reference
integer

A reference number associated with the business.

is_installments_available
boolean

A boolean indicating whether installments are available.