# GET /api/teams/{id}/members > Team - List the Members of a Team Resolves the comma separated members column of the team into the matching staff users. Salary, date of hire and every other team_member_job_info column are never part of the response, and neither are password, ssn or dob. - **Endpoint:** `GET /api/teams/{id}/members` - **Group:** Team - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/TeamController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Team unique ID | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/teams/123/members" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK [ { "id": "3", "first_name": "Fname", "last_name": "Lname", "email": "member@example.com", "phone": "1234567890", "job_title": "Designer", "user_type": "staff", "status": "active", "image": null, "gender": "female", "created_at": "2026-01-15 10:00:00", "last_online": "2026-07-23 09:15:00" } ] ``` ### Error - Error-Response: ```json HTTP/1.1 404 Not Found { "status": false, "messages": { "error": "No data were found" } } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/team/get-team-members/