List organization members
curl --request GET \
--url http://localhost:3000/api/v1/members \
--header 'x-api-key: <api-key>'
{
"members": [
{
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"avatarUrl": "<string>",
"roles": [
"admin"
],
"status": "active",
"department": "<string>",
"joinedAt": "2023-11-07T05:31:56Z"
}
]
}