Navigation

Workspace

GET /me

Returns your workspace and its members. Use this as a first call to verify your API key works and to discover member IDs (which you'll need when assigning tasks or logging time on behalf of users).

curl -H "Authorization: Bearer kdt_..." \
     https://api.konduit.work/v1/me
{
  "workspace": {
    "id": "...",
    "name": "Acme Marketing",
    "plan": "pro"
  },
  "members": [
    { "id": "...", "name": "Alice" },
    { "id": "...", "name": "Bob" }
  ]
}

The plan field is one of free, pro, business, or scale. The API itself is gated to pro and above — a free workspace's keys won't be created in the first place.

Members

The members array contains workspace-visible users. Service accounts appear here too, with names typically reflecting their integration purpose. Use member IDs when:

Members removed from the workspace stop appearing here. Their historical assignments and authored time entries remain in the database but are no longer assignable.

Next