FieldCamp
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/users

Authorization

AuthorizationBearer <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://api.fieldcamp.ai/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"
}

On this page