Skip to main content
GET
/
members
List organization members
curl --request GET \
  --url https://api.alfaone.com/api/v1/members \
  --header 'x-api-key: <api-key>'
{
  "members": [
    {
      "id": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "jsmith@example.com",
      "avatarUrl": "<string>",
      "roles": [
        "admin"
      ],
      "status": "active",
      "department": "<string>",
      "joinedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Format: ak_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Response

Successful response

members
object[]