GuideLab API

List team members

Returns all members of the current organization with their name, email, role, and avatar.

GET
/team/members

Returns all members of the current organization with their name, email, role, and avatar.

Authorization

__Secure-guidelab-prod.session_token<token>

Production session cookie set for the guidelab.co domain by Better Auth

In: cookie

Response Body

application/json

curl -X GET "https://example.com/team/members"
{  "data": [    {      "id": "string",      "userId": "string",      "name": "string",      "email": "string",      "image": "string",      "role": "string",      "createdAt": "string"    }  ]}
Empty