Skip to main content
GET
/
users
/
{id}
/
Get User
curl --request GET \
  --url https://data.craftflow.co/api/v1/users/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "email": "jane@example.com",
    "first_name": "Jane",
    "last_name": "Smith",
    "full_name": "Jane Smith",
    "is_active": true,
    "permissions": [
      "call_center_ai_coach",
      "call_center_ai_record"
    ],
    "created_at": "2025-06-15T14:30:00Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key, prefixed with cf_live_.

Path Parameters

id
string<uuid>
required

The unique identifier of the user.

Response

A single user.
data
object
required