Members

List members

Everyone in the workspace, owners first. `userId` is what a mention's assigneeId and a person's ownerId take.

GET
/v1/members
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/members"
{
  "data": [
    {
      "id": "string",
      "userId": "string",
      "email": "string",
      "name": "string",
      "role": "owner",
      "joinedAt": "string"
    }
  ]
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}