Skip to main content
GET
/
workspace
/
teammates
List all teammates in the workspace.
curl --request GET \
  --url https://app.timelines.ai/integrations/api/workspace/teammates \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "data": {
    "teammates": [
      {
        "user_id": 42,
        "display_name": "John Doe",
        "email": "admin@timelines.ai",
        "status": "active",
        "created_at": "2026-02-22 00:00:00 +0100",
        "role": "owner",
        "whatsapp_accounts": [
          {
            "id": "972501111111@s.whatsapp.net",
            "phone": "+972540000001",
            "connected_on": "2023-06-18 15:19:23 +0100",
            "status": "Active",
            "owner_name": "John Doe",
            "owner_email": "john.doe@acme.com",
            "account_name": "John Doe"
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success

status
enum<string>
required
Available options:
ok,
error
Example:

"ok"

data
object
required