Skip to main content
POST
/
api
/
v1
/
stores
/
providers
/
binance-pay
Create a new store credential
curl --request POST \
  --url https://api.zenobank.io/api/v1/stores/providers/binance-pay \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "apiKey": "your-api-key",
  "apiSecret": "your-api-secret",
  "accountId": "your-account-id"
}
'
{
  "apiKey": "cuid_1234567890abcdef",
  "accountId": "568321"
}

Headers

x-api-key
string
required

External API Key

Body

application/json
apiKey
string
required

API Key

Example:

"your-api-key"

apiSecret
string
required

API Secret

Example:

"your-api-secret"

accountId
string
required

Account ID

Example:

"your-account-id"

Response

201 - application/json
apiKey
string
required
Example:

"cuid_1234567890abcdef"

accountId
string
required
Example:

"568321"