Resources
Users | FieldCamp API
List user accounts at your FieldCamp tenant.
The users endpoint returns every user account at your tenant — team members plus admins, dispatchers, and any other role that logs in. If you only need technicians (to assign to jobs and visits), use Team instead.
Endpoints
GET
/api/usersAuthorizationBearer <token>
Pass your JWT API key as Authorization: Bearer <token>. Send
alongside X-API-Key: <token> for maximum compatibility.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/api/users"{ "success": true, "data": { "users": [ { "id": "string", "firstName": "string", "lastName": "string", "email": "user@example.com", "role": "string" } ] }}{ "success": false, "error": "Invalid or expired token"}