Skip to main content
GET
/
v1
/
submerchants
/
{id}
/
api-keys
Get submerchant's API Keys
curl --request GET \
  --url https://api-global.fastpaybrasil.com/v1/submerchants/{id}/api-keys \
  --header 'Authorization: Basic <encoded-value>'
{
  "publicKey": "pk_2vorkDcXyvzifL63YX09S9VqcnI",
  "secretKey": "sk_2vorkDcXyvzifL63YX09S9VqcnI"
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication. Use your secret key as the username and an empty string as password. The API key should be base64 encoded in the format 'username:' when sending the Authorization header.

Path Parameters

id
string
required

Unique identifier of the merchant.

Example:

"36OO3bcGjhPjjF3tzrqOGcmQuKo"

Response

Successfully retrieved the API keys

publicKey
string

Public key ID

Example:

"pk_2vorkDcXyvzifL63YX09S9VqcnI"

secretKey
string

Private key ID

Example:

"sk_2vorkDcXyvzifL63YX09S9VqcnI"