The Business Console is the developer hub inside the Business Portal. This is where you create and manage the Apps that power your V3 API integration — generating credentials, scoping permissions, and setting up webhooks.Documentation Index
Fetch the complete documentation index at: https://docs.fyatu.com/llms.txt
Use this file to discover all available pages before exploring further.
App Types
Every API call is scoped to an App. The app type determines which V3 API endpoints are available:| App Type | APIs Available | Scopes Granted |
|---|---|---|
| Collection App | Collections, Payouts, Refunds, Account | collect:write, collect:read, payout:write, payout:read |
| Issuing App | Cards, Cardholders, Account | cards:write, cards:read, cardholders:write, cardholders:read |
Creating an App
Name your app
Give the app a descriptive name (e.g.
Card Issuing — Production). You can create multiple apps for different environments or use cases.API Credentials
Each app has two credentials:| Credential | Description |
|---|---|
appId | Public identifier for your app. Safe to log. |
secretKey | Used to authenticate token requests. Treat as a password — never expose in client-side code. |
Bearer token on every API request. See Authentication for details.
Regenerating a Secret Key
If yoursecretKey is compromised:
- Go to Business Console → Your App → Settings.
- Click Regenerate Secret Key.
- Confirm the action — the old key is immediately invalidated.
- Update your server environment with the new key.
Webhooks
Each app can be configured with a webhook endpoint to receive real-time event notifications.Add an endpoint
Enter your HTTPS endpoint URL. Fyatu will
POST signed JSON payloads to this URL for every subscribed event.Select events
Choose which events to subscribe to (e.g.
CARD_CREATED, COLLECTION_RECEIVED, PAYOUT_COMPLETED).Copy the webhook secret
Use the webhook secret to verify the HMAC-SHA256 signature on incoming payloads. See Signature Verification.
KYB Status
Business-level identity verification (KYB) is required before your app can process live transactions. The KYB status is visible in Business Console → KYB.| Status | Meaning |
|---|---|
| Pending | No documents submitted yet |
| In Review | Documents submitted, under review |
| Approved | Full live access granted |
| Rejected | Review the rejection reason and resubmit |

