Skip to main content
GET
/
organizations
/
users
List users in a workspace
curl --request GET \
  --url https://api.zeeg.me/v2/organizations/users \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.zeeg.me/v2/organizations/users"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.zeeg.me/v2/organizations/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeeg.me/v2/organizations/users",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.zeeg.me/v2/organizations/users"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.zeeg.me/v2/organizations/users")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.zeeg.me/v2/organizations/users")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "collection": [
    {
      "uuid": "MRJXYG8M66KLBEX",
      "isActive": true,
      "email": "lena.meier@horizondigital.de",
      "firstName": "Lena",
      "lastName": "Meier",
      "name": "Lena Meier",
      "slug": "lena-meier",
      "language": "de",
      "url": "https://zeeg.me/lena-meier",
      "avatarUrl": null,
      "timezone": "Europe/Berlin",
      "role": "owner",
      "teams": [
        {
          "uuid": "73e4761b-5257-4e83-a807-974a3f2f3adc",
          "title": "Customer Success",
          "slug": "customer-success",
          "url": "https://zeeg.me/team/customer-success"
        }
      ],
      "createdAt": "2026-01-10T09:00:00.000000Z",
      "updatedAt": "2026-04-01T08:15:00.000000Z",
      "lastLoginAt": "2026-05-28T07:42:11.000000Z"
    },
    {
      "uuid": "QK566D4X49E8X78",
      "isActive": true,
      "email": "marco.rossi@horizondigital.de",
      "firstName": "Marco",
      "lastName": "Rossi",
      "name": "Marco Rossi",
      "slug": "marco-rossi",
      "language": "en",
      "url": "https://zeeg.me/marco-rossi",
      "avatarUrl": null,
      "timezone": "Europe/Rome",
      "role": "admin",
      "teams": [
        {
          "uuid": "73e4761b-5257-4e83-a807-974a3f2f3adc",
          "title": "Customer Success",
          "slug": "customer-success",
          "url": "https://zeeg.me/team/customer-success"
        }
      ],
      "createdAt": "2026-02-05T11:30:00.000000Z",
      "updatedAt": "2026-04-01T08:15:00.000000Z",
      "lastLoginAt": null
    }
  ],
  "pagination": {
    "total": 2,
    "count": 20,
    "totalPages": 1,
    "previousPage": null,
    "currentPage": 1,
    "nextPage": null
  }
}
{
"message": "Unauthenticated."
}

Authorizations

Authorization
string
header
required

Query Parameters

per_page
integer
default:20

Number of results per page.

Required range: 1 <= x <= 100
page
integer
default:1

Page number.

Required range: x >= 1

Response

OK

collection
object[]
pagination
object
Last modified on April 29, 2026