organization Users

The organizationUsers query returns an array of UserAccounts with full pagination control with the listFilter parameter.

query organizationUsers (
    $search_terms: String
    $listFilter: ListFilter
) {
    organizationUsers (
        search_terms: $search_terms
        listFilter: $listFilter
    ) {
        id
        identifier
        email
        first_name
        last_name
        admin
        organization {
            id
            identifier
            admin
            restricted
            enabled
        }
    }
}

Keys that can be used to filter:

  • user_id
  • created_date — Example: ["2025-01-01", "2025-05-01"] (first is start, second is end date for the search)
  • type
  • email
  • phone_number
  • phone_number_country
  • first_name
  • last_name
  • address1
  • address2
  • city
  • state_province_region
  • postal_code
  • country
  • tax_number
  • business_name
  • trade_name
  • trading_symbol
  • naics_code
  • business_type
  • incorporation_date
  • users
  • state
Language
Click Try It! to start a request and see the response here!