Account users / members

Entity responsible for getting user from a company, this is specifically used to get responsible users while importing properties or units

GraphQL Endpoint

GraphQL endpoint to perform user operations

POST https://{custom_subdomain}.everreal.co/api/reporting/graphql

Body of the request should follow GraphQL mutation structure like

mutation { mutationName(input: {MutationNameInput!}) { MutationNamePayload } }

Account user Query

To query an user from Everreal use user query

GET http://{custom_subdomain}.everreal.co/api/reporting/graphql
--header 'Authorization: Bearer eyJhbGci...'
{"query":"..."}

Below we are providing a full example how to get a user by email

query {
  users(input: { paging: { take: 10, skip: 0 }, filter: { email: "email@domain.co" } }) {
    id
    email
  }
}

Last updated