API referenceConnection
Find workspace users
Find assignee and owner UUIDs by email, or browse your workspace directory.
Permissions: Read access to at least one CRM resource.
Behavior and retry rules
Use email to match an address (case-insensitive, except addresses containing a literal asterisk). No match returns an empty data array. Query values must be URL encoded. Without email, results are ordered by UUID. Use limit (1–100, default 25) and offset (0–10000) and follow page.has_more. Only IDs, names and email addresses from your own workspace are returned.
GET
/usersAuthorization
bearerAuth AuthorizationBearer <token>
Create a key in Aventra → Innstillinger → API-nøkler.
In: header
Query Parameters
email?string
Format
emaillimit?integer
Range
1 <= value <= 100Default
25offset?integer
Range
0 <= value <= 10000Default
0Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/users?email=ola%40example.com" \ -H "Authorization: Bearer $AVENTRA_API_KEY"{ "data": [ { "id": "f52b3fd3-5ff4-4d93-91c5-6ac79e21cdd5", "email": "ola@example.com", "first_name": "Ola", "last_name": "Nordmann" } ], "page": { "size": 25, "offset": 0, "has_more": false }}See authentication, errors and retry guidance.