Skip to main content
Documentation

API Reference

List organization users

HTTP Reference
GET/api/org/users

Required scope: users:read

Find real user IDs in the authenticated organization for task assignment, sequence enrollment, and workflow ownership.

Updated September 13, 2026

This page documents the canonical HTTP contract for this endpoint.

Example

bash
curl -X GET 'https://app.autotouch.ai/api/org/users' \
  -H 'Authorization: Bearer <API_KEY>'

Response example

json
{
  "success": true,
  "users": [
    {
      "id": "66f100000000000000000001",
      "user_id": "66f100000000000000000001",
      "email": "rep@example.com",
      "first_name": "Alex",
      "last_name": "Rivera",
      "permissions": [
        "member"
      ]
    }
  ]
}

Docs