Get Account
monei_get_accountIdentify the logged-in Monei user, confirm their email, KYC verification, and transaction PIN status to ensure account readiness for financial operations.
Instructions
Returns the profile of the currently authenticated Monei user.
Use this at the start of a session to identify who is logged in, confirm the user's name and email, or check their verification status before proceeding with financial operations.
Returns: { "id": string, // Internal user ID "firstName": string, "lastName": string, "email": string, "phone": string, "verified": boolean, // Whether the account is fully verified (KYC) "haveTransactionPin": boolean, // Whether the user has set a transaction PIN "lastLoggedIn": string // ISO timestamp of last login }
Examples:
"Who am I logged in as?" -> call this tool
"Is my account verified?" -> check 'verified' field in response
"Do I have a transaction PIN set?" -> check 'haveTransactionPin' field
Error handling:
Returns error if API key is invalid or expired
Returns error if the account has been suspended
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||