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

FieldTypeDescription
idstringUnique user identifier
emailstringUser's email address
namestringUser's display name
rolestringPermission level: owner, admin, or read-only
statusstringAccount status: active, pending, or disabled
last_loginstringLast login timestamp (null if never logged in)