Team Members
Retrieve team member information for the authenticated account.
GET /account/team
Returns a list of all team members with their roles and status.
Authentication
Requires an API key with Admin access level.
curl https://api.growpanel.io/v1/account/team \
-H "Authorization: Bearer YOUR_API_KEY"Response
Status: 200 OK
{
"result": {
"count": 3,
"list": [
{
"id": "usr_001",
"email": "[email protected]",
"name": "Jane Smith",
"role": "owner",
"status": "active",
"last_login": "2025-01-10T14:30:00Z"
},
{
"id": "usr_002",
"email": "[email protected]",
"name": "John Doe",
"role": "admin",
"status": "active",
"last_login": "2025-01-09T09:15:00Z"
},
{
"id": "usr_003",
"email": "[email protected]",
"name": "Alex Johnson",
"role": "read-only",
"status": "pending",
"last_login": null
}
]
}
}Response fields
| Field | Type | Description |
|---|---|---|
id | string | Unique user identifier |
email | string | User's email address |
name | string | User's display name |
role | string | Permission level: owner, admin, or read-only |
status | string | Account status: active, pending, or disabled |
last_login | string | Last login timestamp (null if never logged in) |
Related pages
- Team management - Managing team in the UI