Skip to main content
GET
/
users
/
{userId}
curl --location --request GET 'https://api.fonder.com/users/9c684377-aa26-4fd4-a660-c1afbf5d1a06' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "9c684377-aa26-4fd4-a660-c1afbf5d1a06",
  "username": "Federico",
  "mail": "[email protected]",
  "role": "ADMIN",
  "phone": "+5491144444444",
  "accounts": ["caja nueva"]
}

Path Parameters

userId
string
required
User ID (UUID format)

Response

id
string
Unique user identifier (UUID)
username
string
User’s username
mail
string
User’s email address
role
string
User’s role (e.g., “ADMIN”)
phone
string
User’s phone number
accounts
string[]
Array of account names the user has access to
curl --location --request GET 'https://api.fonder.com/users/9c684377-aa26-4fd4-a660-c1afbf5d1a06' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "9c684377-aa26-4fd4-a660-c1afbf5d1a06",
  "username": "Federico",
  "mail": "[email protected]",
  "role": "ADMIN",
  "phone": "+5491144444444",
  "accounts": ["caja nueva"]
}