Intelliview API V1

Intelliview API V1

Intelliview API uses the graphql for this API. graphql is a way to request only that data which is going to be consumed by the client applications(iOS, Web etc). Every request uses a single url for all requests.

This webpage contains only singular examples related to specific query and mutation. But it can also be used to perform multiple queries. - mutations are a way to manipulate records on the Intelliview application. - queries are a way to fetch records from the Intelliview application. Please check the detailed documentation about the argument types, queries and their responses.

Few examples of queries:

{
  properties(take: 10){
    edges{
      id
      name
    }
    pageInfo{
      hasNextPage
      currentPage
      totalCount
    }
  }
}
{
  property(id: 1){
    id,
    name
  }
}

Few examples of mutations:

mutation{
  addProperty(input:{
    name: "Calibration Date",
    type: text
  }){
    id
    name
  }
}
mutation{
  editProperty(id: 1, input:{
    name: "Calibration Date",
    type: date
  }){
    id
    name
  }
}

Complex example of requesting multiple resources in a single query:

{
  property(id: 10){
    id
    name
  }
  assetType(id: 1){
    id
    name,
    properties{
      id
      property{
        name
      }
    }
  }
}

If you want to learn more about graphql you can check the GraphQL official documentation.

Alerts 5

These functions are responsible for the creation,modifications and deletions of the Alerts in Intelliview application

AssetTypes 5

These functions are responsible for the creation,modifications and deletions of the AssetTypes in Intelliview application

Assets 5

These functions are responsible for the creation,modifications and deletions of the Assets in Intelliview application

Authentication 1

These function manage the authentication requests for the intelliview application

AvlLogs 1

Checklists 6

These functions are responsible for the creation,modifications,deletions and filling the Checklists in Intelliview application

Checkouts 7

These functions are responsible for the creation,modifications,deletions,checkin and close the Checkouts in Intelliview application

CustomReports 5

These functions are responsible for the creation,modifications and deletions of the CustomReports in Intelliview application

Locations 5

These functions are responsible for the creation,modifications,deletion of the Locations in Intelliview application

Miscellaneous 1

These functions are perform different functionality without associating to a particular module in Intelliview application

Body
KeyValueDescription
operations{"query": "mutation uploadFile ($file: Upload!, $type: FileType) {uploadFile (file: $file, type: $type) {filename path url } }","variables": {"file":null,"type":"AssetFile"} }
map{"a": ["variables.file"]}
a
variables

Orders 7

These functions are responsible for the creation,modifications,deletions,approval and receiving the Orders in Intelliview application

ParLevels 5

These functions are responsible for the creation,modifications and deletions of the ParLevels in Intelliview application

PickTickets 6

These functions are responsible for the creation,modifications,deletions,finalizing and closing the PickTicket in Intelliview application

Properties 5

These functions are responsible for the creation,modifications and deletions of the Property in Intelliview application

RunLogs 3

These functions are responsible for the creation of the RunLogs in Intelliview application

ServiceCauses 5

These functions are responsible for the creation,modifications and deletions of the ServiceCause in Intelliview application

ServiceTickets 6

These functions are responsible for the creation,modifications,deletions and closing the ServiceTickets in Intelliview application

ServiceTypes 5

These functions are responsible for the creation,modifications and deletions of the ServiceTypes in Intelliview application

ShiftLogs 3

These functions are responsible for the creation of the ShiftLogs in Intelliview application

Transactions 1

Vendors 5

These functions are responsible for the creation,modifications and deletions of the Vendors in Intelliview application

Available Variables 1

KeyValueType
url