BizKitHub
DocsAPI ReferenceTransaction/bff/transaction/add-api-token
postTransactionAdmin BFF

/bff/transaction/add-api-token

Adds a new Fio bank account by API token. The token is validated and the account is immediately synced. Throws an error if the token is invalid or already connected.

TransactionpostBffTransactionAdd-api-token

Parameters

JSON body

Request body

application/json
apiTokenstringRequired

Fio bank API token (from internetbanking settings).

Exampleabcdef1234567890

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the account was connected successfully.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/transaction/add-api-token

post
curl -X POST "https://api.bizkithub.com/bff/transaction/add-api-token" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "apiToken": "abcdef1234567890"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key