ToolSense GraphQL API Documentation

Queries

OTAUpdate

Response

Returns [OTAUpdate!]

Arguments
Name Description
id - [HashedId!]

Example

Query
query OTAUpdate($id: [HashedId!]) {
  OTAUpdate(id: $id) {
    id
    fileName
    versionName
    assetIntegration {
      ...AssetIntegrationFragment
    }
    assetIntegrationId
    description {
      ...TranslationFragment
    }
    descriptionId
    created
    updated
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "OTAUpdate": [
      {
        "id": HashedId,
        "fileName": "abc123",
        "versionName": "xyz789",
        "assetIntegration": AssetIntegration,
        "assetIntegrationId": HashedId,
        "description": Translation,
        "descriptionId": HashedId,
        "created": 1592577642,
        "updated": 1592577642
      }
    ]
  }
}

allowedDocumentFileTypes

Response

Returns [String!]!

Example

Query
query allowedDocumentFileTypes {
  allowedDocumentFileTypes
}
Response
{
  "data": {
    "allowedDocumentFileTypes": ["abc123"]
  }
}

asset

Response

Returns [Asset!]

Arguments
Name Description
id - [HashedId!]
status - [String!]
serial - [String!]
make - [String!]
imei - [String!]
historicalParameters - Boolean
exceptForReservationId - HashedId
externalId - [String!]
partsNumber - [String!]
availableBetween - [Timestamp!] Filter assets based on reservation avaiability. Has to contain two timestamps, from and until

Example

Query
query asset(
  $id: [HashedId!],
  $status: [String!],
  $serial: [String!],
  $make: [String!],
  $imei: [String!],
  $historicalParameters: Boolean,
  $exceptForReservationId: HashedId,
  $externalId: [String!],
  $partsNumber: [String!],
  $availableBetween: [Timestamp!]
) {
  asset(
    id: $id,
    status: $status,
    serial: $serial,
    make: $make,
    imei: $imei,
    historicalParameters: $historicalParameters,
    exceptForReservationId: $exceptForReservationId,
    externalId: $externalId,
    partsNumber: $partsNumber,
    availableBetween: $availableBetween
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "status": ["abc123"],
  "serial": ["xyz789"],
  "make": ["abc123"],
  "imei": ["xyz789"],
  "historicalParameters": false,
  "exceptForReservationId": HashedId,
  "externalId": ["abc123"],
  "partsNumber": ["abc123"],
  "availableBetween": [1592577642]
}
Response
{
  "data": {
    "asset": [
      {
        "publicId": 123,
        "isCommodity": true,
        "moduleId": HashedId,
        "assignedToGroupId": HashedId,
        "allowReservations": true,
        "assetCategoryId": HashedId,
        "assetTypeId": HashedId,
        "assignment": "xyz789",
        "availabilityId": HashedId,
        "BLE": "xyz789",
        "client": "xyz789",
        "commissionDate": "2007-12-03",
        "costCenter": "abc123",
        "created": 1592577642,
        "createdByGroupId": HashedId,
        "currency": "abc123",
        "customer": "xyz789",
        "customerEditable": false,
        "descriptionId": HashedId,
        "externalId": "xyz789",
        "fixedAssetNumber": "abc123",
        "floorRoom": "abc123",
        "image": "abc123",
        "initialValue": "abc123",
        "inventoryNumber": "abc123",
        "isInStationaryGateway": true,
        "isLocked": false,
        "leasingCostTermination": "xyz789",
        "leasingEnd": "2007-12-03",
        "leasingLevel": "xyz789",
        "leasingMonthlyCost": "xyz789",
        "leasingPartner": "abc123",
        "leasingPartnerContractNumber": "abc123",
        "leasingPartnerContractPositionNumber": "abc123",
        "leasingRenewalDate": "2007-12-03",
        "leasingRenewalRate": "xyz789",
        "leasingStart": "2007-12-03",
        "manufacturerId": HashedId,
        "optionalAssetID": "xyz789",
        "ownershipId": HashedId,
        "partsNumber": "abc123",
        "previousSiteId": HashedId,
        "projectNumber": "abc123",
        "purchaseCost": "xyz789",
        "purchaseDepriciation": 123,
        "purchaseInvoiceNumber": "xyz789",
        "purchaseLowValueAsset": false,
        "purchaseStart": "2007-12-03",
        "purchaseWarrantyEnd": "2007-12-03",
        "purchaseWarrantyPeriod": 987,
        "purchaseWarrantyStart": "2007-12-03",
        "qrAttached": false,
        "quantity": 123,
        "rentalCostTermination": "abc123",
        "rentalEnd": "2007-12-03",
        "rentalMonthlyCost": "xyz789",
        "rentalRenewalDate": "2007-12-03",
        "rentalRenewalRate": "abc123",
        "rentalStart": "2007-12-03",
        "responsiblePerson": "xyz789",
        "runtimeWithOffsetInSeconds": 987,
        "serial": "abc123",
        "serviceContract": true,
        "serviceContractCostPerYear": "abc123",
        "serviceContractEmail": "abc123",
        "serviceContractEnd": "2007-12-03",
        "serviceContractFrom": 1592577642,
        "serviceContractLevel": "xyz789",
        "serviceContractPartner": "xyz789",
        "serviceContractStart": "2007-12-03",
        "serviceContractTo": 1592577642,
        "siteId": HashedId,
        "assignedToSiteId": HashedId,
        "supplier": "xyz789",
        "updated": 1592577642,
        "uuid": "abc123",
        "id": HashedId,
        "stateV2": [AssetStateItem],
        "state": AssetState,
        "serviceContractDocuments": [Document],
        "availability": "READY_TO_USE",
        "ownership": "PURCHASE",
        "module": Module,
        "scanTime": "2007-12-03",
        "imei": "abc123",
        "costsSum": 123.45,
        "costsSumBattery": 123.45,
        "costsSumRepair": 123.45,
        "costsSumMaintenance": 987.65,
        "costsSumParts": 123.45,
        "costsSumConsumables": 987.65,
        "costsSumFuel": 987.65,
        "costsSumLabor": 987.65,
        "costsSumLogistics": 123.45,
        "costsSumTaxes": 123.45,
        "costsSumOther": 987.65,
        "costsSumCertification": 123.45,
        "parameterOffsetIds": [HashedId],
        "reservationIds": [HashedId],
        "moduleConnectionStatus": "primary",
        "relatedGroups": [RelatedGroup],
        "checkScheduleRule": AssetCheckScheduleRule,
        "tickets": [Ticket],
        "lastTicketDate": "2007-12-03T10:15:30Z",
        "totalUtilization": "abc123",
        "totalWorkDone": "xyz789",
        "purchaseCurrentBookValue": "abc123",
        "batteryLevel": "abc123",
        "lastContacted": 1592577642,
        "vncTunnelUrl": "xyz789",
        "subscription": "abc123",
        "ticketsCount": "abc123",
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "gatewayAsset": Asset,
        "services": [Service],
        "primaryServicePackage": ServicePackageWithSourceType,
        "eventIds": [HashedId],
        "nextService": 987,
        "downloadLink": "xyz789",
        "activity": AssetActivity,
        "latestAssetData": {},
        "location": Location,
        "parameterSets": [ParameterSet],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "status": [StatusItem],
        "displayParameters": [DisplayParameter],
        "latestTrip": AssetTripLatest,
        "unavailability": [AssetUnavailability],
        "reservations": [Reservation],
        "parameterOffsets": [AssetParameterOffset],
        "costs": [Cost],
        "manufacturer": Manufacturer,
        "createdByGroup": Group,
        "assetType": AssetType,
        "assetCategory": AssetCategory,
        "assignedToGroup": Group,
        "site": Site,
        "assignedToSite": Site,
        "assignedToPreviousSite": Site,
        "documents": [Document],
        "events": [Event],
        "description": Translation,
        "checkSchedule": AssetCheckSchedule,
        "maintenanceSchedule": AssetMaintenanceSchedule,
        "workOrders": [WorkOrderV2]
      }
    ]
  }
}

assetActivityDetails

Response

Returns a JSON

Arguments
Name Description
assetDataId - HashedId!
parameterSetId - HashedId
savedName - String
from - Timestamp
to - Timestamp

Example

Query
query assetActivityDetails(
  $assetDataId: HashedId!,
  $parameterSetId: HashedId,
  $savedName: String,
  $from: Timestamp,
  $to: Timestamp
) {
  assetActivityDetails(
    assetDataId: $assetDataId,
    parameterSetId: $parameterSetId,
    savedName: $savedName,
    from: $from,
    to: $to
  )
}
Variables
{
  "assetDataId": HashedId,
  "parameterSetId": HashedId,
  "savedName": "abc123",
  "from": 1592577642,
  "to": 1592577642
}
Response
{"data": {"assetActivityDetails": {}}}

assetActivityLog

Response

Returns a String

Arguments
Name Description
assetId - HashedId!
parameterId - [HashedId!]!
from - Timestamp
to - Timestamp

Example

Query
query assetActivityLog(
  $assetId: HashedId!,
  $parameterId: [HashedId!]!,
  $from: Timestamp,
  $to: Timestamp
) {
  assetActivityLog(
    assetId: $assetId,
    parameterId: $parameterId,
    from: $from,
    to: $to
  )
}
Variables
{
  "assetId": HashedId,
  "parameterId": [HashedId],
  "from": 1592577642,
  "to": 1592577642
}
Response
{"data": {"assetActivityLog": "abc123"}}

assetBLEChecker

Response

Returns an AssetBLEChecker

Arguments
Name Description
assetId - HashedId
BLE - String

Example

Query
query assetBLEChecker(
  $assetId: HashedId,
  $BLE: String
) {
  assetBLEChecker(
    assetId: $assetId,
    BLE: $BLE
  ) {
    msg
    duplicateAsset {
      ...AssetFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "BLE": "abc123"
}
Response
{
  "data": {
    "assetBLEChecker": {
      "msg": "abc123",
      "duplicateAsset": Asset
    }
  }
}

assetCategoriesPaginated

Response

Returns an AssetCategoryPaginatedDto!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query assetCategoriesPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  assetCategoriesPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    rows {
      ...AssetCategoryFragment
    }
    meta {
      ...PaginationMetaFragment
    }
    total
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "assetCategoriesPaginated": {
      "rows": [AssetCategory],
      "meta": PaginationMeta,
      "total": 123
    }
  }
}

assetCategory

Response

Returns [AssetCategory!]

Arguments
Name Description
id - [HashedId]

Example

Query
query assetCategory($id: [HashedId]) {
  assetCategory(id: $id) {
    id
    created
    updated
    image
    externalId
    forManufacturerId
    groupId
    servicePackageId
    isPrivate
    publicId
    nameId
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnitsPerHour
    workUnitId
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    workUnits {
      ...TranslationFragment
    }
    assetsCount
    servicePackage {
      ...ServicePackageFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "assetCategory": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "image": "abc123",
        "externalId": "xyz789",
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "isPrivate": true,
        "publicId": 123,
        "nameId": HashedId,
        "minimalBatteryVoltage": 987.65,
        "nominalBatteryVoltage": 987.65,
        "optimalBatteryVoltage": 987.65,
        "optimalRuntime": 987.65,
        "parentParameterKey": "runtime",
        "workUnitsPerHour": 987.65,
        "workUnitId": HashedId,
        "name": Translation,
        "group": Group,
        "manufacturer": Manufacturer,
        "workUnits": Translation,
        "assetsCount": 987,
        "servicePackage": ServicePackage,
        "forManufacturer": Manufacturer
      }
    ]
  }
}

assetCategoryById

Response

Returns an AssetCategory

Arguments
Name Description
id - HashedId!

Example

Query
query assetCategoryById($id: HashedId!) {
  assetCategoryById(id: $id) {
    id
    created
    updated
    image
    externalId
    forManufacturerId
    groupId
    servicePackageId
    isPrivate
    publicId
    nameId
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnitsPerHour
    workUnitId
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    workUnits {
      ...TranslationFragment
    }
    assetsCount
    servicePackage {
      ...ServicePackageFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "assetCategoryById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "image": "xyz789",
      "externalId": "abc123",
      "forManufacturerId": HashedId,
      "groupId": HashedId,
      "servicePackageId": HashedId,
      "isPrivate": false,
      "publicId": 123,
      "nameId": HashedId,
      "minimalBatteryVoltage": 987.65,
      "nominalBatteryVoltage": 123.45,
      "optimalBatteryVoltage": 987.65,
      "optimalRuntime": 987.65,
      "parentParameterKey": "runtime",
      "workUnitsPerHour": 123.45,
      "workUnitId": HashedId,
      "name": Translation,
      "group": Group,
      "manufacturer": Manufacturer,
      "workUnits": Translation,
      "assetsCount": 123,
      "servicePackage": ServicePackage,
      "forManufacturer": Manufacturer
    }
  }
}

assetCounterByEventStatus

Description

get assets count with active events respect to provided event styles (e.g ERROR, WARNING etc.) if not event style is provided then all events are counted

Response

Returns [EventStatusCounter!]!

Arguments
Name Description
eventStyles - [String!]

Example

Query
query assetCounterByEventStatus($eventStyles: [String!]) {
  assetCounterByEventStatus(eventStyles: $eventStyles) {
    style
    ongoing {
      ...EventStateCounterFragment
    }
    notOngoing {
      ...EventStateCounterFragment
    }
  }
}
Variables
{"eventStyles": ["xyz789"]}
Response
{
  "data": {
    "assetCounterByEventStatus": [
      {
        "style": "ERROR",
        "ongoing": EventStateCounter,
        "notOngoing": EventStateCounter
      }
    ]
  }
}

assetEventsPaginated

Response

Returns an AssetEventPaginatedDto!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query assetEventsPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  assetEventsPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    rows {
      ...EventFragment
    }
    meta {
      ...PaginationMetaFragment
    }
    total
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "assetEventsPaginated": {
      "rows": [Event],
      "meta": PaginationMeta,
      "total": 123
    }
  }
}

assetFilterStats

Response

Returns an AssetFilterStats

Example

Query
query assetFilterStats {
  assetFilterStats {
    rentalEnd {
      ...AssetFilterPeriodFilterFragment
    }
    rentalRemainingMonths
    leasingRemainingMonths
    leasingEnd {
      ...AssetFilterPeriodFilterFragment
    }
    serviceContractRemainingMonths
  }
}
Response
{
  "data": {
    "assetFilterStats": {
      "rentalEnd": [AssetFilterPeriodFilter],
      "rentalRemainingMonths": ["abc123"],
      "leasingRemainingMonths": ["xyz789"],
      "leasingEnd": [AssetFilterPeriodFilter],
      "serviceContractRemainingMonths": [
        "abc123"
      ]
    }
  }
}

assetFilters

Don't use!
Response

Returns an AssetFilter

Arguments
Name Description
id - [HashedId!]

Example

Query
query assetFilters($id: [HashedId!]) {
  assetFilters(id: $id) {
    size
    assets {
      ...AssetFragment
    }
    created {
      ...TemporalFilterFragment
    }
    sentData {
      ...TemporalFilterFragment
    }
    valueSliceById {
      ...AssetFilterFragment
    }
    valueSliceByValue {
      ...AssetFilterFragment
    }
    valueSlices {
      ...StatisticValueSliceFragment
    }
    rangeSlice {
      ...AssetFilterFragment
    }
    usingPeriod {
      ...AssetFilterFragment
    }
    withEvents {
      ...EventFilterFragment
    }
    withoutEvents {
      ...AssetFilterFragment
    }
    runtime {
      ...AssetFilterRangesFragment
    }
    maintenancePriority {
      ...AssetFilterRangesFragment
    }
    rangeValues {
      ...AssetFilterRangesFragment
    }
    reservations {
      ...ReservationEndFragment
    }
    services {
      ...AssetFilterFragment
    }
    signalOnline {
      ...AssetFilterFragment
    }
    weakSignal {
      ...AssetFilterFragment
    }
    noSignalDay {
      ...AssetFilterFragment
    }
    noSignalWeek {
      ...AssetFilterFragment
    }
    spreadsheet
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "assetFilters": {
      "size": 987,
      "assets": [Asset],
      "created": TemporalFilter,
      "sentData": TemporalFilter,
      "valueSliceById": AssetFilter,
      "valueSliceByValue": AssetFilter,
      "valueSlices": [StatisticValueSlice],
      "rangeSlice": AssetFilter,
      "usingPeriod": AssetFilter,
      "withEvents": [EventFilter],
      "withoutEvents": AssetFilter,
      "runtime": [AssetFilterRanges],
      "maintenancePriority": [AssetFilterRanges],
      "rangeValues": [AssetFilterRanges],
      "reservations": ReservationEnd,
      "services": AssetFilter,
      "signalOnline": AssetFilter,
      "weakSignal": AssetFilter,
      "noSignalDay": AssetFilter,
      "noSignalWeek": AssetFilter,
      "spreadsheet": true
    }
  }
}

assetIntegration

Query will be removed. Use findAssetIntegrationById and findAssetIntegrationByName instead
Response

Returns [AssetIntegration!]!

Arguments
Name Description
id - [HashedId!]
name - String

Example

Query
query assetIntegration(
  $id: [HashedId!],
  $name: String
) {
  assetIntegration(
    id: $id,
    name: $name
  ) {
    id
    created
    updated
    name
    manufacturerId
    assetCategoryId
    assetCategory {
      ...AssetCategoryFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "name": "xyz789"
}
Response
{
  "data": {
    "assetIntegration": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "manufacturerId": HashedId,
        "assetCategoryId": HashedId,
        "assetCategory": AssetCategory,
        "manufacturer": Manufacturer
      }
    ]
  }
}

assetList

Response

Returns a PaginatedAssets

Arguments
Name Description
id - [HashedId!]
status - [String!]
serial - [String!]
make - [String!]
imei - [String!]
pagination - PaginationParams
externalId - [String!] External id should only be filled by a machine. This is used to couple an external asset with an internal asset. An external Asset is an asset that represents the same physical thing but in a different system.
partsNumber - [String!] Specific identifier of a certain part of an asset
historicalParameters - Boolean
exceptForReservationId - HashedId
availableBetween - [Timestamp!] Filter assets based on reservation avaiability. Has to contain two timestamps, from and until
first - Int Only return the first [n] results
offset - Int Offset for pagination (page [n])
filter - AssetFilterInput
extraId - HashedId @deprecated If this argument is present the returned list can have 1 more asset than requested It will be used until the web app will be updated so the panes are decoupled from the list

Example

Query
query assetList(
  $id: [HashedId!],
  $status: [String!],
  $serial: [String!],
  $make: [String!],
  $imei: [String!],
  $pagination: PaginationParams,
  $externalId: [String!],
  $partsNumber: [String!],
  $historicalParameters: Boolean,
  $exceptForReservationId: HashedId,
  $availableBetween: [Timestamp!],
  $first: Int,
  $offset: Int,
  $filter: AssetFilterInput,
  $extraId: HashedId
) {
  assetList(
    id: $id,
    status: $status,
    serial: $serial,
    make: $make,
    imei: $imei,
    pagination: $pagination,
    externalId: $externalId,
    partsNumber: $partsNumber,
    historicalParameters: $historicalParameters,
    exceptForReservationId: $exceptForReservationId,
    availableBetween: $availableBetween,
    first: $first,
    offset: $offset,
    filter: $filter,
    extraId: $extraId
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...AssetFragment
    }
    total
    assets {
      ...AssetFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "status": ["abc123"],
  "serial": ["xyz789"],
  "make": ["xyz789"],
  "imei": ["abc123"],
  "pagination": PaginationParams,
  "externalId": ["xyz789"],
  "partsNumber": ["xyz789"],
  "historicalParameters": true,
  "exceptForReservationId": HashedId,
  "availableBetween": [1592577642],
  "first": 987,
  "offset": 123,
  "filter": AssetFilterInput,
  "extraId": HashedId
}
Response
{
  "data": {
    "assetList": {
      "meta": PaginationMeta,
      "rows": [Asset],
      "total": 123,
      "assets": [Asset]
    }
  }
}

assetListExport

Always returns null! Load the asset list and generate your own file
Description

Generate an AssetListExport for these parameters. The export type has parameters that allow for filtering the list based on predetermined parameters

locale: Language and timezone for all the spreadsheets generated by this list. styles: Cell styling information for all the spreadsheets generated by this list.

Response

Returns an AssetListExport

Arguments
Name Description
locale - ExcelDownloadLocaleInput!
styles - ExcelDownloadStylesInput

Example

Query
query assetListExport(
  $locale: ExcelDownloadLocaleInput!,
  $styles: ExcelDownloadStylesInput
) {
  assetListExport(
    locale: $locale,
    styles: $styles
  ) {
    all
    created
    lastContacted
    type
    category
    assetId
    parameterRange
    periodBoxedParameterRange
    parameterValue
    reservationsEnd
  }
}
Variables
{
  "locale": ExcelDownloadLocaleInput,
  "styles": ExcelDownloadStylesInput
}
Response
{
  "data": {
    "assetListExport": {
      "all": "abc123",
      "created": "xyz789",
      "lastContacted": "xyz789",
      "type": "xyz789",
      "category": "xyz789",
      "assetId": "abc123",
      "parameterRange": "abc123",
      "periodBoxedParameterRange": "abc123",
      "parameterValue": "abc123",
      "reservationsEnd": "xyz789"
    }
  }
}

assetLocationHistory

Description

Might be deprecated! Endpoint to get historical location in Location type format.

Response

Returns [Location!]!

Arguments
Name Description
assetId - HashedId!
from - Timestamp Can be used in conjunction with to - defines start for query range
to - Timestamp Can be used in conjunction with from - defines end for query range
closest - Timestamp Results in a single dataset closest to the given date, ignoring properties from and to

Example

Query
query assetLocationHistory(
  $assetId: HashedId!,
  $from: Timestamp,
  $to: Timestamp,
  $closest: Timestamp
) {
  assetLocationHistory(
    assetId: $assetId,
    from: $from,
    to: $to,
    closest: $closest
  ) {
    id
    longitude
    latitude
    uncertainty
    timestamp
    status
    gatewayAsset {
      ...AssetFragment
    }
    locationSource
  }
}
Variables
{
  "assetId": HashedId,
  "from": 1592577642,
  "to": 1592577642,
  "closest": 1592577642
}
Response
{
  "data": {
    "assetLocationHistory": [
      {
        "id": HashedId,
        "longitude": "abc123",
        "latitude": "abc123",
        "uncertainty": 987.65,
        "timestamp": 1592577642,
        "status": "NORMAL",
        "gatewayAsset": Asset,
        "locationSource": "GPS"
      }
    ]
  }
}

assetLocationHistoryDates

Description

Might be deprecated! Endpoint to get a list of dates containing location data in an array of Y-c-d strings

Response

Returns [String!]!

Arguments
Name Description
assetId - HashedId!
tz - String

Example

Query
query assetLocationHistoryDates(
  $assetId: HashedId!,
  $tz: String
) {
  assetLocationHistoryDates(
    assetId: $assetId,
    tz: $tz
  )
}
Variables
{
  "assetId": HashedId,
  "tz": "abc123"
}
Response
{
  "data": {
    "assetLocationHistoryDates": ["abc123"]
  }
}

assetRequest

Response

Returns [AssetRequest!]!

Arguments
Name Description
id - [HashedId!]
byRegistrationRequestId - [HashedId!]

Example

Query
query assetRequest(
  $id: [HashedId!],
  $byRegistrationRequestId: [HashedId!]
) {
  assetRequest(
    id: $id,
    byRegistrationRequestId: $byRegistrationRequestId
  ) {
    id
    created
    updated
    serial
    assetId
    forGroupId
    verificationDocumentId
    isProcessed
    byRegistrationRequestId
    requestedByUserId
    requestedByGroupId
    processedByUserId
    isDenied
    denialMessage
    permalinkUrl
    asset {
      ...AssetFragment
    }
    forGroup {
      ...GroupFragment
    }
    verificationDocument {
      ...DocumentFragment
    }
    requestedByUser {
      ...UserFragment
    }
    requestedByGroup {
      ...GroupFragment
    }
    processedByUser {
      ...UserFragment
    }
    byRegistrationRequest {
      ...RegistrationRequestFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "byRegistrationRequestId": [HashedId]
}
Response
{
  "data": {
    "assetRequest": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "serial": "xyz789",
        "assetId": HashedId,
        "forGroupId": HashedId,
        "verificationDocumentId": HashedId,
        "isProcessed": true,
        "byRegistrationRequestId": HashedId,
        "requestedByUserId": HashedId,
        "requestedByGroupId": HashedId,
        "processedByUserId": HashedId,
        "isDenied": true,
        "denialMessage": "xyz789",
        "permalinkUrl": "xyz789",
        "asset": Asset,
        "forGroup": Group,
        "verificationDocument": Document,
        "requestedByUser": User,
        "requestedByGroup": Group,
        "processedByUser": User,
        "byRegistrationRequest": RegistrationRequest
      }
    ]
  }
}

assetType

Use assetTypesPaginated query instead. Logic is not based on access.getWhereOptionsForUse
Response

Returns [AssetType!]

Arguments
Name Description
id - [HashedId!]
name - String

Example

Query
query assetType(
  $id: [HashedId!],
  $name: String
) {
  assetType(
    id: $id,
    name: $name
  ) {
    id
    created
    updated
    forManufacturerId
    groupId
    servicePackageId
    hasAssortmentList
    externalId
    image
    inAssetCategoryId
    inAssetIntegrationId
    isApprovedAssetType
    isPrivate
    isVehicle
    isRoom
    make
    publicId
    nameId
    restrictedType
    preset
    presetInitialValue
    presetLeasingCostTermination
    presetLeasingLevel
    presetLeasingMonthlyCost
    presetLeasingPartner
    presetLeasingPartnerContractNumber
    presetLeasingPartnerContractPositionNumber
    presetLeasingRenewalRate
    presetLowValueAsset
    presetMachineCheckInterval
    presetMachineCheckLastCreated
    presetMachineCheckName
    presetOwnership
    presetPurchaseCost
    presetPurchaseDepriciation
    presetRentalCostTermination
    presetRentalMonthlyCost
    presetRentalRenewalRate
    presetServiceContractCostPerYear
    presetServiceContractEmail
    presetServiceContractLevel
    presetServiceContractPartner
    presetSupplier
    presetWarrantyPeriod
    isLockable
    isLockedState
    lockAssetTypeId
    hasVNC
    isPollingAvailable
    name {
      ...TranslationFragment
    }
    documents {
      ...DocumentFragment
    }
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnits {
      ...TranslationFragment
    }
    workUnitsPerHour
    workUnitId
    inAssetCategory {
      ...AssetCategoryFragment
    }
    group {
      ...GroupFragment
    }
    inAssetIntegration {
      ...AssetIntegrationFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
    namespace
    assetsCount
    userManual
    suggestedServicePartner
    suggestedPartner {
      ...AvailableHandlerFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    lockAssetType {
      ...AssetTypeFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "name": "xyz789"
}
Response
{
  "data": {
    "assetType": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "hasAssortmentList": true,
        "externalId": "abc123",
        "image": "xyz789",
        "inAssetCategoryId": HashedId,
        "inAssetIntegrationId": HashedId,
        "isApprovedAssetType": true,
        "isPrivate": true,
        "isVehicle": false,
        "isRoom": false,
        "make": "xyz789",
        "publicId": 987,
        "nameId": HashedId,
        "restrictedType": true,
        "preset": true,
        "presetInitialValue": "abc123",
        "presetLeasingCostTermination": "xyz789",
        "presetLeasingLevel": "xyz789",
        "presetLeasingMonthlyCost": "xyz789",
        "presetLeasingPartner": "abc123",
        "presetLeasingPartnerContractNumber": "xyz789",
        "presetLeasingPartnerContractPositionNumber": "xyz789",
        "presetLeasingRenewalRate": "xyz789",
        "presetLowValueAsset": true,
        "presetMachineCheckInterval": 987,
        "presetMachineCheckLastCreated": true,
        "presetMachineCheckName": "abc123",
        "presetOwnership": "PURCHASE",
        "presetPurchaseCost": "xyz789",
        "presetPurchaseDepriciation": 123,
        "presetRentalCostTermination": "abc123",
        "presetRentalMonthlyCost": "abc123",
        "presetRentalRenewalRate": "abc123",
        "presetServiceContractCostPerYear": "abc123",
        "presetServiceContractEmail": "xyz789",
        "presetServiceContractLevel": "xyz789",
        "presetServiceContractPartner": "abc123",
        "presetSupplier": "xyz789",
        "presetWarrantyPeriod": 123,
        "isLockable": true,
        "isLockedState": true,
        "lockAssetTypeId": HashedId,
        "hasVNC": false,
        "isPollingAvailable": true,
        "name": Translation,
        "documents": [Document],
        "minimalBatteryVoltage": 123.45,
        "nominalBatteryVoltage": 123.45,
        "optimalBatteryVoltage": 987.65,
        "optimalRuntime": 987.65,
        "parentParameterKey": "runtime",
        "workUnits": Translation,
        "workUnitsPerHour": 987.65,
        "workUnitId": HashedId,
        "inAssetCategory": AssetCategory,
        "group": Group,
        "inAssetIntegration": AssetIntegration,
        "forManufacturer": Manufacturer,
        "namespace": "xyz789",
        "assetsCount": 987,
        "userManual": "abc123",
        "suggestedServicePartner": "abc123",
        "suggestedPartner": AvailableHandler,
        "servicePackage": ServicePackage,
        "lockAssetType": AssetType
      }
    ]
  }
}

assetTypeById

Response

Returns an AssetType

Arguments
Name Description
id - HashedId!

Example

Query
query assetTypeById($id: HashedId!) {
  assetTypeById(id: $id) {
    id
    created
    updated
    forManufacturerId
    groupId
    servicePackageId
    hasAssortmentList
    externalId
    image
    inAssetCategoryId
    inAssetIntegrationId
    isApprovedAssetType
    isPrivate
    isVehicle
    isRoom
    make
    publicId
    nameId
    restrictedType
    preset
    presetInitialValue
    presetLeasingCostTermination
    presetLeasingLevel
    presetLeasingMonthlyCost
    presetLeasingPartner
    presetLeasingPartnerContractNumber
    presetLeasingPartnerContractPositionNumber
    presetLeasingRenewalRate
    presetLowValueAsset
    presetMachineCheckInterval
    presetMachineCheckLastCreated
    presetMachineCheckName
    presetOwnership
    presetPurchaseCost
    presetPurchaseDepriciation
    presetRentalCostTermination
    presetRentalMonthlyCost
    presetRentalRenewalRate
    presetServiceContractCostPerYear
    presetServiceContractEmail
    presetServiceContractLevel
    presetServiceContractPartner
    presetSupplier
    presetWarrantyPeriod
    isLockable
    isLockedState
    lockAssetTypeId
    hasVNC
    isPollingAvailable
    name {
      ...TranslationFragment
    }
    documents {
      ...DocumentFragment
    }
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnits {
      ...TranslationFragment
    }
    workUnitsPerHour
    workUnitId
    inAssetCategory {
      ...AssetCategoryFragment
    }
    group {
      ...GroupFragment
    }
    inAssetIntegration {
      ...AssetIntegrationFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
    namespace
    assetsCount
    userManual
    suggestedServicePartner
    suggestedPartner {
      ...AvailableHandlerFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    lockAssetType {
      ...AssetTypeFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "assetTypeById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "forManufacturerId": HashedId,
      "groupId": HashedId,
      "servicePackageId": HashedId,
      "hasAssortmentList": false,
      "externalId": "xyz789",
      "image": "abc123",
      "inAssetCategoryId": HashedId,
      "inAssetIntegrationId": HashedId,
      "isApprovedAssetType": false,
      "isPrivate": true,
      "isVehicle": false,
      "isRoom": true,
      "make": "abc123",
      "publicId": 123,
      "nameId": HashedId,
      "restrictedType": false,
      "preset": true,
      "presetInitialValue": "xyz789",
      "presetLeasingCostTermination": "xyz789",
      "presetLeasingLevel": "xyz789",
      "presetLeasingMonthlyCost": "abc123",
      "presetLeasingPartner": "abc123",
      "presetLeasingPartnerContractNumber": "abc123",
      "presetLeasingPartnerContractPositionNumber": "abc123",
      "presetLeasingRenewalRate": "xyz789",
      "presetLowValueAsset": false,
      "presetMachineCheckInterval": 987,
      "presetMachineCheckLastCreated": true,
      "presetMachineCheckName": "xyz789",
      "presetOwnership": "PURCHASE",
      "presetPurchaseCost": "abc123",
      "presetPurchaseDepriciation": 987,
      "presetRentalCostTermination": "xyz789",
      "presetRentalMonthlyCost": "abc123",
      "presetRentalRenewalRate": "xyz789",
      "presetServiceContractCostPerYear": "xyz789",
      "presetServiceContractEmail": "xyz789",
      "presetServiceContractLevel": "xyz789",
      "presetServiceContractPartner": "abc123",
      "presetSupplier": "xyz789",
      "presetWarrantyPeriod": 123,
      "isLockable": false,
      "isLockedState": true,
      "lockAssetTypeId": HashedId,
      "hasVNC": false,
      "isPollingAvailable": true,
      "name": Translation,
      "documents": [Document],
      "minimalBatteryVoltage": 987.65,
      "nominalBatteryVoltage": 987.65,
      "optimalBatteryVoltage": 987.65,
      "optimalRuntime": 987.65,
      "parentParameterKey": "runtime",
      "workUnits": Translation,
      "workUnitsPerHour": 987.65,
      "workUnitId": HashedId,
      "inAssetCategory": AssetCategory,
      "group": Group,
      "inAssetIntegration": AssetIntegration,
      "forManufacturer": Manufacturer,
      "namespace": "abc123",
      "assetsCount": 123,
      "userManual": "abc123",
      "suggestedServicePartner": "xyz789",
      "suggestedPartner": AvailableHandler,
      "servicePackage": ServicePackage,
      "lockAssetType": AssetType
    }
  }
}

assetTypesDiscoverable

Response

Returns an AssetTypePaginatedDto!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query assetTypesDiscoverable(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  assetTypesDiscoverable(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    rows {
      ...AssetTypeFragment
    }
    meta {
      ...PaginationMetaFragment
    }
    total
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "assetTypesDiscoverable": {
      "rows": [AssetType],
      "meta": PaginationMeta,
      "total": 987
    }
  }
}

assetTypesPaginated

Response

Returns an AssetTypePaginatedDto!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query assetTypesPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  assetTypesPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    rows {
      ...AssetTypeFragment
    }
    meta {
      ...PaginationMetaFragment
    }
    total
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "assetTypesPaginated": {
      "rows": [AssetType],
      "meta": PaginationMeta,
      "total": 123
    }
  }
}

assetV2

Response

Returns an Asset

Arguments
Name Description
id - HashedId!

Example

Query
query assetV2($id: HashedId!) {
  assetV2(id: $id) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "assetV2": {
      "publicId": 987,
      "isCommodity": true,
      "moduleId": HashedId,
      "assignedToGroupId": HashedId,
      "allowReservations": true,
      "assetCategoryId": HashedId,
      "assetTypeId": HashedId,
      "assignment": "xyz789",
      "availabilityId": HashedId,
      "BLE": "abc123",
      "client": "xyz789",
      "commissionDate": "2007-12-03",
      "costCenter": "abc123",
      "created": 1592577642,
      "createdByGroupId": HashedId,
      "currency": "xyz789",
      "customer": "abc123",
      "customerEditable": true,
      "descriptionId": HashedId,
      "externalId": "abc123",
      "fixedAssetNumber": "abc123",
      "floorRoom": "abc123",
      "image": "xyz789",
      "initialValue": "xyz789",
      "inventoryNumber": "xyz789",
      "isInStationaryGateway": false,
      "isLocked": true,
      "leasingCostTermination": "abc123",
      "leasingEnd": "2007-12-03",
      "leasingLevel": "abc123",
      "leasingMonthlyCost": "xyz789",
      "leasingPartner": "abc123",
      "leasingPartnerContractNumber": "xyz789",
      "leasingPartnerContractPositionNumber": "abc123",
      "leasingRenewalDate": "2007-12-03",
      "leasingRenewalRate": "abc123",
      "leasingStart": "2007-12-03",
      "manufacturerId": HashedId,
      "optionalAssetID": "xyz789",
      "ownershipId": HashedId,
      "partsNumber": "abc123",
      "previousSiteId": HashedId,
      "projectNumber": "xyz789",
      "purchaseCost": "xyz789",
      "purchaseDepriciation": 987,
      "purchaseInvoiceNumber": "xyz789",
      "purchaseLowValueAsset": false,
      "purchaseStart": "2007-12-03",
      "purchaseWarrantyEnd": "2007-12-03",
      "purchaseWarrantyPeriod": 987,
      "purchaseWarrantyStart": "2007-12-03",
      "qrAttached": false,
      "quantity": 987,
      "rentalCostTermination": "abc123",
      "rentalEnd": "2007-12-03",
      "rentalMonthlyCost": "abc123",
      "rentalRenewalDate": "2007-12-03",
      "rentalRenewalRate": "xyz789",
      "rentalStart": "2007-12-03",
      "responsiblePerson": "xyz789",
      "runtimeWithOffsetInSeconds": 987,
      "serial": "xyz789",
      "serviceContract": false,
      "serviceContractCostPerYear": "xyz789",
      "serviceContractEmail": "xyz789",
      "serviceContractEnd": "2007-12-03",
      "serviceContractFrom": 1592577642,
      "serviceContractLevel": "xyz789",
      "serviceContractPartner": "xyz789",
      "serviceContractStart": "2007-12-03",
      "serviceContractTo": 1592577642,
      "siteId": HashedId,
      "assignedToSiteId": HashedId,
      "supplier": "xyz789",
      "updated": 1592577642,
      "uuid": "xyz789",
      "id": HashedId,
      "stateV2": [AssetStateItem],
      "state": AssetState,
      "serviceContractDocuments": [Document],
      "availability": "READY_TO_USE",
      "ownership": "PURCHASE",
      "module": Module,
      "scanTime": "2007-12-03",
      "imei": "xyz789",
      "costsSum": 987.65,
      "costsSumBattery": 123.45,
      "costsSumRepair": 987.65,
      "costsSumMaintenance": 123.45,
      "costsSumParts": 987.65,
      "costsSumConsumables": 123.45,
      "costsSumFuel": 987.65,
      "costsSumLabor": 987.65,
      "costsSumLogistics": 987.65,
      "costsSumTaxes": 123.45,
      "costsSumOther": 123.45,
      "costsSumCertification": 123.45,
      "parameterOffsetIds": [HashedId],
      "reservationIds": [HashedId],
      "moduleConnectionStatus": "primary",
      "relatedGroups": [RelatedGroup],
      "checkScheduleRule": AssetCheckScheduleRule,
      "tickets": [Ticket],
      "lastTicketDate": "2007-12-03T10:15:30Z",
      "totalUtilization": "abc123",
      "totalWorkDone": "abc123",
      "purchaseCurrentBookValue": "abc123",
      "batteryLevel": "xyz789",
      "lastContacted": 1592577642,
      "vncTunnelUrl": "abc123",
      "subscription": "abc123",
      "ticketsCount": "abc123",
      "workingHoursSettings": {},
      "workingHoursNotification": [
        RuleNotificationRelation
      ],
      "gatewayAsset": Asset,
      "services": [Service],
      "primaryServicePackage": ServicePackageWithSourceType,
      "eventIds": [HashedId],
      "nextService": 123,
      "downloadLink": "abc123",
      "activity": AssetActivity,
      "latestAssetData": {},
      "location": Location,
      "parameterSets": [ParameterSet],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "status": [StatusItem],
      "displayParameters": [DisplayParameter],
      "latestTrip": AssetTripLatest,
      "unavailability": [AssetUnavailability],
      "reservations": [Reservation],
      "parameterOffsets": [AssetParameterOffset],
      "costs": [Cost],
      "manufacturer": Manufacturer,
      "createdByGroup": Group,
      "assetType": AssetType,
      "assetCategory": AssetCategory,
      "assignedToGroup": Group,
      "site": Site,
      "assignedToSite": Site,
      "assignedToPreviousSite": Site,
      "documents": [Document],
      "events": [Event],
      "description": Translation,
      "checkSchedule": AssetCheckSchedule,
      "maintenanceSchedule": AssetMaintenanceSchedule,
      "workOrders": [WorkOrderV2]
    }
  }
}

assets

Response

Returns [Asset!]!

Arguments
Name Description
ids - [HashedId!]
uuids - [String!]

Example

Query
query assets(
  $ids: [HashedId!],
  $uuids: [String!]
) {
  assets(
    ids: $ids,
    uuids: $uuids
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{
  "ids": [HashedId],
  "uuids": ["abc123"]
}
Response
{
  "data": {
    "assets": [
      {
        "publicId": 987,
        "isCommodity": true,
        "moduleId": HashedId,
        "assignedToGroupId": HashedId,
        "allowReservations": false,
        "assetCategoryId": HashedId,
        "assetTypeId": HashedId,
        "assignment": "xyz789",
        "availabilityId": HashedId,
        "BLE": "xyz789",
        "client": "abc123",
        "commissionDate": "2007-12-03",
        "costCenter": "abc123",
        "created": 1592577642,
        "createdByGroupId": HashedId,
        "currency": "abc123",
        "customer": "xyz789",
        "customerEditable": true,
        "descriptionId": HashedId,
        "externalId": "xyz789",
        "fixedAssetNumber": "xyz789",
        "floorRoom": "abc123",
        "image": "xyz789",
        "initialValue": "xyz789",
        "inventoryNumber": "xyz789",
        "isInStationaryGateway": false,
        "isLocked": false,
        "leasingCostTermination": "abc123",
        "leasingEnd": "2007-12-03",
        "leasingLevel": "xyz789",
        "leasingMonthlyCost": "abc123",
        "leasingPartner": "xyz789",
        "leasingPartnerContractNumber": "xyz789",
        "leasingPartnerContractPositionNumber": "abc123",
        "leasingRenewalDate": "2007-12-03",
        "leasingRenewalRate": "xyz789",
        "leasingStart": "2007-12-03",
        "manufacturerId": HashedId,
        "optionalAssetID": "abc123",
        "ownershipId": HashedId,
        "partsNumber": "abc123",
        "previousSiteId": HashedId,
        "projectNumber": "abc123",
        "purchaseCost": "abc123",
        "purchaseDepriciation": 987,
        "purchaseInvoiceNumber": "abc123",
        "purchaseLowValueAsset": true,
        "purchaseStart": "2007-12-03",
        "purchaseWarrantyEnd": "2007-12-03",
        "purchaseWarrantyPeriod": 987,
        "purchaseWarrantyStart": "2007-12-03",
        "qrAttached": false,
        "quantity": 123,
        "rentalCostTermination": "abc123",
        "rentalEnd": "2007-12-03",
        "rentalMonthlyCost": "abc123",
        "rentalRenewalDate": "2007-12-03",
        "rentalRenewalRate": "xyz789",
        "rentalStart": "2007-12-03",
        "responsiblePerson": "abc123",
        "runtimeWithOffsetInSeconds": 987,
        "serial": "abc123",
        "serviceContract": false,
        "serviceContractCostPerYear": "abc123",
        "serviceContractEmail": "xyz789",
        "serviceContractEnd": "2007-12-03",
        "serviceContractFrom": 1592577642,
        "serviceContractLevel": "xyz789",
        "serviceContractPartner": "abc123",
        "serviceContractStart": "2007-12-03",
        "serviceContractTo": 1592577642,
        "siteId": HashedId,
        "assignedToSiteId": HashedId,
        "supplier": "xyz789",
        "updated": 1592577642,
        "uuid": "xyz789",
        "id": HashedId,
        "stateV2": [AssetStateItem],
        "state": AssetState,
        "serviceContractDocuments": [Document],
        "availability": "READY_TO_USE",
        "ownership": "PURCHASE",
        "module": Module,
        "scanTime": "2007-12-03",
        "imei": "xyz789",
        "costsSum": 123.45,
        "costsSumBattery": 987.65,
        "costsSumRepair": 987.65,
        "costsSumMaintenance": 987.65,
        "costsSumParts": 123.45,
        "costsSumConsumables": 987.65,
        "costsSumFuel": 123.45,
        "costsSumLabor": 987.65,
        "costsSumLogistics": 987.65,
        "costsSumTaxes": 123.45,
        "costsSumOther": 987.65,
        "costsSumCertification": 123.45,
        "parameterOffsetIds": [HashedId],
        "reservationIds": [HashedId],
        "moduleConnectionStatus": "primary",
        "relatedGroups": [RelatedGroup],
        "checkScheduleRule": AssetCheckScheduleRule,
        "tickets": [Ticket],
        "lastTicketDate": "2007-12-03T10:15:30Z",
        "totalUtilization": "xyz789",
        "totalWorkDone": "abc123",
        "purchaseCurrentBookValue": "abc123",
        "batteryLevel": "xyz789",
        "lastContacted": 1592577642,
        "vncTunnelUrl": "xyz789",
        "subscription": "xyz789",
        "ticketsCount": "abc123",
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "gatewayAsset": Asset,
        "services": [Service],
        "primaryServicePackage": ServicePackageWithSourceType,
        "eventIds": [HashedId],
        "nextService": 987,
        "downloadLink": "xyz789",
        "activity": AssetActivity,
        "latestAssetData": {},
        "location": Location,
        "parameterSets": [ParameterSet],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "status": [StatusItem],
        "displayParameters": [DisplayParameter],
        "latestTrip": AssetTripLatest,
        "unavailability": [AssetUnavailability],
        "reservations": [Reservation],
        "parameterOffsets": [AssetParameterOffset],
        "costs": [Cost],
        "manufacturer": Manufacturer,
        "createdByGroup": Group,
        "assetType": AssetType,
        "assetCategory": AssetCategory,
        "assignedToGroup": Group,
        "site": Site,
        "assignedToSite": Site,
        "assignedToPreviousSite": Site,
        "documents": [Document],
        "events": [Event],
        "description": Translation,
        "checkSchedule": AssetCheckSchedule,
        "maintenanceSchedule": AssetMaintenanceSchedule,
        "workOrders": [WorkOrderV2]
      }
    ]
  }
}

availabilityEnum

Use "availabilityEnumList" instead
Response

Returns an AvailabilityValArray

Example

Query
query availabilityEnum {
  availabilityEnum {
    data
  }
}
Response
{"data": {"availabilityEnum": {"data": ["READY_TO_USE"]}}}

availabilityEnumList

Response

Returns [AssetAvailability!]!

Example

Query
query availabilityEnumList {
  availabilityEnumList
}
Response
{"data": {"availabilityEnumList": ["READY_TO_USE"]}}

availableHandlers

Response

Returns [AvailableHandler!]!

Example

Query
query availableHandlers {
  availableHandlers {
    id
    subLabel
    displayName
    handlerType
  }
}
Response
{
  "data": {
    "availableHandlers": [
      {
        "id": "abc123",
        "subLabel": "xyz789",
        "displayName": "xyz789",
        "handlerType": "EXTERNALEMAIL"
      }
    ]
  }
}

availableTicketHandlers

Superseded by availableHandlers
Response

Returns [AvailableHandler!]!

Example

Query
query availableTicketHandlers {
  availableTicketHandlers {
    id
    subLabel
    displayName
    handlerType
  }
}
Response
{
  "data": {
    "availableTicketHandlers": [
      {
        "id": "abc123",
        "subLabel": "abc123",
        "displayName": "xyz789",
        "handlerType": "EXTERNALEMAIL"
      }
    ]
  }
}

availableUserLabels

Response

Returns [String!]!

Example

Query
query availableUserLabels {
  availableUserLabels
}
Response
{
  "data": {
    "availableUserLabels": ["abc123"]
  }
}

brand

Use separate queries: findByGroupIds, findByKey and findByIds
Response

Returns [Brand!]!

Arguments
Name Description
key - String brandKey
groupId - [HashedId!] brands can be queried against a specific group
id - [HashedId!]

Example

Query
query brand(
  $key: String,
  $groupId: [HashedId!],
  $id: [HashedId!]
) {
  brand(
    key: $key,
    groupId: $groupId,
    id: $id
  ) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{
  "key": "xyz789",
  "groupId": [HashedId],
  "id": [HashedId]
}
Response
{
  "data": {
    "brand": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "groupId": HashedId,
        "logoWidth": 123,
        "key": "abc123",
        "systemName": "xyz789",
        "colorDark": "xyz789",
        "colorLight": "xyz789",
        "faviconUrl": "abc123",
        "loginBackground": "xyz789",
        "name": "abc123",
        "appUrlAndroid": "xyz789",
        "appUrlIos": "abc123",
        "logo": "abc123",
        "color": "abc123",
        "symbol": "abc123",
        "ownURL": "abc123",
        "supportEmail": "abc123",
        "activationMailVideo": "abc123",
        "logoIsSquare": true,
        "group": Group,
        "sso": "2007-12-03T10:15:30Z",
        "loginLanguageFallback": HashedId,
        "projects": "abc123"
      }
    ]
  }
}

commentsByTicketId

Response

Returns [TicketComment!]

Arguments
Name Description
id - HashedId!
filters - TicketCommentFiltersInput

Example

Query
query commentsByTicketId(
  $id: HashedId!,
  $filters: TicketCommentFiltersInput
) {
  commentsByTicketId(
    id: $id,
    filters: $filters
  ) {
    id
    created
    updated
    createdByUserId
    authorEmail
    createdByUser {
      ...TicketUserFragment
    }
    history {
      ...TicketCommentContentFragment
    }
    content {
      ...TicketCommentContentFragment
    }
    isAutomated
    costs {
      ...CostFragment
    }
    stateEvent {
      ...TicketStateFragment
    }
    attachments {
      ...DocumentFragment
    }
    connectedEventId
    connectedEvent {
      ...EventFragment
    }
    internal
    deleted
  }
}
Variables
{
  "id": HashedId,
  "filters": TicketCommentFiltersInput
}
Response
{
  "data": {
    "commentsByTicketId": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "createdByUserId": HashedId,
        "authorEmail": "abc123",
        "createdByUser": TicketUser,
        "history": [TicketCommentContent],
        "content": TicketCommentContent,
        "isAutomated": false,
        "costs": [Cost],
        "stateEvent": TicketState,
        "attachments": [Document],
        "connectedEventId": HashedId,
        "connectedEvent": Event,
        "internal": true,
        "deleted": 1592577642
      }
    ]
  }
}

connectedAssetsByIMEI

Response

Returns an Int!

Arguments
Name Description
imei - String! IMEI of the module

Example

Query
query connectedAssetsByIMEI($imei: String!) {
  connectedAssetsByIMEI(imei: $imei)
}
Variables
{"imei": "xyz789"}
Response
{"data": {"connectedAssetsByIMEI": 987}}

cost

Response

Returns a Cost

Arguments
Name Description
id - HashedId!

Example

Query
query cost($id: HashedId!) {
  cost(id: $id) {
    id
    created
    updated
    assetId
    costTypeId
    createdByUserId
    currency
    originatingFromEventId
    originatingFromCommentId
    value
    costType {
      ...CostTypeFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "cost": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "assetId": HashedId,
      "costTypeId": HashedId,
      "createdByUserId": HashedId,
      "currency": "xyz789",
      "originatingFromEventId": HashedId,
      "originatingFromCommentId": HashedId,
      "value": 987.65,
      "costType": CostType
    }
  }
}

costType

Response

Returns a CostType

Arguments
Name Description
id - HashedId!

Example

Query
query costType($id: HashedId!) {
  costType(id: $id) {
    id
    created
    updated
    key
    keyV2
    translationId
    translation {
      ...TranslationFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "costType": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "key": "abc123",
      "keyV2": "BATTERY",
      "translationId": HashedId,
      "translation": Translation
    }
  }
}

costTypeList

Response

Returns [CostType!]!

Example

Query
query costTypeList {
  costTypeList {
    id
    created
    updated
    key
    keyV2
    translationId
    translation {
      ...TranslationFragment
    }
  }
}
Response
{
  "data": {
    "costTypeList": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "key": "xyz789",
        "keyV2": "BATTERY",
        "translationId": HashedId,
        "translation": Translation
      }
    ]
  }
}

costsForAsset

Response

Returns [Cost!]!

Arguments
Name Description
assetId - HashedId!

Example

Query
query costsForAsset($assetId: HashedId!) {
  costsForAsset(assetId: $assetId) {
    id
    created
    updated
    assetId
    costTypeId
    createdByUserId
    currency
    originatingFromEventId
    originatingFromCommentId
    value
    costType {
      ...CostTypeFragment
    }
  }
}
Variables
{"assetId": HashedId}
Response
{
  "data": {
    "costsForAsset": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "assetId": HashedId,
        "costTypeId": HashedId,
        "createdByUserId": HashedId,
        "currency": "xyz789",
        "originatingFromEventId": HashedId,
        "originatingFromCommentId": HashedId,
        "value": 987.65,
        "costType": CostType
      }
    ]
  }
}

currentGroupChildrenWithinOEMOrCustomer

Response

Returns [Group!]!

Example

Query
query currentGroupChildrenWithinOEMOrCustomer {
  currentGroupChildrenWithinOEMOrCustomer {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Response
{
  "data": {
    "currentGroupChildrenWithinOEMOrCustomer": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "parentGroupId": HashedId,
        "isRoot": true,
        "image": "xyz789",
        "isCustomer": false,
        "identificationNumber": "abc123",
        "vatNumber": "abc123",
        "rootGroupId": HashedId,
        "handlerAlias": "xyz789",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": true,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": false,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": true,
        "customerRootGroup": Group,
        "rootGroupName": "xyz789",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "abc123",
        "parentName": "abc123",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

customFieldById

Response

Returns a CustomField!

Arguments
Name Description
id - HashedId!

Example

Query
query customFieldById($id: HashedId!) {
  customFieldById(id: $id) {
    id
    created
    updated
    nameId
    type
    isRequired
    showOnQrLandingPage
    showToNonLoggedInUsers
    groupId
    addToAllAssetsInGroupAndBelow
    customerVisibilityRights
    createdByUserId
    createdByGroupId
    availableCustomerVisibilityRights
    deleted
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    assetTypes {
      ...AssetTypeFragment
    }
    assetCategories {
      ...AssetCategoryFragment
    }
    assets {
      ...AssetFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    values {
      ...CustomFieldValueFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "customFieldById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "nameId": HashedId,
      "type": "text",
      "isRequired": false,
      "showOnQrLandingPage": true,
      "showToNonLoggedInUsers": true,
      "groupId": HashedId,
      "addToAllAssetsInGroupAndBelow": true,
      "customerVisibilityRights": "editor",
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "availableCustomerVisibilityRights": ["editor"],
      "deleted": 1592577642,
      "name": Translation,
      "group": Group,
      "assetTypes": [AssetType],
      "assetCategories": [AssetCategory],
      "assets": [Asset],
      "createdByUser": User,
      "createdByGroup": Group,
      "values": [CustomFieldValue]
    }
  }
}

customFieldsPaginated

Response

Returns a CustomFieldPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]
includeArchived - Boolean

Example

Query
query customFieldsPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput],
  $includeArchived: Boolean
) {
  customFieldsPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters,
    includeArchived: $includeArchived
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...CustomFieldFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput],
  "includeArchived": false
}
Response
{
  "data": {
    "customFieldsPaginated": {
      "meta": PaginationMeta,
      "rows": [CustomField]
    }
  }
}

dashboard

Response

Returns [Dashboard]!

Arguments
Name Description
id - HashedId

Example

Query
query dashboard($id: HashedId) {
  dashboard(id: $id) {
    id
    title {
      ...TranslationFragment
    }
    priority
    definition
    grafanaDashboardURL
    grafanaDashboardUID
    filters {
      ...DashboardFilterFragment
    }
    snapshotURL
    createdByUserId
    createdByGroupId
    default
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "dashboard": [
      {
        "id": HashedId,
        "title": Translation,
        "priority": 123,
        "definition": {},
        "grafanaDashboardURL": "xyz789",
        "grafanaDashboardUID": "abc123",
        "filters": [DashboardFilter],
        "snapshotURL": "xyz789",
        "createdByUserId": HashedId,
        "createdByGroupId": HashedId,
        "default": true
      }
    ]
  }
}

displayAssetData

Description

Returns an array of the most important parameters in certain order. These parameters can be used in a client application to display the most important infomation of an Asset.

Response

Returns [DisplayParameter!]

Arguments
Name Description
assetId - HashedId!

Example

Query
query displayAssetData($assetId: HashedId!) {
  displayAssetData(assetId: $assetId) {
    displayType
    displayName {
      ...TranslationFragment
    }
    displayText
    displayValue
    visibility {
      ...DisplayParameterVisibilityFragment
    }
    parameter {
      ...ParameterFragment
    }
    originalValue
    syntheticParameter
    stackedParameters {
      ...ParameterFragment
    }
    id
  }
}
Variables
{"assetId": HashedId}
Response
{
  "data": {
    "displayAssetData": [
      {
        "displayType": "ERROR",
        "displayName": Translation,
        "displayText": "xyz789",
        "displayValue": 123.45,
        "visibility": DisplayParameterVisibility,
        "parameter": Parameter,
        "originalValue": 123.45,
        "syntheticParameter": "BATTERY",
        "stackedParameters": [Parameter],
        "id": HashedId
      }
    ]
  }
}

displayMultipleAssetData

Description

Same as displayAssetData but until clarified if this is a breaking change needs to be used if more than one assets data is requested at the same time

Response

Returns [DisplayParameter!]

Arguments
Name Description
assetId - [HashedId!]!
visibilityFilter - [String!]

Example

Query
query displayMultipleAssetData(
  $assetId: [HashedId!]!,
  $visibilityFilter: [String!]
) {
  displayMultipleAssetData(
    assetId: $assetId,
    visibilityFilter: $visibilityFilter
  ) {
    displayType
    displayName {
      ...TranslationFragment
    }
    displayText
    displayValue
    visibility {
      ...DisplayParameterVisibilityFragment
    }
    parameter {
      ...ParameterFragment
    }
    originalValue
    syntheticParameter
    stackedParameters {
      ...ParameterFragment
    }
    id
  }
}
Variables
{
  "assetId": [HashedId],
  "visibilityFilter": ["abc123"]
}
Response
{
  "data": {
    "displayMultipleAssetData": [
      {
        "displayType": "ERROR",
        "displayName": Translation,
        "displayText": "abc123",
        "displayValue": 123.45,
        "visibility": DisplayParameterVisibility,
        "parameter": Parameter,
        "originalValue": 987.65,
        "syntheticParameter": "BATTERY",
        "stackedParameters": [Parameter],
        "id": HashedId
      }
    ]
  }
}

displayParameterInfo

Response

Returns [DisplayParameterInfo!]

Arguments
Name Description
id - [HashedId!]
assetTypeId - [HashedId!] The AssetType which should be filtered for
assetIntegrationId - [HashedId!] The AssetIntegration which should be filtered for

Example

Query
query displayParameterInfo(
  $id: [HashedId!],
  $assetTypeId: [HashedId!],
  $assetIntegrationId: [HashedId!]
) {
  displayParameterInfo(
    id: $id,
    assetTypeId: $assetTypeId,
    assetIntegrationId: $assetIntegrationId
  ) {
    id
    parameterId
    parameter {
      ...ParameterFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetTypeId
    assetIntegration {
      ...AssetIntegrationFragment
    }
    assetIntegrationId
    sortPosition
    displayUnit
    displayType
    domainValue
    parameterSetId
    key
    title {
      ...TranslationFragment
    }
    titleId
  }
}
Variables
{
  "id": [HashedId],
  "assetTypeId": [HashedId],
  "assetIntegrationId": [HashedId]
}
Response
{
  "data": {
    "displayParameterInfo": [
      {
        "id": HashedId,
        "parameterId": HashedId,
        "parameter": Parameter,
        "assetType": [AssetType],
        "assetTypeId": [HashedId],
        "assetIntegration": AssetIntegration,
        "assetIntegrationId": HashedId,
        "sortPosition": 123,
        "displayUnit": "xyz789",
        "displayType": "xyz789",
        "domainValue": 123,
        "parameterSetId": HashedId,
        "key": "abc123",
        "title": Translation,
        "titleId": HashedId
      }
    ]
  }
}

document

Response

Returns [Document!]!

Arguments
Name Description
id - [HashedId!]!

Example

Query
query document($id: [HashedId!]!) {
  document(id: $id) {
    id
    created
    updated
    assetId
    assetTypeId
    commentId
    eventId
    partId
    isExternal
    isVisibleToCustomer
    name
    purpose
    uploadedByUserId
    url
    editable
    fileSize
    isInherited
    typeKey
    uploadedByCustomer
    uploadedByUser {
      ...UserFragment
    }
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "document": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "assetId": HashedId,
        "assetTypeId": HashedId,
        "commentId": HashedId,
        "eventId": HashedId,
        "partId": HashedId,
        "isExternal": true,
        "isVisibleToCustomer": true,
        "name": "xyz789",
        "purpose": "xyz789",
        "uploadedByUserId": HashedId,
        "url": "xyz789",
        "editable": false,
        "fileSize": 123,
        "isInherited": false,
        "typeKey": "abc123",
        "uploadedByCustomer": true,
        "uploadedByUser": User
      }
    ]
  }
}

entityColumnSchema

Description

Returns the nuvo schema for the given entity type

Response

Returns [ColumnsSchema]!

Arguments
Name Description
entity - String!

Example

Query
query entityColumnSchema($entity: String!) {
  entityColumnSchema(entity: $entity) {
    key
    label
    alternativeMatches
    labelSuffix
    columnType
    hidden
    allowCustomOptions
    description
    example
    type
    validations {
      ...ColumnSchemaValidationsFragment
    }
    dropdownOptions {
      ...ColumnSchemaDropdownOptionFragment
    }
  }
}
Variables
{"entity": "xyz789"}
Response
{
  "data": {
    "entityColumnSchema": [
      {
        "key": "abc123",
        "label": "abc123",
        "alternativeMatches": ["abc123"],
        "labelSuffix": "xyz789",
        "columnType": "abc123",
        "hidden": false,
        "allowCustomOptions": false,
        "description": "abc123",
        "example": "abc123",
        "type": "abc123",
        "validations": [ColumnSchemaValidations],
        "dropdownOptions": [ColumnSchemaDropdownOption]
      }
    ]
  }
}

event

Response

Returns [Event!]

Arguments
Name Description
id - [HashedId!]
assetId - [HashedId!] The asset's id that is related to the event (each event relates to a single asset)
partId - [HashedId!]
eventStyleKey - EventStyleKey
createdByUserId - [HashedId] Only applicable to user-created events
createdByWorkOrderId - [HashedId] The id of the rule that triggered creating the event
createdByRuleId - [HashedId]
createdByTicketId - [HashedId] The flow to which a response or state change created the event
currentlyActive - Boolean Filter only or not currently ongoing/active events based on the value
startDateFilter - EventDateFilter Filters out events based on the startTime
endDateFilter - EventDateFilter Filters out events based on the endTime
createdDateFilter - EventDateFilter Filters out events based on the created time

Example

Query
query event(
  $id: [HashedId!],
  $assetId: [HashedId!],
  $partId: [HashedId!],
  $eventStyleKey: EventStyleKey,
  $createdByUserId: [HashedId],
  $createdByWorkOrderId: [HashedId],
  $createdByRuleId: [HashedId],
  $createdByTicketId: [HashedId],
  $currentlyActive: Boolean,
  $startDateFilter: EventDateFilter,
  $endDateFilter: EventDateFilter,
  $createdDateFilter: EventDateFilter
) {
  event(
    id: $id,
    assetId: $assetId,
    partId: $partId,
    eventStyleKey: $eventStyleKey,
    createdByUserId: $createdByUserId,
    createdByWorkOrderId: $createdByWorkOrderId,
    createdByRuleId: $createdByRuleId,
    createdByTicketId: $createdByTicketId,
    currentlyActive: $currentlyActive,
    startDateFilter: $startDateFilter,
    endDateFilter: $endDateFilter,
    createdDateFilter: $createdDateFilter
  ) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "assetId": [HashedId],
  "partId": [HashedId],
  "eventStyleKey": "ERROR",
  "createdByUserId": [HashedId],
  "createdByWorkOrderId": [HashedId],
  "createdByRuleId": [HashedId],
  "createdByTicketId": [HashedId],
  "currentlyActive": false,
  "startDateFilter": EventDateFilter,
  "endDateFilter": EventDateFilter,
  "createdDateFilter": EventDateFilter
}
Response
{
  "data": {
    "event": [
      {
        "id": HashedId,
        "createdByRule": Rule,
        "createdByRuleId": HashedId,
        "createdByTicket": Ticket,
        "createdByTicketId": HashedId,
        "createdByWorkOrder": WorkOrderSummary,
        "createdByWorkOrderId": HashedId,
        "createdBySiteId": HashedId,
        "originatingFromAsset": Asset,
        "originatingFromAssetId": HashedId,
        "originatingFromModule": Module,
        "createdByPartId": HashedId,
        "originatingFromModuleId": HashedId,
        "title": Translation,
        "titleId": HashedId,
        "description": Translation,
        "descriptionId": HashedId,
        "createdByUser": User,
        "createdByUserId": HashedId,
        "stoppedByUser": User,
        "stoppedByUserId": HashedId,
        "eventStyle": EventStyle,
        "eventStyleId": "xyz789",
        "startTime": 1592577642,
        "endTime": 1592577642,
        "isCritical": false,
        "isImmediateNotification": false,
        "shouldNotify": true,
        "manualDeactivation": true,
        "isOngoing": false,
        "created": 1592577642,
        "updated": 1592577642,
        "responseState": TicketState,
        "eventMeta": {},
        "serviceName": Translation,
        "ticketId": 987,
        "tag": ["asset"],
        "cost": Cost,
        "costs": [Cost],
        "documents": [Document],
        "workOrderNotifications": WorkOrderNotifications,
        "connectedComment": TicketComment,
        "authorEmail": "abc123",
        "lastEvent": 1592577642,
        "siteId": HashedId,
        "createdByPart": Part,
        "site": Site,
        "data": EventEntityDataDto,
        "createdBySite": Site
      }
    ]
  }
}

eventById

Response

Returns an Event!

Arguments
Name Description
id - HashedId!

Example

Query
query eventById($id: HashedId!) {
  eventById(id: $id) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "eventById": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "abc123",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": false,
      "isImmediateNotification": false,
      "shouldNotify": true,
      "manualDeactivation": false,
      "isOngoing": false,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 123,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "abc123",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

eventStyle

Response

Returns [EventStyle!]

Arguments
Name Description
id - [HashedId]
key - [String!]

Example

Query
query eventStyle(
  $id: [HashedId],
  $key: [String!]
) {
  eventStyle(
    id: $id,
    key: $key
  ) {
    id
    key
    nameId
    name {
      ...TranslationFragment
    }
    icon
    color
    createdByGroupId
  }
}
Variables
{
  "id": [HashedId],
  "key": ["abc123"]
}
Response
{
  "data": {
    "eventStyle": [
      {
        "id": HashedId,
        "key": "ERROR",
        "nameId": HashedId,
        "name": Translation,
        "icon": "xyz789",
        "color": "abc123",
        "createdByGroupId": HashedId
      }
    ]
  }
}

eventStyleIcons

Description

A list of eventStyle icon image url-s to display and to choose from when creating the eventStyle

Response

Returns [String!]

Example

Query
query eventStyleIcons {
  eventStyleIcons
}
Response
{"data": {"eventStyleIcons": ["abc123"]}}

extensionsWithFileTypes

Response

Returns a JSON!

Example

Query
query extensionsWithFileTypes {
  extensionsWithFileTypes
}
Response
{"data": {"extensionsWithFileTypes": {}}}

filterList

Response

Returns [ColumnConfig!]!

Arguments
Name Description
entityName - EntityEnum!

Example

Query
query filterList($entityName: EntityEnum!) {
  filterList(entityName: $entityName) {
    columnName
    dataType
    dependsOnFlags
    disableFilter
    disableSort
    hashId
    isNullable
    label
  }
}
Variables
{"entityName": "ASSET"}
Response
{
  "data": {
    "filterList": [
      {
        "columnName": "abc123",
        "dataType": "TEXT",
        "dependsOnFlags": ["xyz789"],
        "disableFilter": true,
        "disableSort": false,
        "hashId": true,
        "isNullable": false,
        "label": "abc123"
      }
    ]
  }
}

filterOptions

Response

Returns [FilterOption!]!

Arguments
Name Description
columnName - String!
entityName - EntityEnum!
filters - [FilterParamsInput]
search - String

Example

Query
query filterOptions(
  $columnName: String!,
  $entityName: EntityEnum!,
  $filters: [FilterParamsInput],
  $search: String
) {
  filterOptions(
    columnName: $columnName,
    entityName: $entityName,
    filters: $filters,
    search: $search
  ) {
    value
    label
    count
    source
    id
  }
}
Variables
{
  "columnName": "abc123",
  "entityName": "ASSET",
  "filters": [FilterParamsInput],
  "search": "xyz789"
}
Response
{
  "data": {
    "filterOptions": [
      {
        "value": "xyz789",
        "label": "xyz789",
        "count": 987,
        "source": "xyz789",
        "id": "xyz789"
      }
    ]
  }
}

findAllProcedureTemplates

will be removed in future
Response

Returns [ProcedureTemplate!]!

Example

Query
query findAllProcedureTemplates {
  findAllProcedureTemplates {
    id
    created
    updated
    type
    itemType
    preset
    accessLevel
    iconUrl
    createdByGroupId
    createdByUserId
    titleId
    descriptionId
    rootId
    parentId
    publicId
    publicRootId
    servicePackages {
      ...ServicePackageFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    description {
      ...TranslationFragment
    }
    components {
      ...ProcedureTemplateComponentFragment
    }
    automations {
      ...ProcedureTemplateAutomationFragment
    }
    parent {
      ...ProcedureTemplateFragment
    }
  }
}
Response
{
  "data": {
    "findAllProcedureTemplates": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "type": "tickets",
        "itemType": "general",
        "preset": "check",
        "accessLevel": "tree",
        "iconUrl": "abc123",
        "createdByGroupId": HashedId,
        "createdByUserId": HashedId,
        "titleId": HashedId,
        "descriptionId": HashedId,
        "rootId": HashedId,
        "parentId": HashedId,
        "publicId": 987,
        "publicRootId": 123,
        "servicePackages": [ServicePackage],
        "title": Translation,
        "createdByUser": User,
        "createdByGroup": Group,
        "description": Translation,
        "components": [ProcedureTemplateComponent],
        "automations": [ProcedureTemplateAutomation],
        "parent": ProcedureTemplate
      }
    ]
  }
}

findAssetIntegrationById

Response

Returns an AssetIntegration

Arguments
Name Description
id - HashedId!

Example

Query
query findAssetIntegrationById($id: HashedId!) {
  findAssetIntegrationById(id: $id) {
    id
    created
    updated
    name
    manufacturerId
    assetCategoryId
    assetCategory {
      ...AssetCategoryFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "findAssetIntegrationById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "manufacturerId": HashedId,
      "assetCategoryId": HashedId,
      "assetCategory": AssetCategory,
      "manufacturer": Manufacturer
    }
  }
}

findAssetIntegrationByName

Response

Returns an AssetIntegration

Arguments
Name Description
name - String!

Example

Query
query findAssetIntegrationByName($name: String!) {
  findAssetIntegrationByName(name: $name) {
    id
    created
    updated
    name
    manufacturerId
    assetCategoryId
    assetCategory {
      ...AssetCategoryFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{"name": "xyz789"}
Response
{
  "data": {
    "findAssetIntegrationByName": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "manufacturerId": HashedId,
      "assetCategoryId": HashedId,
      "assetCategory": AssetCategory,
      "manufacturer": Manufacturer
    }
  }
}

findBrandByKey

Response

Returns a Brand

Arguments
Name Description
key - String!

Example

Query
query findBrandByKey($key: String!) {
  findBrandByKey(key: $key) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{"key": "abc123"}
Response
{
  "data": {
    "findBrandByKey": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "logoWidth": 123,
      "key": "xyz789",
      "systemName": "xyz789",
      "colorDark": "abc123",
      "colorLight": "abc123",
      "faviconUrl": "xyz789",
      "loginBackground": "xyz789",
      "name": "abc123",
      "appUrlAndroid": "xyz789",
      "appUrlIos": "xyz789",
      "logo": "xyz789",
      "color": "abc123",
      "symbol": "abc123",
      "ownURL": "abc123",
      "supportEmail": "abc123",
      "activationMailVideo": "xyz789",
      "logoIsSquare": false,
      "group": Group,
      "sso": "2007-12-03T10:15:30Z",
      "loginLanguageFallback": HashedId,
      "projects": "abc123"
    }
  }
}

findBrandsByGroupIds

Response

Returns [Brand!]!

Arguments
Name Description
groupIds - [HashedId!]!

Example

Query
query findBrandsByGroupIds($groupIds: [HashedId!]!) {
  findBrandsByGroupIds(groupIds: $groupIds) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{"groupIds": [HashedId]}
Response
{
  "data": {
    "findBrandsByGroupIds": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "groupId": HashedId,
        "logoWidth": 123,
        "key": "abc123",
        "systemName": "abc123",
        "colorDark": "xyz789",
        "colorLight": "abc123",
        "faviconUrl": "abc123",
        "loginBackground": "abc123",
        "name": "xyz789",
        "appUrlAndroid": "xyz789",
        "appUrlIos": "abc123",
        "logo": "xyz789",
        "color": "xyz789",
        "symbol": "xyz789",
        "ownURL": "xyz789",
        "supportEmail": "xyz789",
        "activationMailVideo": "abc123",
        "logoIsSquare": false,
        "group": Group,
        "sso": "2007-12-03T10:15:30Z",
        "loginLanguageFallback": HashedId,
        "projects": "xyz789"
      }
    ]
  }
}

findBrandsByIds

Response

Returns [Brand!]!

Arguments
Name Description
ids - [HashedId!]!

Example

Query
query findBrandsByIds($ids: [HashedId!]!) {
  findBrandsByIds(ids: $ids) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{"ids": [HashedId]}
Response
{
  "data": {
    "findBrandsByIds": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "groupId": HashedId,
        "logoWidth": 123,
        "key": "abc123",
        "systemName": "abc123",
        "colorDark": "xyz789",
        "colorLight": "abc123",
        "faviconUrl": "xyz789",
        "loginBackground": "xyz789",
        "name": "xyz789",
        "appUrlAndroid": "abc123",
        "appUrlIos": "abc123",
        "logo": "abc123",
        "color": "xyz789",
        "symbol": "abc123",
        "ownURL": "abc123",
        "supportEmail": "abc123",
        "activationMailVideo": "xyz789",
        "logoIsSquare": true,
        "group": Group,
        "sso": "2007-12-03T10:15:30Z",
        "loginLanguageFallback": HashedId,
        "projects": "xyz789"
      }
    ]
  }
}

findManufacturerByName

Response

Returns a Manufacturer

Arguments
Name Description
name - String!

Example

Query
query findManufacturerByName($name: String!) {
  findManufacturerByName(name: $name) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{"name": "xyz789"}
Response
{
  "data": {
    "findManufacturerByName": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "nameKey": "xyz789",
      "notificationsEnabled": true,
      "maintainedByGroupId": 123,
      "maintainedByGroup": Group,
      "assetIntegrations": [AssetIntegration],
      "assetIntegrationIds": [HashedId]
    }
  }
}

findManufacturerByNameKey

Response

Returns a Manufacturer

Arguments
Name Description
nameKey - String!

Example

Query
query findManufacturerByNameKey($nameKey: String!) {
  findManufacturerByNameKey(nameKey: $nameKey) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{"nameKey": "abc123"}
Response
{
  "data": {
    "findManufacturerByNameKey": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "nameKey": "abc123",
      "notificationsEnabled": true,
      "maintainedByGroupId": 123,
      "maintainedByGroup": Group,
      "assetIntegrations": [AssetIntegration],
      "assetIntegrationIds": [HashedId]
    }
  }
}

findManufacturersByGroupIds

Response

Returns [Manufacturer!]!

Arguments
Name Description
groupIds - [HashedId!]!

Example

Query
query findManufacturersByGroupIds($groupIds: [HashedId!]!) {
  findManufacturersByGroupIds(groupIds: $groupIds) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{"groupIds": [HashedId]}
Response
{
  "data": {
    "findManufacturersByGroupIds": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "xyz789",
        "nameKey": "xyz789",
        "notificationsEnabled": false,
        "maintainedByGroupId": 987,
        "maintainedByGroup": Group,
        "assetIntegrations": [AssetIntegration],
        "assetIntegrationIds": [HashedId]
      }
    ]
  }
}

findManufacturersByIds

Response

Returns [Manufacturer!]!

Arguments
Name Description
ids - [HashedId!]!

Example

Query
query findManufacturersByIds($ids: [HashedId!]!) {
  findManufacturersByIds(ids: $ids) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{"ids": [HashedId]}
Response
{
  "data": {
    "findManufacturersByIds": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "xyz789",
        "nameKey": "abc123",
        "notificationsEnabled": true,
        "maintainedByGroupId": 123,
        "maintainedByGroup": Group,
        "assetIntegrations": [AssetIntegration],
        "assetIntegrationIds": [HashedId]
      }
    ]
  }
}

findProcedureTemplateById

Response

Returns a ProcedureTemplate

Arguments
Name Description
id - HashedId!

Example

Query
query findProcedureTemplateById($id: HashedId!) {
  findProcedureTemplateById(id: $id) {
    id
    created
    updated
    type
    itemType
    preset
    accessLevel
    iconUrl
    createdByGroupId
    createdByUserId
    titleId
    descriptionId
    rootId
    parentId
    publicId
    publicRootId
    servicePackages {
      ...ServicePackageFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    description {
      ...TranslationFragment
    }
    components {
      ...ProcedureTemplateComponentFragment
    }
    automations {
      ...ProcedureTemplateAutomationFragment
    }
    parent {
      ...ProcedureTemplateFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "findProcedureTemplateById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "type": "tickets",
      "itemType": "general",
      "preset": "check",
      "accessLevel": "tree",
      "iconUrl": "abc123",
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "titleId": HashedId,
      "descriptionId": HashedId,
      "rootId": HashedId,
      "parentId": HashedId,
      "publicId": 987,
      "publicRootId": 987,
      "servicePackages": [ServicePackage],
      "title": Translation,
      "createdByUser": User,
      "createdByGroup": Group,
      "description": Translation,
      "components": [ProcedureTemplateComponent],
      "automations": [ProcedureTemplateAutomation],
      "parent": ProcedureTemplate
    }
  }
}

findProcedureTemplateByIds

Response

Returns [ProcedureTemplate!]!

Arguments
Name Description
ids - [HashedId!]!

Example

Query
query findProcedureTemplateByIds($ids: [HashedId!]!) {
  findProcedureTemplateByIds(ids: $ids) {
    id
    created
    updated
    type
    itemType
    preset
    accessLevel
    iconUrl
    createdByGroupId
    createdByUserId
    titleId
    descriptionId
    rootId
    parentId
    publicId
    publicRootId
    servicePackages {
      ...ServicePackageFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    description {
      ...TranslationFragment
    }
    components {
      ...ProcedureTemplateComponentFragment
    }
    automations {
      ...ProcedureTemplateAutomationFragment
    }
    parent {
      ...ProcedureTemplateFragment
    }
  }
}
Variables
{"ids": [HashedId]}
Response
{
  "data": {
    "findProcedureTemplateByIds": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "type": "tickets",
        "itemType": "general",
        "preset": "check",
        "accessLevel": "tree",
        "iconUrl": "xyz789",
        "createdByGroupId": HashedId,
        "createdByUserId": HashedId,
        "titleId": HashedId,
        "descriptionId": HashedId,
        "rootId": HashedId,
        "parentId": HashedId,
        "publicId": 987,
        "publicRootId": 123,
        "servicePackages": [ServicePackage],
        "title": Translation,
        "createdByUser": User,
        "createdByGroup": Group,
        "description": Translation,
        "components": [ProcedureTemplateComponent],
        "automations": [ProcedureTemplateAutomation],
        "parent": ProcedureTemplate
      }
    ]
  }
}

findProcedureTemplatesPaginated

Response

Returns a ProcedureTemplatePaginatedDto!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query findProcedureTemplatesPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  findProcedureTemplatesPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    rows {
      ...ProcedureTemplateFragment
    }
    meta {
      ...PaginationMetaFragment
    }
    total
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "findProcedureTemplatesPaginated": {
      "rows": [ProcedureTemplate],
      "meta": PaginationMeta,
      "total": 987
    }
  }
}

findRuleById

Response

Returns a Rule

Arguments
Name Description
id - HashedId!

Example

Query
query findRuleById($id: HashedId!) {
  findRuleById(id: $id) {
    definition
    module {
      ...ModuleFragment
    }
    moduleId
    assetBlacklist {
      ...AssetFragment
    }
    assetBlacklistIds
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    duration
    relations {
      ...RuleRelationFragment
    }
    eventsConfigs {
      ...EventConfigFragment
    }
    id
    created
    updated
    title {
      ...TranslationFragment
    }
    description {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    eventStyle {
      ...EventStyleFragment
    }
    titleId
    descriptionId
    createdByGroupId
    createdByUserId
    assignedToGroupId
    eventStyleId
    isCritical
    isOnetime
    isImmediateNotification
    isGlobalRule
    manualDeactivation
    isArchived
    isOneshot
    isActive
    source
    enabled
    purpose
    publicId
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "findRuleById": {
      "definition": {},
      "module": [Module],
      "moduleId": [HashedId],
      "assetBlacklist": [Asset],
      "assetBlacklistIds": [HashedId],
      "sendNotificationsTo": [RuleNotificationRelation],
      "duration": {},
      "relations": [RuleRelation],
      "eventsConfigs": [EventConfig],
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "title": Translation,
      "description": Translation,
      "createdByUser": User,
      "createdByGroup": Group,
      "assignedToGroup": Group,
      "eventStyle": EventStyle,
      "titleId": HashedId,
      "descriptionId": HashedId,
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "assignedToGroupId": HashedId,
      "eventStyleId": HashedId,
      "isCritical": true,
      "isOnetime": false,
      "isImmediateNotification": false,
      "isGlobalRule": true,
      "manualDeactivation": false,
      "isArchived": true,
      "isOneshot": true,
      "isActive": false,
      "source": "DATA",
      "enabled": true,
      "purpose": "GEOFENCE",
      "publicId": "abc123",
      "services": [Service],
      "servicesV2": [Service]
    }
  }
}

findRulesBySource

Response

Returns [Rule!]!

Arguments
Name Description
source - RuleSource!

Example

Query
query findRulesBySource($source: RuleSource!) {
  findRulesBySource(source: $source) {
    definition
    module {
      ...ModuleFragment
    }
    moduleId
    assetBlacklist {
      ...AssetFragment
    }
    assetBlacklistIds
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    duration
    relations {
      ...RuleRelationFragment
    }
    eventsConfigs {
      ...EventConfigFragment
    }
    id
    created
    updated
    title {
      ...TranslationFragment
    }
    description {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    eventStyle {
      ...EventStyleFragment
    }
    titleId
    descriptionId
    createdByGroupId
    createdByUserId
    assignedToGroupId
    eventStyleId
    isCritical
    isOnetime
    isImmediateNotification
    isGlobalRule
    manualDeactivation
    isArchived
    isOneshot
    isActive
    source
    enabled
    purpose
    publicId
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
  }
}
Variables
{"source": "DATA"}
Response
{
  "data": {
    "findRulesBySource": [
      {
        "definition": {},
        "module": [Module],
        "moduleId": [HashedId],
        "assetBlacklist": [Asset],
        "assetBlacklistIds": [HashedId],
        "sendNotificationsTo": [RuleNotificationRelation],
        "duration": {},
        "relations": [RuleRelation],
        "eventsConfigs": [EventConfig],
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "title": Translation,
        "description": Translation,
        "createdByUser": User,
        "createdByGroup": Group,
        "assignedToGroup": Group,
        "eventStyle": EventStyle,
        "titleId": HashedId,
        "descriptionId": HashedId,
        "createdByGroupId": HashedId,
        "createdByUserId": HashedId,
        "assignedToGroupId": HashedId,
        "eventStyleId": HashedId,
        "isCritical": false,
        "isOnetime": false,
        "isImmediateNotification": true,
        "isGlobalRule": false,
        "manualDeactivation": false,
        "isArchived": true,
        "isOneshot": true,
        "isActive": true,
        "source": "DATA",
        "enabled": false,
        "purpose": "GEOFENCE",
        "publicId": "xyz789",
        "services": [Service],
        "servicesV2": [Service]
      }
    ]
  }
}

getAllIntegrationBaseProviders

Response

Returns [IntegrationProviderDto!]!

Example

Query
query getAllIntegrationBaseProviders {
  getAllIntegrationBaseProviders {
    id
    created
    updated
    name
    config {
      ...IntegrationConfigKeyFragment
    }
    isCronActive
  }
}
Response
{
  "data": {
    "getAllIntegrationBaseProviders": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "WISAG",
        "config": [IntegrationConfigKey],
        "isCronActive": true
      }
    ]
  }
}

getAllIntegrationProviders

Response

Returns [IntegrationProviderDto!]!

Example

Query
query getAllIntegrationProviders {
  getAllIntegrationProviders {
    id
    created
    updated
    name
    config {
      ...IntegrationConfigKeyFragment
    }
    isCronActive
  }
}
Response
{
  "data": {
    "getAllIntegrationProviders": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "WISAG",
        "config": [IntegrationConfigKey],
        "isCronActive": false
      }
    ]
  }
}

getAllIntegrationProvidersWithoutBase

Response

Returns [IntegrationProviderDto!]!

Example

Query
query getAllIntegrationProvidersWithoutBase {
  getAllIntegrationProvidersWithoutBase {
    id
    created
    updated
    name
    config {
      ...IntegrationConfigKeyFragment
    }
    isCronActive
  }
}
Response
{
  "data": {
    "getAllIntegrationProvidersWithoutBase": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "WISAG",
        "config": [IntegrationConfigKey],
        "isCronActive": true
      }
    ]
  }
}

getAllObservation

Response

Returns [IntegrationObservation!]!

Example

Query
query getAllObservation {
  getAllObservation {
    id
    created
    updated
    integrationId
    lastStartDate
    lastEndDate
    duration
    error
    status
    records {
      ...IntegrationObservationRecordFragment
    }
  }
}
Response
{
  "data": {
    "getAllObservation": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "integrationId": HashedId,
        "lastStartDate": "2007-12-03T10:15:30Z",
        "lastEndDate": "2007-12-03T10:15:30Z",
        "duration": 987.65,
        "error": "abc123",
        "status": "PENDING",
        "records": [IntegrationObservationRecord]
      }
    ]
  }
}

getAllObservationPaginated

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query getAllObservationPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  getAllObservationPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    rows {
      ...IntegrationObservationFragment
    }
    meta {
      ...PaginationMetaFragment
    }
    total
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "getAllObservationPaginated": {
      "rows": [IntegrationObservation],
      "meta": PaginationMeta,
      "total": 123
    }
  }
}

getAllUserGroups

Use groups field on user
Response

Returns [Group!]!

Example

Query
query getAllUserGroups {
  getAllUserGroups {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Response
{
  "data": {
    "getAllUserGroups": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "xyz789",
        "parentGroupId": HashedId,
        "isRoot": true,
        "image": "xyz789",
        "isCustomer": false,
        "identificationNumber": "xyz789",
        "vatNumber": "abc123",
        "rootGroupId": HashedId,
        "handlerAlias": "abc123",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": false,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": false,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": false,
        "customerRootGroup": Group,
        "rootGroupName": "xyz789",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "abc123",
        "parentName": "xyz789",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

getAssetsAffectedByGroupChange

Response

Returns an Int!

Arguments
Name Description
id - HashedId!
groupId - HashedId!

Example

Query
query getAssetsAffectedByGroupChange(
  $id: HashedId!,
  $groupId: HashedId!
) {
  getAssetsAffectedByGroupChange(
    id: $id,
    groupId: $groupId
  )
}
Variables
{
  "id": HashedId,
  "groupId": HashedId
}
Response
{"data": {"getAssetsAffectedByGroupChange": 987}}

getCurrentGroupChildren

Response

Returns [Group!]!

Example

Query
query getCurrentGroupChildren {
  getCurrentGroupChildren {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Response
{
  "data": {
    "getCurrentGroupChildren": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "xyz789",
        "parentGroupId": HashedId,
        "isRoot": true,
        "image": "abc123",
        "isCustomer": true,
        "identificationNumber": "xyz789",
        "vatNumber": "abc123",
        "rootGroupId": HashedId,
        "handlerAlias": "abc123",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": false,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": false,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": false,
        "customerRootGroup": Group,
        "rootGroupName": "abc123",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "abc123",
        "parentName": "xyz789",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

getGroupById

Response

Returns a Group

Arguments
Name Description
id - HashedId!

Example

Query
query getGroupById($id: HashedId!) {
  getGroupById(id: $id) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "getGroupById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "parentGroupId": HashedId,
      "isRoot": false,
      "image": "xyz789",
      "isCustomer": false,
      "identificationNumber": "xyz789",
      "vatNumber": "xyz789",
      "rootGroupId": HashedId,
      "handlerAlias": "abc123",
      "treeRootId": HashedId,
      "servicePackageId": HashedId,
      "flowId": HashedId,
      "roleIds": [HashedId],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "parentGroup": Group,
      "services": [Service],
      "servicesV2": [Service],
      "servicePackage": ServicePackage,
      "flow": ServicePackage,
      "internalSettings": {},
      "hasTicketHandling": false,
      "flowMaintainers": [NotificationRelation],
      "settings": {},
      "assetLocationsHidden": true,
      "nonCustomerParentGroup": Group,
      "childGroups": [Group],
      "childGroupIds": [HashedId],
      "belongsToCurrentGroup": true,
      "customerRootGroup": Group,
      "rootGroupName": "abc123",
      "userRequestNotifiers": [NotificationRelation],
      "customerName": "abc123",
      "parentName": "xyz789",
      "groupTypeId": HashedId,
      "assets": [Asset],
      "assetIds": [HashedId],
      "maintainedManufacturer": [Manufacturer],
      "maintainedManufacturerId": [HashedId],
      "userIds": [HashedId],
      "users": [User],
      "servicePackageV2": ServicePackage,
      "groupType": ServicePackage
    }
  }
}

getGroupByIds

Response

Returns [Group!]!

Arguments
Name Description
ids - [HashedId!]!

Example

Query
query getGroupByIds($ids: [HashedId!]!) {
  getGroupByIds(ids: $ids) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{"ids": [HashedId]}
Response
{
  "data": {
    "getGroupByIds": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "parentGroupId": HashedId,
        "isRoot": true,
        "image": "xyz789",
        "isCustomer": true,
        "identificationNumber": "xyz789",
        "vatNumber": "abc123",
        "rootGroupId": HashedId,
        "handlerAlias": "xyz789",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": false,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": true,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": false,
        "customerRootGroup": Group,
        "rootGroupName": "xyz789",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "xyz789",
        "parentName": "xyz789",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

getObservationRecords

Arguments
Name Description
observationId - HashedId!

Example

Query
query getObservationRecords($observationId: HashedId!) {
  getObservationRecords(observationId: $observationId) {
    id
    created
    updated
    name
    createdCount
    updatedCount
    deletedCount
  }
}
Variables
{"observationId": HashedId}
Response
{
  "data": {
    "getObservationRecords": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "SITE",
        "createdCount": 123.45,
        "updatedCount": 123.45,
        "deletedCount": 987.65
      }
    ]
  }
}

getQRCodeURLPrefix

Response

Returns a String!

Example

Query
query getQRCodeURLPrefix {
  getQRCodeURLPrefix
}
Response
{"data": {"getQRCodeURLPrefix": "abc123"}}

getServiceContent

not used. only not to brake the mobile app
Response

Returns a ServiceContent

Example

Query
query getServiceContent {
  getServiceContent {
    contentType
    content
  }
}
Response
{
  "data": {
    "getServiceContent": {
      "contentType": "abc123",
      "content": "abc123"
    }
  }
}

getSiteManagerTodos

Response

Returns [SiteManagerTodos!]

Arguments
Name Description
emails - [String!]
userIds - [Int!]

Example

Query
query getSiteManagerTodos(
  $emails: [String!],
  $userIds: [Int!]
) {
  getSiteManagerTodos(
    emails: $emails,
    userIds: $userIds
  ) {
    checkRequired {
      ...AssetFragment
    }
    checkRequiredCount
    checkRequiredFilterLink
    checkThisMonth {
      ...AssetFragment
    }
    checkThisMonthCount
    checkThisMonthFilterLink
    checkThisWeek {
      ...AssetFragment
    }
    checkThisWeekCount
    checkThisWeekFilterLink
    checkUpcoming {
      ...AssetFragment
    }
    checkUpcomingCount
    checkUpcomingFilterLink
    damaged {
      ...AssetFragment
    }
    damagedCount
    damagedFilterLink
    inRepair {
      ...AssetFragment
    }
    inRepairCount
    inRepairFilterLink
    leasingEndExceeded {
      ...AssetFragment
    }
    leasingEndExceededCount
    leasingEndExceededFilterLink
    leasingEndThisMonth {
      ...AssetFragment
    }
    leasingEndThisMonthCount
    leasingEndThisMonthFilterLink
    leasingEndThisWeek {
      ...AssetFragment
    }
    leasingEndThisWeekCount
    leasingEndThisWeekFilterLink
    leasingEndUpcoming {
      ...AssetFragment
    }
    leasingEndUpcomingCount
    leasingEndUpcomingFilterLink
    maintenanceRequired {
      ...AssetFragment
    }
    maintenanceRequiredCount
    maintenanceRequiredFilterLink
    maintenanceThisMonth {
      ...AssetFragment
    }
    maintenanceThisMonthCount
    maintenanceThisMonthFilterLink
    maintenanceThisWeek {
      ...AssetFragment
    }
    maintenanceThisWeekCount
    maintenanceThisWeekFilterLink
    maintenanceUpcoming {
      ...AssetFragment
    }
    maintenanceUpcomingCount
    maintenanceUpcomingFilterLink
    noAction {
      ...AssetFragment
    }
    noActionCount
    noActionFilterLink
    noCheckPlanned {
      ...AssetFragment
    }
    noCheckPlannedCount
    noCheckPlannedFilterLink
    noLeasingEnd {
      ...AssetFragment
    }
    noLeasingEndCount
    noLeasingEndFilterLink
    noMaintenancePlanned {
      ...AssetFragment
    }
    noMaintenancePlannedCount
    noMaintenancePlannedFilterLink
    noRentalEnd {
      ...AssetFragment
    }
    noRentalEndCount
    noRentalEndFilterLink
    noServiceContractEnd {
      ...AssetFragment
    }
    noServiceContractEndCount
    noServiceContractEndFilterLink
    noWarrantyEnd {
      ...AssetFragment
    }
    noWarrantyEndCount
    noWarrantyEndFilterLink
    ordered {
      ...AssetFragment
    }
    orderedCount
    orderedFilterLink
    readyToUse {
      ...AssetFragment
    }
    readyToUseCount
    readyToUseFilterLink
    rentalEndExceeded {
      ...AssetFragment
    }
    rentalEndExceededCount
    rentalEndExceededFilterLink
    rentalEndThisMonth {
      ...AssetFragment
    }
    rentalEndThisMonthCount
    rentalEndThisMonthFilterLink
    rentalEndThisWeek {
      ...AssetFragment
    }
    rentalEndThisWeekCount
    rentalEndThisWeekFilterLink
    rentalEndUpcoming {
      ...AssetFragment
    }
    rentalEndUpcomingCount
    rentalEndUpcomingFilterLink
    retired {
      ...AssetFragment
    }
    retiredCount
    retiredFilterLink
    serviceContractEndExceeded {
      ...AssetFragment
    }
    serviceContractEndExceededCount
    serviceContractEndExceededFilterLink
    serviceContractEndThisMonth {
      ...AssetFragment
    }
    serviceContractEndThisMonthCount
    serviceContractEndThisMonthFilterLink
    serviceContractEndThisWeek {
      ...AssetFragment
    }
    serviceContractEndThisWeekCount
    serviceContractEndThisWeekFilterLink
    serviceContractEndUpcoming {
      ...AssetFragment
    }
    serviceContractEndUpcomingCount
    serviceContractEndUpcomingFilterLink
    siteManagerEmail
    warehouse {
      ...AssetFragment
    }
    warehouseCount
    warehouseFilterLink
    warrantyEndExceeded {
      ...AssetFragment
    }
    warrantyEndExceededCount
    warrantyEndExceededFilterLink
    warrantyEndThisMonth {
      ...AssetFragment
    }
    warrantyEndThisMonthCount
    warrantyEndThisMonthFilterLink
    warrantyEndThisWeek {
      ...AssetFragment
    }
    warrantyEndThisWeekCount
    warrantyEndThisWeekFilterLink
    warrantyEndUpcoming {
      ...AssetFragment
    }
    warrantyEndUpcomingCount
    warrantyEndUpcomingFilterLink
  }
}
Variables
{"emails": ["abc123"], "userIds": [123]}
Response
{
  "data": {
    "getSiteManagerTodos": [
      {
        "checkRequired": [Asset],
        "checkRequiredCount": 987,
        "checkRequiredFilterLink": "xyz789",
        "checkThisMonth": [Asset],
        "checkThisMonthCount": 987,
        "checkThisMonthFilterLink": "xyz789",
        "checkThisWeek": [Asset],
        "checkThisWeekCount": 987,
        "checkThisWeekFilterLink": "abc123",
        "checkUpcoming": [Asset],
        "checkUpcomingCount": 987,
        "checkUpcomingFilterLink": "abc123",
        "damaged": [Asset],
        "damagedCount": 123,
        "damagedFilterLink": "xyz789",
        "inRepair": [Asset],
        "inRepairCount": 123,
        "inRepairFilterLink": "abc123",
        "leasingEndExceeded": [Asset],
        "leasingEndExceededCount": 987,
        "leasingEndExceededFilterLink": "xyz789",
        "leasingEndThisMonth": [Asset],
        "leasingEndThisMonthCount": 987,
        "leasingEndThisMonthFilterLink": "abc123",
        "leasingEndThisWeek": [Asset],
        "leasingEndThisWeekCount": 987,
        "leasingEndThisWeekFilterLink": "abc123",
        "leasingEndUpcoming": [Asset],
        "leasingEndUpcomingCount": 987,
        "leasingEndUpcomingFilterLink": "xyz789",
        "maintenanceRequired": [Asset],
        "maintenanceRequiredCount": 123,
        "maintenanceRequiredFilterLink": "abc123",
        "maintenanceThisMonth": [Asset],
        "maintenanceThisMonthCount": 987,
        "maintenanceThisMonthFilterLink": "abc123",
        "maintenanceThisWeek": [Asset],
        "maintenanceThisWeekCount": 987,
        "maintenanceThisWeekFilterLink": "xyz789",
        "maintenanceUpcoming": [Asset],
        "maintenanceUpcomingCount": 123,
        "maintenanceUpcomingFilterLink": "xyz789",
        "noAction": [Asset],
        "noActionCount": 123,
        "noActionFilterLink": "xyz789",
        "noCheckPlanned": [Asset],
        "noCheckPlannedCount": 987,
        "noCheckPlannedFilterLink": "xyz789",
        "noLeasingEnd": [Asset],
        "noLeasingEndCount": 987,
        "noLeasingEndFilterLink": "xyz789",
        "noMaintenancePlanned": [Asset],
        "noMaintenancePlannedCount": 987,
        "noMaintenancePlannedFilterLink": "xyz789",
        "noRentalEnd": [Asset],
        "noRentalEndCount": 987,
        "noRentalEndFilterLink": "xyz789",
        "noServiceContractEnd": [Asset],
        "noServiceContractEndCount": 123,
        "noServiceContractEndFilterLink": "abc123",
        "noWarrantyEnd": [Asset],
        "noWarrantyEndCount": 987,
        "noWarrantyEndFilterLink": "abc123",
        "ordered": [Asset],
        "orderedCount": 123,
        "orderedFilterLink": "xyz789",
        "readyToUse": [Asset],
        "readyToUseCount": 987,
        "readyToUseFilterLink": "xyz789",
        "rentalEndExceeded": [Asset],
        "rentalEndExceededCount": 987,
        "rentalEndExceededFilterLink": "xyz789",
        "rentalEndThisMonth": [Asset],
        "rentalEndThisMonthCount": 987,
        "rentalEndThisMonthFilterLink": "xyz789",
        "rentalEndThisWeek": [Asset],
        "rentalEndThisWeekCount": 123,
        "rentalEndThisWeekFilterLink": "xyz789",
        "rentalEndUpcoming": [Asset],
        "rentalEndUpcomingCount": 987,
        "rentalEndUpcomingFilterLink": "xyz789",
        "retired": [Asset],
        "retiredCount": 987,
        "retiredFilterLink": "xyz789",
        "serviceContractEndExceeded": [Asset],
        "serviceContractEndExceededCount": 123,
        "serviceContractEndExceededFilterLink": "xyz789",
        "serviceContractEndThisMonth": [Asset],
        "serviceContractEndThisMonthCount": 123,
        "serviceContractEndThisMonthFilterLink": "xyz789",
        "serviceContractEndThisWeek": [Asset],
        "serviceContractEndThisWeekCount": 987,
        "serviceContractEndThisWeekFilterLink": "xyz789",
        "serviceContractEndUpcoming": [Asset],
        "serviceContractEndUpcomingCount": 123,
        "serviceContractEndUpcomingFilterLink": "xyz789",
        "siteManagerEmail": "xyz789",
        "warehouse": [Asset],
        "warehouseCount": 987,
        "warehouseFilterLink": "xyz789",
        "warrantyEndExceeded": [Asset],
        "warrantyEndExceededCount": 123,
        "warrantyEndExceededFilterLink": "abc123",
        "warrantyEndThisMonth": [Asset],
        "warrantyEndThisMonthCount": 123,
        "warrantyEndThisMonthFilterLink": "abc123",
        "warrantyEndThisWeek": [Asset],
        "warrantyEndThisWeekCount": 123,
        "warrantyEndThisWeekFilterLink": "xyz789",
        "warrantyEndUpcoming": [Asset],
        "warrantyEndUpcomingCount": 987,
        "warrantyEndUpcomingFilterLink": "abc123"
      }
    ]
  }
}

getViews

Description

get all asset views for the logged in user

Response

Returns [AssetView!]!

Arguments
Name Description
forEntity - ViewEntityEnum!

Example

Query
query getViews($forEntity: ViewEntityEnum!) {
  getViews(forEntity: $forEntity) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...AssetViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"forEntity": "ASSET"}
Response
{
  "data": {
    "getViews": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "forEntity": "ASSET",
        "displayMode": "LIST",
        "options": AssetViewOptions,
        "isActive": true,
        "isSystemView": true,
        "isShared": false,
        "isEditable": true,
        "isDeletable": true,
        "isShareable": false,
        "isUnsharedByParentGroup": true,
        "title": Translation
      }
    ]
  }
}

group

Use getAll, getAllChildren, getById and getByIds queries instead
Response

Returns [Group!]!

Arguments
Name Description
id - [HashedId!]
getAll - Boolean Returns the full group tree for the user, regardless of the custom view group settings (see docs intro)
getAllChildren - Boolean Return all descendents of this group in addition to the group
related - Boolean Return all related groups of this group (all groups which have an asset which also belongs to this group)
getRawFlow - Boolean Returns raw flow without parsing if set true (default false)

Example

Query
query group(
  $id: [HashedId!],
  $getAll: Boolean,
  $getAllChildren: Boolean,
  $related: Boolean,
  $getRawFlow: Boolean
) {
  group(
    id: $id,
    getAll: $getAll,
    getAllChildren: $getAllChildren,
    related: $related,
    getRawFlow: $getRawFlow
  ) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "getAll": false,
  "getAllChildren": false,
  "related": false,
  "getRawFlow": false
}
Response
{
  "data": {
    "group": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "parentGroupId": HashedId,
        "isRoot": true,
        "image": "xyz789",
        "isCustomer": true,
        "identificationNumber": "abc123",
        "vatNumber": "abc123",
        "rootGroupId": HashedId,
        "handlerAlias": "abc123",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": true,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": true,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": true,
        "customerRootGroup": Group,
        "rootGroupName": "xyz789",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "xyz789",
        "parentName": "abc123",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

groupSettingsSource

Response

Returns a Group

Arguments
Name Description
groupId - HashedId!
property - String!

Example

Query
query groupSettingsSource(
  $groupId: HashedId!,
  $property: String!
) {
  groupSettingsSource(
    groupId: $groupId,
    property: $property
  ) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{
  "groupId": HashedId,
  "property": "xyz789"
}
Response
{
  "data": {
    "groupSettingsSource": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "parentGroupId": HashedId,
      "isRoot": false,
      "image": "xyz789",
      "isCustomer": false,
      "identificationNumber": "xyz789",
      "vatNumber": "abc123",
      "rootGroupId": HashedId,
      "handlerAlias": "xyz789",
      "treeRootId": HashedId,
      "servicePackageId": HashedId,
      "flowId": HashedId,
      "roleIds": [HashedId],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "parentGroup": Group,
      "services": [Service],
      "servicesV2": [Service],
      "servicePackage": ServicePackage,
      "flow": ServicePackage,
      "internalSettings": {},
      "hasTicketHandling": false,
      "flowMaintainers": [NotificationRelation],
      "settings": {},
      "assetLocationsHidden": false,
      "nonCustomerParentGroup": Group,
      "childGroups": [Group],
      "childGroupIds": [HashedId],
      "belongsToCurrentGroup": true,
      "customerRootGroup": Group,
      "rootGroupName": "abc123",
      "userRequestNotifiers": [NotificationRelation],
      "customerName": "abc123",
      "parentName": "xyz789",
      "groupTypeId": HashedId,
      "assets": [Asset],
      "assetIds": [HashedId],
      "maintainedManufacturer": [Manufacturer],
      "maintainedManufacturerId": [HashedId],
      "userIds": [HashedId],
      "users": [User],
      "servicePackageV2": ServicePackage,
      "groupType": ServicePackage
    }
  }
}

handlers

Response

Returns [AvailableHandler!]!

Arguments
Name Description
query - String
additionalItemId - String

Example

Query
query handlers(
  $query: String,
  $additionalItemId: String
) {
  handlers(
    query: $query,
    additionalItemId: $additionalItemId
  ) {
    id
    subLabel
    displayName
    handlerType
  }
}
Variables
{
  "query": "abc123",
  "additionalItemId": "xyz789"
}
Response
{
  "data": {
    "handlers": [
      {
        "id": "abc123",
        "subLabel": "abc123",
        "displayName": "abc123",
        "handlerType": "EXTERNALEMAIL"
      }
    ]
  }
}

integrationConfigs

Response

Returns [Integration!]!

Example

Query
query integrationConfigs {
  integrationConfigs {
    id
    created
    updated
    name
    config {
      ...IntegrationConfigKeyFragment
    }
  }
}
Response
{
  "data": {
    "integrationConfigs": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "WISAG",
        "config": [IntegrationConfigKey]
      }
    ]
  }
}

language

Response

Returns [LanguageV2!]!

Arguments
Name Description
id - [HashedId]

Example

Query
query language($id: [HashedId]) {
  language(id: $id) {
    id
    created
    updated
    code
    name
    nameNative
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "language": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "code": "en_us",
        "name": "English",
        "nameNative": "xyz789"
      }
    ]
  }
}

loginInterrupt

Response

Returns [LoginInterrupt!]

Arguments
Name Description
id - [HashedId!]

Example

Query
query loginInterrupt($id: [HashedId!]) {
  loginInterrupt(id: $id) {
    id
    title {
      ...TranslationFragment
    }
    titleId
    content {
      ...TranslationFragment
    }
    contentId
    visibleToGroupIds
    visibleToGroups {
      ...GroupFragment
    }
    created
    updated
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "loginInterrupt": [
      {
        "id": HashedId,
        "title": Translation,
        "titleId": HashedId,
        "content": Translation,
        "contentId": HashedId,
        "visibleToGroupIds": [HashedId],
        "visibleToGroups": [Group],
        "created": 1592577642,
        "updated": 1592577642
      }
    ]
  }
}

machineChecksStats

Response

Returns [MachineCheckStat!]!

Example

Query
query machineChecksStats {
  machineChecksStats {
    period
    quantity
  }
}
Response
{
  "data": {
    "machineChecksStats": [
      {"period": "abc123", "quantity": 123}
    ]
  }
}

manufacturer

Query will be removed. Use findManufacturersByIds, findManufacturersByGroupIds, findManufacturerByName, findManufacturerByNameKey instead
Response

Returns [Manufacturer!]!

Arguments
Name Description
id - [HashedId!]
name - String
nameKey - String normalized single-word ansi name in all caps
maintainedByGroupId - [HashedId!] manufacturers can be queried against a specific group

Example

Query
query manufacturer(
  $id: [HashedId!],
  $name: String,
  $nameKey: String,
  $maintainedByGroupId: [HashedId!]
) {
  manufacturer(
    id: $id,
    name: $name,
    nameKey: $nameKey,
    maintainedByGroupId: $maintainedByGroupId
  ) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{
  "id": [HashedId],
  "name": "xyz789",
  "nameKey": "abc123",
  "maintainedByGroupId": [HashedId]
}
Response
{
  "data": {
    "manufacturer": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "xyz789",
        "nameKey": "xyz789",
        "notificationsEnabled": true,
        "maintainedByGroupId": 123,
        "maintainedByGroup": Group,
        "assetIntegrations": [AssetIntegration],
        "assetIntegrationIds": [HashedId]
      }
    ]
  }
}

manufacturers

Description

Get manufacturers list, belong to users root group (filtered results if search key is provided)

Response

Returns [String!]

Arguments
Name Description
search - String

Example

Query
query manufacturers($search: String) {
  manufacturers(search: $search)
}
Variables
{"search": "xyz789"}
Response
{"data": {"manufacturers": ["xyz789"]}}

module

Response

Returns [Module!]!

Arguments
Name Description
id - [HashedId!]
imei - [String!]
stripeCustomerIdDefined - Boolean

Example

Query
query module(
  $id: [HashedId!],
  $imei: [String!],
  $stripeCustomerIdDefined: Boolean
) {
  module(
    id: $id,
    imei: $imei,
    stripeCustomerIdDefined: $stripeCustomerIdDefined
  ) {
    id
    created
    updated
    imei
    controlId
    stripeCustomerId
    stripePriceId
    moduleTypeId
    moduleRevision
    moduleVersionNr
    assetVersionNr
    assignedToAsset {
      ...AssetFragment
    }
    assignedToAssetId
    assignedToAssets {
      ...AssetFragment
    }
    assignedToAssetIds
    currentPrice
    isFake
    moduleType {
      ...ModuleTypeFragment
    }
    price {
      ...StripePriceFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "imei": ["xyz789"],
  "stripeCustomerIdDefined": false
}
Response
{
  "data": {
    "module": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "imei": "xyz789",
        "controlId": "abc123",
        "stripeCustomerId": "abc123",
        "stripePriceId": "xyz789",
        "moduleTypeId": HashedId,
        "moduleRevision": "xyz789",
        "moduleVersionNr": "abc123",
        "assetVersionNr": "abc123",
        "assignedToAsset": Asset,
        "assignedToAssetId": HashedId,
        "assignedToAssets": [Asset],
        "assignedToAssetIds": [HashedId],
        "currentPrice": 123.45,
        "isFake": false,
        "moduleType": ModuleType,
        "price": StripePrice
      }
    ]
  }
}

moduleUsageInfo

Response

Returns a ModuleUsageInfo!

Arguments
Name Description
imei - String! IMEI of the module
assetId - HashedId

Example

Query
query moduleUsageInfo(
  $imei: String!,
  $assetId: HashedId
) {
  moduleUsageInfo(
    imei: $imei,
    assetId: $assetId
  ) {
    id
    hasConnectedAssets
    canBeReused
    canBeTransferred
    primarySerial
  }
}
Variables
{
  "imei": "xyz789",
  "assetId": HashedId
}
Response
{
  "data": {
    "moduleUsageInfo": {
      "id": HashedId,
      "hasConnectedAssets": false,
      "canBeReused": false,
      "canBeTransferred": true,
      "primarySerial": "xyz789"
    }
  }
}

modulesSubscriptions

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query modulesSubscriptions(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  modulesSubscriptions(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...ModuleSubscriptionFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "modulesSubscriptions": {
      "meta": PaginationMeta,
      "rows": [ModuleSubscription]
    }
  }
}

notificationConfig

Response

Returns a NotificationConfigDto!

Example

Query
query notificationConfig {
  notificationConfig {
    ticketPush
    ticketEmail
  }
}
Response
{"data": {"notificationConfig": {"ticketPush": false, "ticketEmail": false}}}

ownershipEnum

Response

Returns an OwnershipValArray

Example

Query
query ownershipEnum {
  ownershipEnum {
    data
  }
}
Response
{"data": {"ownershipEnum": {"data": ["PURCHASE"]}}}

parameter

Description

@assetId: specify an asset to list all the parameters associated with it @assetIntegrationId: specify an integration to list all the parameters associated with it @historicalParameters: by default only currently associated parameters are selected. When set to true, all parameters ever associated will be listed. @onlyGraphValues: filter out parameters for which values can't be displayed on a graph (eg. imei, id, or latitude)

Response

Returns [ParameterResult!]

Arguments
Name Description
id - [HashedId!]
assetId - [HashedId!]
assetIntegrationId - HashedId
historicalParameters - Boolean
onlyGraphValues - Boolean
onlyOffsetParams - Boolean

Example

Query
query parameter(
  $id: [HashedId!],
  $assetId: [HashedId!],
  $assetIntegrationId: HashedId,
  $historicalParameters: Boolean,
  $onlyGraphValues: Boolean,
  $onlyOffsetParams: Boolean
) {
  parameter(
    id: $id,
    assetId: $assetId,
    assetIntegrationId: $assetIntegrationId,
    historicalParameters: $historicalParameters,
    onlyGraphValues: $onlyGraphValues,
    onlyOffsetParams: $onlyOffsetParams
  ) {
    assetId
    parameter {
      ...ParameterFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "assetId": [HashedId],
  "assetIntegrationId": HashedId,
  "historicalParameters": true,
  "onlyGraphValues": false,
  "onlyOffsetParams": false
}
Response
{
  "data": {
    "parameter": [
      {
        "assetId": HashedId,
        "parameter": [Parameter]
      }
    ]
  }
}

parameterSet

Description

graphableParameters: only list parameters which can be displayed on a graph (eg. hide values like imei, id, or latitude)

Response

Returns [ParameterSet!]

Arguments
Name Description
id - [HashedId!]
graphableParameters - Boolean

Example

Query
query parameterSet(
  $id: [HashedId!],
  $graphableParameters: Boolean
) {
  parameterSet(
    id: $id,
    graphableParameters: $graphableParameters
  ) {
    id
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    parameters {
      ...ParameterFragment
    }
  }
}
Variables
{"id": [HashedId], "graphableParameters": true}
Response
{
  "data": {
    "parameterSet": [
      {
        "id": HashedId,
        "title": Translation,
        "titleId": HashedId,
        "description": Translation,
        "descriptionId": HashedId,
        "parameters": [Parameter]
      }
    ]
  }
}

part

Response

Returns a Part!

Arguments
Name Description
id - HashedId!

Example

Query
query part($id: HashedId!) {
  part(id: $id) {
    id
    created
    updated
    publicId
    type
    nameId
    name {
      ...TranslationFragment
    }
    descriptionId
    description {
      ...TranslationFragment
    }
    siteId
    site {
      ...SiteFragment
    }
    area
    availableQuantity
    minQuantity
    maxQuantity
    unitOfMeasure
    unitCost
    currency
    totalStockValue
    groupId
    group {
      ...GroupFragment
    }
    customerId
    customer {
      ...GroupFragment
    }
    externalId
    uuid
    qrAttached
    brand
    previousQuantity
    responsiblePerson
    vendor
    image
    shouldNotifyCriticalStockLevel
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    createdByGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByUserId
    createdByUser {
      ...UserFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "part": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "publicId": 123,
      "type": "abc123",
      "nameId": HashedId,
      "name": Translation,
      "descriptionId": HashedId,
      "description": Translation,
      "siteId": HashedId,
      "site": Site,
      "area": "xyz789",
      "availableQuantity": 123,
      "minQuantity": 123,
      "maxQuantity": 987,
      "unitOfMeasure": "xyz789",
      "unitCost": 123.45,
      "currency": "abc123",
      "totalStockValue": 123.45,
      "groupId": HashedId,
      "group": Group,
      "customerId": HashedId,
      "customer": Group,
      "externalId": "abc123",
      "uuid": "abc123",
      "qrAttached": true,
      "brand": "xyz789",
      "previousQuantity": 987,
      "responsiblePerson": "abc123",
      "vendor": "xyz789",
      "image": "xyz789",
      "shouldNotifyCriticalStockLevel": false,
      "sendNotificationsTo": [RuleNotificationRelation],
      "documents": [Document],
      "events": [Event],
      "createdByGroupId": HashedId,
      "createdByGroup": Group,
      "createdByUserId": HashedId,
      "createdByUser": User
    }
  }
}

partList

Response

Returns a PartPaginatedResult!

Arguments
Name Description
search - String
filters - [FilterParamsInput]

Example

Query
query partList(
  $search: String,
  $filters: [FilterParamsInput]
) {
  partList(
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...PartFragment
    }
  }
}
Variables
{
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "partList": {
      "meta": PaginationMeta,
      "rows": [Part]
    }
  }
}

partPaginated

Response

Returns a PartPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query partPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  partPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...PartFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "partPaginated": {
      "meta": PaginationMeta,
      "rows": [Part]
    }
  }
}

partStatisticData

Response

Returns a PartStatisticData!

Arguments
Name Description
partId - HashedId!
siteId - HashedId!
parameterId - HashedId

Example

Query
query partStatisticData(
  $partId: HashedId!,
  $siteId: HashedId!,
  $parameterId: HashedId
) {
  partStatisticData(
    partId: $partId,
    siteId: $siteId,
    parameterId: $parameterId
  ) {
    part {
      ...PartFragment
    }
    parameters {
      ...PartParameterFragment
    }
    timestamps
    values
  }
}
Variables
{
  "partId": HashedId,
  "siteId": HashedId,
  "parameterId": HashedId
}
Response
{
  "data": {
    "partStatisticData": {
      "part": Part,
      "parameters": [PartParameter],
      "timestamps": [1592577642],
      "values": [987.65]
    }
  }
}

processedAssetData

Description

Returns an array of string including

Response

Returns [ProcessedAssetData!]!

Arguments
Name Description
assetId - [HashedId!]!
parameterId - [HashedId!]! The ids of the parameters which should be loaded for the specified assets
from - Timestamp The from date of the requested data (default first entry of asset)
to - Timestamp The to date of the requested data (default now)
closest - Timestamp Matches a single data closest to the given date, this will ignore properties from and to
onlyOffsetValues - Boolean! Default = false
excludeOffsets - Boolean
syntheticParameter - AssetSyntheticParameterEnum

Example

Query
query processedAssetData(
  $assetId: [HashedId!]!,
  $parameterId: [HashedId!]!,
  $from: Timestamp,
  $to: Timestamp,
  $closest: Timestamp,
  $onlyOffsetValues: Boolean!,
  $excludeOffsets: Boolean,
  $syntheticParameter: AssetSyntheticParameterEnum
) {
  processedAssetData(
    assetId: $assetId,
    parameterId: $parameterId,
    from: $from,
    to: $to,
    closest: $closest,
    onlyOffsetValues: $onlyOffsetValues,
    excludeOffsets: $excludeOffsets,
    syntheticParameter: $syntheticParameter
  ) {
    asset {
      ...AssetFragment
    }
    parameters {
      ...ParameterFragment
    }
    values
    timestamps
  }
}
Variables
{
  "assetId": [HashedId],
  "parameterId": [HashedId],
  "from": 1592577642,
  "to": 1592577642,
  "closest": 1592577642,
  "onlyOffsetValues": false,
  "excludeOffsets": false,
  "syntheticParameter": "BATTERY"
}
Response
{
  "data": {
    "processedAssetData": [
      {
        "asset": Asset,
        "parameters": [Parameter],
        "values": [987.65],
        "timestamps": [1592577642]
      }
    ]
  }
}

publishMessageToMqtt

Response

Returns a Boolean

Arguments
Name Description
assetId - HashedId!
messageType - MqttMessageType!

Example

Query
query publishMessageToMqtt(
  $assetId: HashedId!,
  $messageType: MqttMessageType!
) {
  publishMessageToMqtt(
    assetId: $assetId,
    messageType: $messageType
  )
}
Variables
{"assetId": HashedId, "messageType": "LOCK"}
Response
{"data": {"publishMessageToMqtt": true}}

registrationRequest

Description

If no id given, the requests of the user's root group are listed

Response

Returns [RegistrationRequest!]!

Arguments
Name Description
id - [HashedId!]

Example

Query
query registrationRequest($id: [HashedId!]) {
  registrationRequest(id: $id) {
    id
    created
    updated
    forGroupId
    firstname
    lastname
    email
    phone
    companyAddress
    customerNumber
    dealerName
    groupName
    acceptedTermsVersionId
    salesRepresentative
    vatNumber
    languageId
    isProcessed
    isActive
    resultingUserId
    isDenied
    denialMessage
    processedByUserId
    resultingGroupId
    assetsCount
    forGroup {
      ...GroupFragment
    }
    resultingUser {
      ...UserFragment
    }
    processedByUser {
      ...UserFragment
    }
    resultingGroup {
      ...GroupFragment
    }
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "registrationRequest": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "forGroupId": HashedId,
        "firstname": "abc123",
        "lastname": "xyz789",
        "email": "xyz789",
        "phone": "xyz789",
        "companyAddress": "abc123",
        "customerNumber": "abc123",
        "dealerName": "xyz789",
        "groupName": "xyz789",
        "acceptedTermsVersionId": HashedId,
        "salesRepresentative": "abc123",
        "vatNumber": "xyz789",
        "languageId": HashedId,
        "isProcessed": false,
        "isActive": true,
        "resultingUserId": HashedId,
        "isDenied": true,
        "denialMessage": "abc123",
        "processedByUserId": HashedId,
        "resultingGroupId": HashedId,
        "assetsCount": 987,
        "forGroup": Group,
        "resultingUser": User,
        "processedByUser": User,
        "resultingGroup": Group
      }
    ]
  }
}

reservation

Description

If no id given, reservations of the user's group are listed

Response

Returns [Reservation!]

Arguments
Name Description
id - [HashedId!]
assetId - [HashedId!]

Example

Query
query reservation(
  $id: [HashedId!],
  $assetId: [HashedId!]
) {
  reservation(
    id: $id,
    assetId: $assetId
  ) {
    id
    from
    until
    reserverName
    assets {
      ...AssetFragment
    }
    assetIds
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    notes {
      ...TranslationFragment
    }
    notesId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    created
    updated
  }
}
Variables
{
  "id": [HashedId],
  "assetId": [HashedId]
}
Response
{
  "data": {
    "reservation": [
      {
        "id": HashedId,
        "from": 1592577642,
        "until": 1592577642,
        "reserverName": "xyz789",
        "assets": [Asset],
        "assetIds": [HashedId],
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "notes": Translation,
        "notesId": HashedId,
        "createdByUser": User,
        "createdByUserId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "created": 1592577642,
        "updated": 1592577642
      }
    ]
  }
}

reservationsEnd

Description

List of the reservations created by the user's group that end in the range

Response

Returns [Reservation!]

Arguments
Name Description
from - Timestamp
to - Timestamp

Example

Query
query reservationsEnd(
  $from: Timestamp,
  $to: Timestamp
) {
  reservationsEnd(
    from: $from,
    to: $to
  ) {
    id
    from
    until
    reserverName
    assets {
      ...AssetFragment
    }
    assetIds
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    notes {
      ...TranslationFragment
    }
    notesId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    created
    updated
  }
}
Variables
{"from": 1592577642, "to": 1592577642}
Response
{
  "data": {
    "reservationsEnd": [
      {
        "id": HashedId,
        "from": 1592577642,
        "until": 1592577642,
        "reserverName": "abc123",
        "assets": [Asset],
        "assetIds": [HashedId],
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "notes": Translation,
        "notesId": HashedId,
        "createdByUser": User,
        "createdByUserId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "created": 1592577642,
        "updated": 1592577642
      }
    ]
  }
}

role

Response

Returns [Role!]!

Example

Query
query role {
  role {
    id
    created
    updated
    groupId
    key
    nameId
    name {
      ...TranslationFragment
    }
  }
}
Response
{
  "data": {
    "role": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "groupId": HashedId,
        "key": "SuperUser",
        "nameId": HashedId,
        "name": Translation
      }
    ]
  }
}

rule

Response

Returns [Rule]

Arguments
Name Description
id - [HashedId!]
isArchived - Boolean If true, archived values will also be returned. Note that archived rules can't be edited anymore
relation - String Only return rules with relations set here
relationValue - String Can be set when @relation is set. Only return rules with relation and relationValue set here
source - RuleSource

Example

Query
query rule(
  $id: [HashedId!],
  $isArchived: Boolean,
  $relation: String,
  $relationValue: String,
  $source: RuleSource
) {
  rule(
    id: $id,
    isArchived: $isArchived,
    relation: $relation,
    relationValue: $relationValue,
    source: $source
  ) {
    definition
    module {
      ...ModuleFragment
    }
    moduleId
    assetBlacklist {
      ...AssetFragment
    }
    assetBlacklistIds
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    duration
    relations {
      ...RuleRelationFragment
    }
    eventsConfigs {
      ...EventConfigFragment
    }
    id
    created
    updated
    title {
      ...TranslationFragment
    }
    description {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    eventStyle {
      ...EventStyleFragment
    }
    titleId
    descriptionId
    createdByGroupId
    createdByUserId
    assignedToGroupId
    eventStyleId
    isCritical
    isOnetime
    isImmediateNotification
    isGlobalRule
    manualDeactivation
    isArchived
    isOneshot
    isActive
    source
    enabled
    purpose
    publicId
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "isArchived": false,
  "relation": "xyz789",
  "relationValue": "xyz789",
  "source": "DATA"
}
Response
{
  "data": {
    "rule": [
      {
        "definition": {},
        "module": [Module],
        "moduleId": [HashedId],
        "assetBlacklist": [Asset],
        "assetBlacklistIds": [HashedId],
        "sendNotificationsTo": [RuleNotificationRelation],
        "duration": {},
        "relations": [RuleRelation],
        "eventsConfigs": [EventConfig],
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "title": Translation,
        "description": Translation,
        "createdByUser": User,
        "createdByGroup": Group,
        "assignedToGroup": Group,
        "eventStyle": EventStyle,
        "titleId": HashedId,
        "descriptionId": HashedId,
        "createdByGroupId": HashedId,
        "createdByUserId": HashedId,
        "assignedToGroupId": HashedId,
        "eventStyleId": HashedId,
        "isCritical": true,
        "isOnetime": false,
        "isImmediateNotification": false,
        "isGlobalRule": true,
        "manualDeactivation": false,
        "isArchived": true,
        "isOneshot": true,
        "isActive": true,
        "source": "DATA",
        "enabled": true,
        "purpose": "GEOFENCE",
        "publicId": "abc123",
        "services": [Service],
        "servicesV2": [Service]
      }
    ]
  }
}

ruleBlock

Description

@assetIntegrationId: filters ruleBlocks associated with the listed assetIntegrationId

Response

Returns [RuleBlock]

Arguments
Name Description
id - [HashedId]
assetIntegrationId - [HashedId]

Example

Query
query ruleBlock(
  $id: [HashedId],
  $assetIntegrationId: [HashedId]
) {
  ruleBlock(
    id: $id,
    assetIntegrationId: $assetIntegrationId
  ) {
    id
    title {
      ...TranslationFragment
    }
    titleId
    type
    parameterIdPreset
    op
    settings
  }
}
Variables
{
  "id": [HashedId],
  "assetIntegrationId": [HashedId]
}
Response
{
  "data": {
    "ruleBlock": [
      {
        "id": HashedId,
        "title": Translation,
        "titleId": HashedId,
        "type": "parameter_math",
        "parameterIdPreset": HashedId,
        "op": "abc123",
        "settings": {}
      }
    ]
  }
}

searchAssetTypes

Response

Returns [AssetType!]

Arguments
Name Description
id - [HashedId!]
query - String
make - String

Example

Query
query searchAssetTypes(
  $id: [HashedId!],
  $query: String,
  $make: String
) {
  searchAssetTypes(
    id: $id,
    query: $query,
    make: $make
  ) {
    id
    created
    updated
    forManufacturerId
    groupId
    servicePackageId
    hasAssortmentList
    externalId
    image
    inAssetCategoryId
    inAssetIntegrationId
    isApprovedAssetType
    isPrivate
    isVehicle
    isRoom
    make
    publicId
    nameId
    restrictedType
    preset
    presetInitialValue
    presetLeasingCostTermination
    presetLeasingLevel
    presetLeasingMonthlyCost
    presetLeasingPartner
    presetLeasingPartnerContractNumber
    presetLeasingPartnerContractPositionNumber
    presetLeasingRenewalRate
    presetLowValueAsset
    presetMachineCheckInterval
    presetMachineCheckLastCreated
    presetMachineCheckName
    presetOwnership
    presetPurchaseCost
    presetPurchaseDepriciation
    presetRentalCostTermination
    presetRentalMonthlyCost
    presetRentalRenewalRate
    presetServiceContractCostPerYear
    presetServiceContractEmail
    presetServiceContractLevel
    presetServiceContractPartner
    presetSupplier
    presetWarrantyPeriod
    isLockable
    isLockedState
    lockAssetTypeId
    hasVNC
    isPollingAvailable
    name {
      ...TranslationFragment
    }
    documents {
      ...DocumentFragment
    }
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnits {
      ...TranslationFragment
    }
    workUnitsPerHour
    workUnitId
    inAssetCategory {
      ...AssetCategoryFragment
    }
    group {
      ...GroupFragment
    }
    inAssetIntegration {
      ...AssetIntegrationFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
    namespace
    assetsCount
    userManual
    suggestedServicePartner
    suggestedPartner {
      ...AvailableHandlerFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    lockAssetType {
      ...AssetTypeFragment
    }
  }
}
Variables
{
  "id": [HashedId],
  "query": "abc123",
  "make": "xyz789"
}
Response
{
  "data": {
    "searchAssetTypes": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "hasAssortmentList": true,
        "externalId": "abc123",
        "image": "abc123",
        "inAssetCategoryId": HashedId,
        "inAssetIntegrationId": HashedId,
        "isApprovedAssetType": true,
        "isPrivate": false,
        "isVehicle": false,
        "isRoom": true,
        "make": "abc123",
        "publicId": 987,
        "nameId": HashedId,
        "restrictedType": false,
        "preset": false,
        "presetInitialValue": "xyz789",
        "presetLeasingCostTermination": "xyz789",
        "presetLeasingLevel": "abc123",
        "presetLeasingMonthlyCost": "xyz789",
        "presetLeasingPartner": "abc123",
        "presetLeasingPartnerContractNumber": "abc123",
        "presetLeasingPartnerContractPositionNumber": "abc123",
        "presetLeasingRenewalRate": "abc123",
        "presetLowValueAsset": true,
        "presetMachineCheckInterval": 987,
        "presetMachineCheckLastCreated": true,
        "presetMachineCheckName": "abc123",
        "presetOwnership": "PURCHASE",
        "presetPurchaseCost": "abc123",
        "presetPurchaseDepriciation": 123,
        "presetRentalCostTermination": "abc123",
        "presetRentalMonthlyCost": "abc123",
        "presetRentalRenewalRate": "xyz789",
        "presetServiceContractCostPerYear": "xyz789",
        "presetServiceContractEmail": "xyz789",
        "presetServiceContractLevel": "abc123",
        "presetServiceContractPartner": "xyz789",
        "presetSupplier": "xyz789",
        "presetWarrantyPeriod": 987,
        "isLockable": false,
        "isLockedState": false,
        "lockAssetTypeId": HashedId,
        "hasVNC": true,
        "isPollingAvailable": false,
        "name": Translation,
        "documents": [Document],
        "minimalBatteryVoltage": 123.45,
        "nominalBatteryVoltage": 123.45,
        "optimalBatteryVoltage": 987.65,
        "optimalRuntime": 987.65,
        "parentParameterKey": "runtime",
        "workUnits": Translation,
        "workUnitsPerHour": 123.45,
        "workUnitId": HashedId,
        "inAssetCategory": AssetCategory,
        "group": Group,
        "inAssetIntegration": AssetIntegration,
        "forManufacturer": Manufacturer,
        "namespace": "xyz789",
        "assetsCount": 987,
        "userManual": "abc123",
        "suggestedServicePartner": "xyz789",
        "suggestedPartner": AvailableHandler,
        "servicePackage": ServicePackage,
        "lockAssetType": AssetType
      }
    ]
  }
}

searchSites

Response

Returns [Site]

Arguments
Name Description
query - String
extraIds - String
excludeSiteIds - [HashedId!]

Example

Query
query searchSites(
  $query: String,
  $extraIds: String,
  $excludeSiteIds: [HashedId!]
) {
  searchSites(
    query: $query,
    extraIds: $extraIds,
    excludeSiteIds: $excludeSiteIds
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "query": "xyz789",
  "extraIds": "xyz789",
  "excludeSiteIds": [HashedId]
}
Response
{
  "data": {
    "searchSites": [
      {
        "id": HashedId,
        "externalId": "abc123",
        "name": "abc123",
        "isFixed": false,
        "locationText": "abc123",
        "address": "abc123",
        "coordinates": Coordinates,
        "assignedToGroup": Group,
        "assignedToGroupId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "accountNumber": "abc123",
        "customerNumber": "xyz789",
        "siteManagerName": "abc123",
        "email": "xyz789",
        "telephone": "xyz789",
        "postalCode": "abc123",
        "country": "abc123",
        "geofenceSettings": {},
        "geofenceNotification": [
          RuleNotificationRelation
        ],
        "containsAssetsToModifyByGroup": true,
        "created": 1592577642,
        "assetsCount": 987,
        "updated": 1592577642,
        "note": "xyz789",
        "image": "abc123",
        "parentSite": Site,
        "parentSiteId": HashedId,
        "servicePackageId": HashedId,
        "shouldInheritServicePackage": false,
        "servicePackage": ServicePackage,
        "shouldInheritGeofenceSettings": false,
        "shouldInheritManagerDetails": true,
        "groupTreeRootId": HashedId,
        "lat": "abc123",
        "lng": "xyz789",
        "siteTypeId": HashedId,
        "qrAttached": false,
        "uuid": "xyz789",
        "events": [Event],
        "publicId": 987,
        "siteType": SiteType,
        "siteManagers": [SiteManager]
      }
    ]
  }
}

sendBlankQRSheetDownloadEmail

Response

Returns a Boolean!

Arguments
Name Description
entity - EntityEnum
numberOfPages - Int!

Example

Query
query sendBlankQRSheetDownloadEmail(
  $entity: EntityEnum,
  $numberOfPages: Int!
) {
  sendBlankQRSheetDownloadEmail(
    entity: $entity,
    numberOfPages: $numberOfPages
  )
}
Variables
{"entity": "ASSET", "numberOfPages": 123}
Response
{"data": {"sendBlankQRSheetDownloadEmail": true}}

sendQRSheetDownloadEmail

Response

Returns a Boolean!

Arguments
Name Description
entity - EntityEnum
assetId - [HashedId!]!

Example

Query
query sendQRSheetDownloadEmail(
  $entity: EntityEnum,
  $assetId: [HashedId!]!
) {
  sendQRSheetDownloadEmail(
    entity: $entity,
    assetId: $assetId
  )
}
Variables
{"entity": "ASSET", "assetId": [HashedId]}
Response
{"data": {"sendQRSheetDownloadEmail": true}}

service

used only in mobile
Response

Returns [Service!]!

Example

Query
query service {
  service {
    id
    created
    updated
    titleId
    procedureTemplateId
    publicProcedureTemplateId
    keys
    contentType
    assigneeAutomation
    preset
    type
    iconUrl
    formId
    jotformId
    jotformSource
    isServiceCheck
    assigneeAutomationId
    createdByGroupId
    belongsToGroupTypeId
    suggestedServicePartner
    servicePartner {
      ...AvailableHandlerFragment
    }
    title {
      ...TranslationFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    servicePackages {
      ...ServicePackageFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    rules {
      ...RuleFragment
    }
    canBeDeleted
  }
}
Response
{
  "data": {
    "service": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "procedureTemplateId": HashedId,
        "publicProcedureTemplateId": 987,
        "keys": ["abc123"],
        "contentType": "formHtml",
        "assigneeAutomation": "SUGGESTED_PARTNER",
        "preset": "BLE",
        "type": "JOT_FORM",
        "iconUrl": "xyz789",
        "formId": "abc123",
        "jotformId": "abc123",
        "jotformSource": "abc123",
        "isServiceCheck": false,
        "assigneeAutomationId": 123,
        "createdByGroupId": HashedId,
        "belongsToGroupTypeId": HashedId,
        "suggestedServicePartner": "abc123",
        "servicePartner": AvailableHandler,
        "title": Translation,
        "servicePackage": ServicePackage,
        "servicePackages": [ServicePackage],
        "procedureTemplate": ProcedureTemplate,
        "createdByGroup": Group,
        "rules": [Rule],
        "canBeDeleted": false
      }
    ]
  }
}

servicePackage

Response

Returns a ServicePackage!

Arguments
Name Description
id - HashedId!

Example

Query
query servicePackage($id: HashedId!) {
  servicePackage(id: $id) {
    id
    created
    updated
    titleId
    createdByUserId
    createdByGroupId
    assignedSitesCount
    assignedGroupsCount
    restrictionReason
    services {
      ...ServiceFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    canBeDeleted
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "servicePackage": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "assignedSitesCount": 987,
      "assignedGroupsCount": 987,
      "restrictionReason": "NOT_IN_CUSTOMER_TREE",
      "services": [Service],
      "createdByGroup": Group,
      "title": Translation,
      "createdByUser": User,
      "canBeDeleted": false
    }
  }
}

servicePackages

Response

Returns [ServicePackage!]!

Arguments
Name Description
ids - [HashedId!]

Example

Query
query servicePackages($ids: [HashedId!]) {
  servicePackages(ids: $ids) {
    id
    created
    updated
    titleId
    createdByUserId
    createdByGroupId
    assignedSitesCount
    assignedGroupsCount
    restrictionReason
    services {
      ...ServiceFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    canBeDeleted
  }
}
Variables
{"ids": [HashedId]}
Response
{
  "data": {
    "servicePackages": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "createdByUserId": HashedId,
        "createdByGroupId": HashedId,
        "assignedSitesCount": 987,
        "assignedGroupsCount": 123,
        "restrictionReason": "NOT_IN_CUSTOMER_TREE",
        "services": [Service],
        "createdByGroup": Group,
        "title": Translation,
        "createdByUser": User,
        "canBeDeleted": true
      }
    ]
  }
}

serviceV2

Response

Returns a Service

Arguments
Name Description
id - HashedId!

Example

Query
query serviceV2($id: HashedId!) {
  serviceV2(id: $id) {
    id
    created
    updated
    titleId
    procedureTemplateId
    publicProcedureTemplateId
    keys
    contentType
    assigneeAutomation
    preset
    type
    iconUrl
    formId
    jotformId
    jotformSource
    isServiceCheck
    assigneeAutomationId
    createdByGroupId
    belongsToGroupTypeId
    suggestedServicePartner
    servicePartner {
      ...AvailableHandlerFragment
    }
    title {
      ...TranslationFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    servicePackages {
      ...ServicePackageFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    rules {
      ...RuleFragment
    }
    canBeDeleted
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "serviceV2": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "procedureTemplateId": HashedId,
      "publicProcedureTemplateId": 123,
      "keys": ["abc123"],
      "contentType": "formHtml",
      "assigneeAutomation": "SUGGESTED_PARTNER",
      "preset": "BLE",
      "type": "JOT_FORM",
      "iconUrl": "xyz789",
      "formId": "abc123",
      "jotformId": "abc123",
      "jotformSource": "xyz789",
      "isServiceCheck": true,
      "assigneeAutomationId": 987,
      "createdByGroupId": HashedId,
      "belongsToGroupTypeId": HashedId,
      "suggestedServicePartner": "xyz789",
      "servicePartner": AvailableHandler,
      "title": Translation,
      "servicePackage": ServicePackage,
      "servicePackages": [ServicePackage],
      "procedureTemplate": ProcedureTemplate,
      "createdByGroup": Group,
      "rules": [Rule],
      "canBeDeleted": true
    }
  }
}

services

Response

Returns [Service!]!

Arguments
Name Description
search - String! Default = ""
limit - Int! Default = 20
language - LanguageLocaleEnum! Default = en_us
filters - ServicesFilterInput

Example

Query
query services(
  $search: String!,
  $limit: Int!,
  $language: LanguageLocaleEnum!,
  $filters: ServicesFilterInput
) {
  services(
    search: $search,
    limit: $limit,
    language: $language,
    filters: $filters
  ) {
    id
    created
    updated
    titleId
    procedureTemplateId
    publicProcedureTemplateId
    keys
    contentType
    assigneeAutomation
    preset
    type
    iconUrl
    formId
    jotformId
    jotformSource
    isServiceCheck
    assigneeAutomationId
    createdByGroupId
    belongsToGroupTypeId
    suggestedServicePartner
    servicePartner {
      ...AvailableHandlerFragment
    }
    title {
      ...TranslationFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    servicePackages {
      ...ServicePackageFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    rules {
      ...RuleFragment
    }
    canBeDeleted
  }
}
Variables
{
  "search": "",
  "limit": 20,
  "language": "en_us",
  "filters": ServicesFilterInput
}
Response
{
  "data": {
    "services": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "procedureTemplateId": HashedId,
        "publicProcedureTemplateId": 123,
        "keys": ["abc123"],
        "contentType": "formHtml",
        "assigneeAutomation": "SUGGESTED_PARTNER",
        "preset": "BLE",
        "type": "JOT_FORM",
        "iconUrl": "xyz789",
        "formId": "xyz789",
        "jotformId": "abc123",
        "jotformSource": "abc123",
        "isServiceCheck": false,
        "assigneeAutomationId": 987,
        "createdByGroupId": HashedId,
        "belongsToGroupTypeId": HashedId,
        "suggestedServicePartner": "abc123",
        "servicePartner": AvailableHandler,
        "title": Translation,
        "servicePackage": ServicePackage,
        "servicePackages": [ServicePackage],
        "procedureTemplate": ProcedureTemplate,
        "createdByGroup": Group,
        "rules": [Rule],
        "canBeDeleted": true
      }
    ]
  }
}

site

Use sitesPaginated instead
Description

Default only returns 150000 Sites. If all sites are required please use the all argument

Response

Returns [Site!]

Arguments
Name Description
id - [HashedId!]
all - Boolean

Example

Query
query site(
  $id: [HashedId!],
  $all: Boolean
) {
  site(
    id: $id,
    all: $all
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{"id": [HashedId], "all": true}
Response
{
  "data": {
    "site": [
      {
        "id": HashedId,
        "externalId": "xyz789",
        "name": "abc123",
        "isFixed": true,
        "locationText": "abc123",
        "address": "abc123",
        "coordinates": Coordinates,
        "assignedToGroup": Group,
        "assignedToGroupId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "accountNumber": "xyz789",
        "customerNumber": "abc123",
        "siteManagerName": "abc123",
        "email": "xyz789",
        "telephone": "abc123",
        "postalCode": "abc123",
        "country": "xyz789",
        "geofenceSettings": {},
        "geofenceNotification": [
          RuleNotificationRelation
        ],
        "containsAssetsToModifyByGroup": true,
        "created": 1592577642,
        "assetsCount": 123,
        "updated": 1592577642,
        "note": "xyz789",
        "image": "abc123",
        "parentSite": Site,
        "parentSiteId": HashedId,
        "servicePackageId": HashedId,
        "shouldInheritServicePackage": true,
        "servicePackage": ServicePackage,
        "shouldInheritGeofenceSettings": false,
        "shouldInheritManagerDetails": false,
        "groupTreeRootId": HashedId,
        "lat": "abc123",
        "lng": "xyz789",
        "siteTypeId": HashedId,
        "qrAttached": false,
        "uuid": "xyz789",
        "events": [Event],
        "publicId": 123,
        "siteType": SiteType,
        "siteManagers": [SiteManager]
      }
    ]
  }
}

siteToInherit

Response

Returns a Site

Arguments
Name Description
parentSiteId - HashedId!
section - SiteSectionEnum!

Example

Query
query siteToInherit(
  $parentSiteId: HashedId!,
  $section: SiteSectionEnum!
) {
  siteToInherit(
    parentSiteId: $parentSiteId,
    section: $section
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{"parentSiteId": HashedId, "section": "GEOFENCE_SETTINGS"}
Response
{
  "data": {
    "siteToInherit": {
      "id": HashedId,
      "externalId": "abc123",
      "name": "abc123",
      "isFixed": true,
      "locationText": "xyz789",
      "address": "xyz789",
      "coordinates": Coordinates,
      "assignedToGroup": Group,
      "assignedToGroupId": HashedId,
      "createdByGroup": Group,
      "createdByGroupId": HashedId,
      "accountNumber": "abc123",
      "customerNumber": "xyz789",
      "siteManagerName": "xyz789",
      "email": "xyz789",
      "telephone": "abc123",
      "postalCode": "xyz789",
      "country": "abc123",
      "geofenceSettings": {},
      "geofenceNotification": [RuleNotificationRelation],
      "containsAssetsToModifyByGroup": false,
      "created": 1592577642,
      "assetsCount": 987,
      "updated": 1592577642,
      "note": "abc123",
      "image": "abc123",
      "parentSite": Site,
      "parentSiteId": HashedId,
      "servicePackageId": HashedId,
      "shouldInheritServicePackage": true,
      "servicePackage": ServicePackage,
      "shouldInheritGeofenceSettings": false,
      "shouldInheritManagerDetails": true,
      "groupTreeRootId": HashedId,
      "lat": "abc123",
      "lng": "xyz789",
      "siteTypeId": HashedId,
      "qrAttached": false,
      "uuid": "abc123",
      "events": [Event],
      "publicId": 987,
      "siteType": SiteType,
      "siteManagers": [SiteManager]
    }
  }
}

siteTypes

Response

Returns [SiteType!]!

Arguments
Name Description
groupId - HashedId

Example

Query
query siteTypes($groupId: HashedId) {
  siteTypes(groupId: $groupId) {
    id
    key
  }
}
Variables
{"groupId": HashedId}
Response
{
  "data": {
    "siteTypes": [
      {
        "id": HashedId,
        "key": "abc123"
      }
    ]
  }
}

sites

Response

Returns [Site!]!

Arguments
Name Description
ids - [HashedId!]
uuids - [String!]

Example

Query
query sites(
  $ids: [HashedId!],
  $uuids: [String!]
) {
  sites(
    ids: $ids,
    uuids: $uuids
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "ids": [HashedId],
  "uuids": ["xyz789"]
}
Response
{
  "data": {
    "sites": [
      {
        "id": HashedId,
        "externalId": "abc123",
        "name": "abc123",
        "isFixed": false,
        "locationText": "xyz789",
        "address": "abc123",
        "coordinates": Coordinates,
        "assignedToGroup": Group,
        "assignedToGroupId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "accountNumber": "xyz789",
        "customerNumber": "xyz789",
        "siteManagerName": "xyz789",
        "email": "xyz789",
        "telephone": "abc123",
        "postalCode": "xyz789",
        "country": "xyz789",
        "geofenceSettings": {},
        "geofenceNotification": [
          RuleNotificationRelation
        ],
        "containsAssetsToModifyByGroup": true,
        "created": 1592577642,
        "assetsCount": 987,
        "updated": 1592577642,
        "note": "abc123",
        "image": "xyz789",
        "parentSite": Site,
        "parentSiteId": HashedId,
        "servicePackageId": HashedId,
        "shouldInheritServicePackage": false,
        "servicePackage": ServicePackage,
        "shouldInheritGeofenceSettings": true,
        "shouldInheritManagerDetails": true,
        "groupTreeRootId": HashedId,
        "lat": "xyz789",
        "lng": "xyz789",
        "siteTypeId": HashedId,
        "qrAttached": false,
        "uuid": "abc123",
        "events": [Event],
        "publicId": 987,
        "siteType": SiteType,
        "siteManagers": [SiteManager]
      }
    ]
  }
}

sitesPaginated

Response

Returns a SitesPaginatedResult

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query sitesPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  sitesPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...SiteFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "sitesPaginated": {
      "meta": PaginationMeta,
      "rows": [Site]
    }
  }
}

subscriptionPlan

We don't manage subscriptions over our API anymore
Response

Returns [SubscriptionPlan]

Arguments
Name Description
manufacturerId - HashedId

Example

Query
query subscriptionPlan($manufacturerId: HashedId) {
  subscriptionPlan(manufacturerId: $manufacturerId) {
    key
    name
  }
}
Variables
{"manufacturerId": HashedId}
Response
{
  "data": {
    "subscriptionPlan": [
      {
        "key": "xyz789",
        "name": "xyz789"
      }
    ]
  }
}

teamById

Response

Returns a Team!

Arguments
Name Description
id - HashedId!

Example

Query
query teamById($id: HashedId!) {
  teamById(id: $id) {
    id
    created
    updated
    nameId
    groupId
    createdByUserId
    createdByGroupId
    assignedToActiveTicketIds
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    members {
      ...TeamMemberFragment
    }
    servicePackages {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "teamById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "nameId": HashedId,
      "groupId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "assignedToActiveTicketIds": [987],
      "name": Translation,
      "group": Group,
      "createdByUser": User,
      "createdByGroup": Group,
      "members": [TeamMember],
      "servicePackages": [ServicePackage]
    }
  }
}

teams

Response

Returns [Team!]!

Example

Query
query teams {
  teams {
    id
    created
    updated
    nameId
    groupId
    createdByUserId
    createdByGroupId
    assignedToActiveTicketIds
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    members {
      ...TeamMemberFragment
    }
    servicePackages {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
  }
}
Response
{
  "data": {
    "teams": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "nameId": HashedId,
        "groupId": HashedId,
        "createdByUserId": HashedId,
        "createdByGroupId": HashedId,
        "assignedToActiveTicketIds": [123],
        "name": Translation,
        "group": Group,
        "createdByUser": User,
        "createdByGroup": Group,
        "members": [TeamMember],
        "servicePackages": [ServicePackage]
      }
    ]
  }
}

teamsPaginated

Response

Returns a TeamPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query teamsPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  teamsPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...TeamFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "teamsPaginated": {
      "meta": PaginationMeta,
      "rows": [Team]
    }
  }
}

terms

Response

Returns [Terms!]!

Arguments
Name Description
filters - TermsQueryFiltersInput

Example

Query
query terms($filters: TermsQueryFiltersInput) {
  terms(filters: $filters) {
    id
    created
    updated
    isActive
    titleId
    title {
      ...TranslationFragment
    }
    versions {
      ...TermsHasVersionFragment
    }
    version
    contentId
    content {
      ...TranslationFragment
    }
  }
}
Variables
{"filters": TermsQueryFiltersInput}
Response
{
  "data": {
    "terms": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "isActive": true,
        "titleId": HashedId,
        "title": Translation,
        "versions": [TermsHasVersion],
        "version": 987,
        "contentId": HashedId,
        "content": Translation
      }
    ]
  }
}

ticket

please use "ticketById", or "ticketsPaginated" instead
Response

Returns [Ticket!]!

Arguments
Name Description
id - [HashedId!]
all - Boolean Default = false

Example

Query
query ticket(
  $id: [HashedId!],
  $all: Boolean
) {
  ticket(
    id: $id,
    all: $all
  ) {
    id
    created
    updated
    content
    uuid
    serviceResponseId
    createdByUserId
    createdByGroupId
    procedureInstanceId
    titleId
    serviceId
    ticketId
    assignee {
      ...ProcessHandlerFragment
    }
    responsibles {
      ...ProcessHandlerFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    currentState {
      ...TicketCurrentStateFragment
    }
    ticketComments {
      ...TicketCommentFragment
    }
    associatedAssets {
      ...AssetFragment
    }
    documents {
      ...DocumentFragment
    }
    pdfCertificateLink {
      ...DocumentFragment
    }
    service {
      ...ServiceFragment
    }
    title {
      ...TranslationFragment
    }
    lastStatusChange
    notifications {
      ...NotificationFilterFragment
    }
    batteryCosts
    certificationCosts
    consumablesCosts
    fuelCosts
    insuranceTaxesCosts
    laborCosts
    logisticsCosts
    otherCosts
    repairCosts
    sparePartsCosts
    ticketTimeline {
      ...TicketTimelineFragment
    }
    totalCosts
    urgency
    procedureInstance {
      ...ProcedureInstanceFragment
    }
    associatedSites {
      ...SiteFragment
    }
    associatedAssetCategories {
      ...AssetCategoryFragment
    }
    associatedAssetTypes {
      ...AssetTypeFragment
    }
    ticketContent {
      ...TicketContentFieldFragment
    }
    activityEvents {
      ... on TicketHandlerUpdate {
        ...TicketHandlerUpdateFragment
      }
      ... on TicketUrgencyUpdate {
        ...TicketUrgencyUpdateFragment
      }
      ... on TicketAssetCheckComplete {
        ...TicketAssetCheckCompleteFragment
      }
      ... on TicketAssetSiteUpdate {
        ...TicketAssetSiteUpdateFragment
      }
      ... on TicketAssetAvailabilityUpdate {
        ...TicketAssetAvailabilityUpdateFragment
      }
    }
    automationDetails {
      ...TicketAutomationDetailsFragment
    }
  }
}
Variables
{"id": [HashedId], "all": false}
Response
{
  "data": {
    "ticket": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "content": {},
        "uuid": "abc123",
        "serviceResponseId": HashedId,
        "createdByUserId": HashedId,
        "createdByGroupId": HashedId,
        "procedureInstanceId": HashedId,
        "titleId": HashedId,
        "serviceId": HashedId,
        "ticketId": 123,
        "assignee": ProcessHandler,
        "responsibles": [ProcessHandler],
        "createdByUser": User,
        "createdByGroup": Group,
        "currentState": TicketCurrentState,
        "ticketComments": [TicketComment],
        "associatedAssets": [Asset],
        "documents": [Document],
        "pdfCertificateLink": Document,
        "service": Service,
        "title": Translation,
        "lastStatusChange": 1592577642,
        "notifications": NotificationFilter,
        "batteryCosts": "abc123",
        "certificationCosts": "abc123",
        "consumablesCosts": "abc123",
        "fuelCosts": "xyz789",
        "insuranceTaxesCosts": "xyz789",
        "laborCosts": "xyz789",
        "logisticsCosts": "xyz789",
        "otherCosts": "xyz789",
        "repairCosts": "abc123",
        "sparePartsCosts": "abc123",
        "ticketTimeline": TicketTimeline,
        "totalCosts": "xyz789",
        "urgency": "CRITICAL",
        "procedureInstance": ProcedureInstance,
        "associatedSites": [Site],
        "associatedAssetCategories": [AssetCategory],
        "associatedAssetTypes": [AssetType],
        "ticketContent": [TicketContentField],
        "activityEvents": [TicketHandlerUpdate],
        "automationDetails": TicketAutomationDetails
      }
    ]
  }
}

ticketActivityLog

use "activityEvents" resolve field for ticket
Response

Returns [TicketHandlerUpdate!]!

Arguments
Name Description
id - HashedId!

Example

Query
query ticketActivityLog($id: HashedId!) {
  ticketActivityLog(id: $id) {
    id
    created
    updated
    action
    author
    isAutomated
    role
    target
    targetHandler
    type
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "ticketActivityLog": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "action": "ADD",
        "author": "xyz789",
        "isAutomated": true,
        "role": "ASSIGNEE",
        "target": "SELF",
        "targetHandler": "xyz789",
        "type": "RESPONSIBLE_UPDATE"
      }
    ]
  }
}

ticketActivityLogV2

use resolve field
Response

Returns [TicketActivityLogEntry!]!

Arguments
Name Description
id - HashedId!

Example

Query
query ticketActivityLogV2($id: HashedId!) {
  ticketActivityLogV2(id: $id) {
    ... on TicketHandlerUpdate {
      ...TicketHandlerUpdateFragment
    }
    ... on TicketUrgencyUpdate {
      ...TicketUrgencyUpdateFragment
    }
    ... on TicketAssetCheckComplete {
      ...TicketAssetCheckCompleteFragment
    }
    ... on TicketAssetSiteUpdate {
      ...TicketAssetSiteUpdateFragment
    }
    ... on TicketAssetAvailabilityUpdate {
      ...TicketAssetAvailabilityUpdateFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{"data": {"ticketActivityLogV2": [TicketHandlerUpdate]}}

ticketById

Response

Returns a Ticket!

Arguments
Name Description
id - HashedId!

Example

Query
query ticketById($id: HashedId!) {
  ticketById(id: $id) {
    id
    created
    updated
    content
    uuid
    serviceResponseId
    createdByUserId
    createdByGroupId
    procedureInstanceId
    titleId
    serviceId
    ticketId
    assignee {
      ...ProcessHandlerFragment
    }
    responsibles {
      ...ProcessHandlerFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    currentState {
      ...TicketCurrentStateFragment
    }
    ticketComments {
      ...TicketCommentFragment
    }
    associatedAssets {
      ...AssetFragment
    }
    documents {
      ...DocumentFragment
    }
    pdfCertificateLink {
      ...DocumentFragment
    }
    service {
      ...ServiceFragment
    }
    title {
      ...TranslationFragment
    }
    lastStatusChange
    notifications {
      ...NotificationFilterFragment
    }
    batteryCosts
    certificationCosts
    consumablesCosts
    fuelCosts
    insuranceTaxesCosts
    laborCosts
    logisticsCosts
    otherCosts
    repairCosts
    sparePartsCosts
    ticketTimeline {
      ...TicketTimelineFragment
    }
    totalCosts
    urgency
    procedureInstance {
      ...ProcedureInstanceFragment
    }
    associatedSites {
      ...SiteFragment
    }
    associatedAssetCategories {
      ...AssetCategoryFragment
    }
    associatedAssetTypes {
      ...AssetTypeFragment
    }
    ticketContent {
      ...TicketContentFieldFragment
    }
    activityEvents {
      ... on TicketHandlerUpdate {
        ...TicketHandlerUpdateFragment
      }
      ... on TicketUrgencyUpdate {
        ...TicketUrgencyUpdateFragment
      }
      ... on TicketAssetCheckComplete {
        ...TicketAssetCheckCompleteFragment
      }
      ... on TicketAssetSiteUpdate {
        ...TicketAssetSiteUpdateFragment
      }
      ... on TicketAssetAvailabilityUpdate {
        ...TicketAssetAvailabilityUpdateFragment
      }
    }
    automationDetails {
      ...TicketAutomationDetailsFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "ticketById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "content": {},
      "uuid": "xyz789",
      "serviceResponseId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "procedureInstanceId": HashedId,
      "titleId": HashedId,
      "serviceId": HashedId,
      "ticketId": 123,
      "assignee": ProcessHandler,
      "responsibles": [ProcessHandler],
      "createdByUser": User,
      "createdByGroup": Group,
      "currentState": TicketCurrentState,
      "ticketComments": [TicketComment],
      "associatedAssets": [Asset],
      "documents": [Document],
      "pdfCertificateLink": Document,
      "service": Service,
      "title": Translation,
      "lastStatusChange": 1592577642,
      "notifications": NotificationFilter,
      "batteryCosts": "xyz789",
      "certificationCosts": "xyz789",
      "consumablesCosts": "abc123",
      "fuelCosts": "xyz789",
      "insuranceTaxesCosts": "abc123",
      "laborCosts": "xyz789",
      "logisticsCosts": "abc123",
      "otherCosts": "abc123",
      "repairCosts": "xyz789",
      "sparePartsCosts": "xyz789",
      "ticketTimeline": TicketTimeline,
      "totalCosts": "abc123",
      "urgency": "CRITICAL",
      "procedureInstance": ProcedureInstance,
      "associatedSites": [Site],
      "associatedAssetCategories": [AssetCategory],
      "associatedAssetTypes": [AssetType],
      "ticketContent": [TicketContentField],
      "activityEvents": [TicketHandlerUpdate],
      "automationDetails": TicketAutomationDetails
    }
  }
}

ticketComment

Use "commentsByTicketId" instead
Response

Returns [TicketComment!]

Arguments
Name Description
filters - TicketCommentFiltersInput
ticketId - HashedId!

Example

Query
query ticketComment(
  $filters: TicketCommentFiltersInput,
  $ticketId: HashedId!
) {
  ticketComment(
    filters: $filters,
    ticketId: $ticketId
  ) {
    id
    created
    updated
    createdByUserId
    authorEmail
    createdByUser {
      ...TicketUserFragment
    }
    history {
      ...TicketCommentContentFragment
    }
    content {
      ...TicketCommentContentFragment
    }
    isAutomated
    costs {
      ...CostFragment
    }
    stateEvent {
      ...TicketStateFragment
    }
    attachments {
      ...DocumentFragment
    }
    connectedEventId
    connectedEvent {
      ...EventFragment
    }
    internal
    deleted
  }
}
Variables
{
  "filters": TicketCommentFiltersInput,
  "ticketId": HashedId
}
Response
{
  "data": {
    "ticketComment": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "createdByUserId": HashedId,
        "authorEmail": "xyz789",
        "createdByUser": TicketUser,
        "history": [TicketCommentContent],
        "content": TicketCommentContent,
        "isAutomated": false,
        "costs": [Cost],
        "stateEvent": TicketState,
        "attachments": [Document],
        "connectedEventId": HashedId,
        "connectedEvent": Event,
        "internal": true,
        "deleted": 1592577642
      }
    ]
  }
}

ticketState

Description

Retrieve the possible flow response states to the group of the requesting user

Response

Returns [TicketState!]!

Example

Query
query ticketState {
  ticketState {
    id
    created
    updated
    titleId
    title {
      ...TranslationFragment
    }
    key
    order
  }
}
Response
{
  "data": {
    "ticketState": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "title": Translation,
        "key": "open",
        "order": 123
      }
    ]
  }
}

ticketWebhookTrigger

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!
type - TicketWebhookTriggerTypeEnum!

Example

Query
query ticketWebhookTrigger(
  $id: HashedId!,
  $type: TicketWebhookTriggerTypeEnum!
) {
  ticketWebhookTrigger(
    id: $id,
    type: $type
  )
}
Variables
{"id": HashedId, "type": "ticketCreated"}
Response
{"data": {"ticketWebhookTrigger": true}}

ticketsPaginated

Response

Returns a TicketPaginatedResult

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query ticketsPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  ticketsPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...TicketFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "ticketsPaginated": {
      "meta": PaginationMeta,
      "rows": [Ticket]
    }
  }
}

totalPendingRequests

Response

Returns an Int!

Example

Query
query totalPendingRequests {
  totalPendingRequests
}
Response
{"data": {"totalPendingRequests": 123}}

translate

Response

Returns a TranslateResultDto!

Arguments
Name Description
sourceContext - String
sourceLanguage - String!
targetLanguages - [String!]!
sourceText - String!

Example

Query
query translate(
  $sourceContext: String,
  $sourceLanguage: String!,
  $targetLanguages: [String!]!,
  $sourceText: String!
) {
  translate(
    sourceContext: $sourceContext,
    sourceLanguage: $sourceLanguage,
    targetLanguages: $targetLanguages,
    sourceText: $sourceText
  ) {
    sourceLanguage
    sourceText
    translatedText
  }
}
Variables
{
  "sourceContext": "xyz789",
  "sourceLanguage": "abc123",
  "targetLanguages": ["abc123"],
  "sourceText": "xyz789"
}
Response
{
  "data": {
    "translate": {
      "sourceLanguage": "xyz789",
      "sourceText": "xyz789",
      "translatedText": {}
    }
  }
}

translation

Response

Returns [Translation!]!

Arguments
Name Description
id - [HashedId!]!

Example

Query
query translation($id: [HashedId!]!) {
  translation(id: $id) {
    id
    created
    updated
    languages {
      ...TranslationItemFragment
    }
    en_us
    de_de
    translations
  }
}
Variables
{"id": [HashedId]}
Response
{
  "data": {
    "translation": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "languages": [TranslationItem],
        "en_us": "xyz789",
        "de_de": "xyz789",
        "translations": "abc123"
      }
    ]
  }
}

trip

Response

Returns a Trip!

Arguments
Name Description
tripId - String!

Example

Query
query trip($tripId: String!) {
  trip(tripId: $tripId) {
    created
    updated
    id
    active
    assetId
    asset {
      ...AssetFragment
    }
    avgSpeedRaw
    avgSpeed
    distanceRaw
    distance
    distanceUnit
    driverId
    duration
    endLocation {
      ...AddressFragment
    }
    endTime
    eventPoints {
      ...EventPointFragment
    }
    maxSpeedRaw
    maxSpeed
    imei
    points {
      ...RoutePointFragment
    }
    route
    startLocation {
      ...AddressFragment
    }
    startTime
    timestamp
    tripId
    pointsInRange {
      ...RoutePointFragment
    }
    fuelConsumedRaw
    fuelConsumed
    fuelConsumedPercentage
    fuelUnit
    linearDistanceRaw
    linearDistance
    datapoints {
      ...DatapointFragment
    }
    group {
      ...GroupFragment
    }
  }
}
Variables
{"tripId": "abc123"}
Response
{
  "data": {
    "trip": {
      "created": 1592577642,
      "updated": 1592577642,
      "id": "abc123",
      "active": true,
      "assetId": HashedId,
      "asset": Asset,
      "avgSpeedRaw": 123.45,
      "avgSpeed": 987.65,
      "distanceRaw": 123.45,
      "distance": 123.45,
      "distanceUnit": "abc123",
      "driverId": "abc123",
      "duration": 123.45,
      "endLocation": Address,
      "endTime": 987.65,
      "eventPoints": [EventPoint],
      "maxSpeedRaw": 987.65,
      "maxSpeed": 987.65,
      "imei": "xyz789",
      "points": [RoutePoint],
      "route": "xyz789",
      "startLocation": Address,
      "startTime": 987.65,
      "timestamp": 123.45,
      "tripId": 4,
      "pointsInRange": [RoutePoint],
      "fuelConsumedRaw": 123,
      "fuelConsumed": 123.45,
      "fuelConsumedPercentage": 987,
      "fuelUnit": "xyz789",
      "linearDistanceRaw": 987.65,
      "linearDistance": 987.65,
      "datapoints": [Datapoint],
      "group": Group
    }
  }
}

tripLatestPaginated

Response

Returns a TripLatestPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query tripLatestPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  tripLatestPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...TripLatestFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "tripLatestPaginated": {
      "meta": PaginationMeta,
      "rows": [TripLatest]
    }
  }
}

tripsDateRange

Response

Returns a TripDateRange!

Arguments
Name Description
locationFilter - TripLocationFilter

Example

Query
query tripsDateRange($locationFilter: TripLocationFilter) {
  tripsDateRange(locationFilter: $locationFilter) {
    from
    to
  }
}
Variables
{"locationFilter": TripLocationFilter}
Response
{"data": {"tripsDateRange": {"from": 1592577642, "to": 1592577642}}}

tripsListPaginated

Response

Returns a TripPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]
activeOnly - Boolean
dateFilter - TripDateFilter
locationFilter - TripLocationFilter

Example

Query
query tripsListPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput],
  $activeOnly: Boolean,
  $dateFilter: TripDateFilter,
  $locationFilter: TripLocationFilter
) {
  tripsListPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters,
    activeOnly: $activeOnly,
    dateFilter: $dateFilter,
    locationFilter: $locationFilter
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...TripFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput],
  "activeOnly": false,
  "dateFilter": TripDateFilter,
  "locationFilter": TripLocationFilter
}
Response
{
  "data": {
    "tripsListPaginated": {
      "meta": PaginationMeta,
      "rows": [Trip]
    }
  }
}

tripsMapPaginated

Response

Returns a TripPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]
activeOnly - Boolean
dateFilter - TripDateFilter
locationFilter - TripLocationFilter

Example

Query
query tripsMapPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput],
  $activeOnly: Boolean,
  $dateFilter: TripDateFilter,
  $locationFilter: TripLocationFilter
) {
  tripsMapPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters,
    activeOnly: $activeOnly,
    dateFilter: $dateFilter,
    locationFilter: $locationFilter
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...TripFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput],
  "activeOnly": false,
  "dateFilter": TripDateFilter,
  "locationFilter": TripLocationFilter
}
Response
{
  "data": {
    "tripsMapPaginated": {
      "meta": PaginationMeta,
      "rows": [Trip]
    }
  }
}

user

Response

Returns [User!]

Arguments
Name Description
id - [HashedId!] Default = []

Example

Query
query user($id: [HashedId!]) {
  user(id: $id) {
    id
    created
    updated
    publicId
    firstname
    lastname
    password
    email
    phone
    fullName
    groupId
    roleId
    isSupportAdmin
    canShareViews
    isSSOEnabled
    languageId
    language
    languageCode
    dashboardId
    locale
    timezone
    label
    apiKey
    image
    activated
    isServicing
    info
    stripeSubscriptionId
    deleted
    username
    supportAdmin
    belongsToGroupId
    lastLogin
    services
    dashboard
    notifications
    notificationIds
    checkPassword
    loginInterrupts
    loginInterruptIds
    subscription {
      ...StripeSubscriptionPlanFragment
    }
    belongsToGroup {
      ...GroupFragment
    }
    group {
      ...GroupFragment
    }
    role {
      ...RoleFragment
    }
    teams {
      ...TeamFragment
    }
    hasMultipleGroups
    groups {
      ...GroupFragment
    }
    unavailability {
      ...UserUnavailabilityFragment
    }
    settings
  }
}
Variables
{"id": [""]}
Response
{
  "data": {
    "user": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "publicId": 987,
        "firstname": "abc123",
        "lastname": "abc123",
        "password": "abc123",
        "email": "abc123",
        "phone": "abc123",
        "fullName": "abc123",
        "groupId": HashedId,
        "roleId": HashedId,
        "isSupportAdmin": true,
        "canShareViews": true,
        "isSSOEnabled": false,
        "languageId": HashedId,
        "language": HashedId,
        "languageCode": "ENGLISH",
        "dashboardId": HashedId,
        "locale": LanguageTag,
        "timezone": "abc123",
        "label": "abc123",
        "apiKey": "abc123",
        "image": "abc123",
        "activated": 1592577642,
        "isServicing": true,
        "info": {},
        "stripeSubscriptionId": "xyz789",
        "deleted": 1592577642,
        "username": "abc123",
        "supportAdmin": false,
        "belongsToGroupId": HashedId,
        "lastLogin": "2007-12-03T10:15:30Z",
        "services": [{}],
        "dashboard": {},
        "notifications": [{}],
        "notificationIds": [HashedId],
        "checkPassword": true,
        "loginInterrupts": {},
        "loginInterruptIds": [HashedId],
        "subscription": StripeSubscriptionPlan,
        "belongsToGroup": Group,
        "group": Group,
        "role": Role,
        "teams": [Team],
        "hasMultipleGroups": true,
        "groups": [Group],
        "unavailability": [UserUnavailability],
        "settings": {}
      }
    ]
  }
}

userV2

Response

Returns a User

Arguments
Name Description
id - HashedId!

Example

Query
query userV2($id: HashedId!) {
  userV2(id: $id) {
    id
    created
    updated
    publicId
    firstname
    lastname
    password
    email
    phone
    fullName
    groupId
    roleId
    isSupportAdmin
    canShareViews
    isSSOEnabled
    languageId
    language
    languageCode
    dashboardId
    locale
    timezone
    label
    apiKey
    image
    activated
    isServicing
    info
    stripeSubscriptionId
    deleted
    username
    supportAdmin
    belongsToGroupId
    lastLogin
    services
    dashboard
    notifications
    notificationIds
    checkPassword
    loginInterrupts
    loginInterruptIds
    subscription {
      ...StripeSubscriptionPlanFragment
    }
    belongsToGroup {
      ...GroupFragment
    }
    group {
      ...GroupFragment
    }
    role {
      ...RoleFragment
    }
    teams {
      ...TeamFragment
    }
    hasMultipleGroups
    groups {
      ...GroupFragment
    }
    unavailability {
      ...UserUnavailabilityFragment
    }
    settings
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "userV2": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "publicId": 123,
      "firstname": "xyz789",
      "lastname": "abc123",
      "password": "abc123",
      "email": "xyz789",
      "phone": "xyz789",
      "fullName": "xyz789",
      "groupId": HashedId,
      "roleId": HashedId,
      "isSupportAdmin": false,
      "canShareViews": true,
      "isSSOEnabled": true,
      "languageId": HashedId,
      "language": HashedId,
      "languageCode": "ENGLISH",
      "dashboardId": HashedId,
      "locale": LanguageTag,
      "timezone": "abc123",
      "label": "abc123",
      "apiKey": "abc123",
      "image": "abc123",
      "activated": 1592577642,
      "isServicing": false,
      "info": {},
      "stripeSubscriptionId": "xyz789",
      "deleted": 1592577642,
      "username": "abc123",
      "supportAdmin": false,
      "belongsToGroupId": HashedId,
      "lastLogin": "2007-12-03T10:15:30Z",
      "services": [{}],
      "dashboard": {},
      "notifications": [{}],
      "notificationIds": [HashedId],
      "checkPassword": true,
      "loginInterrupts": {},
      "loginInterruptIds": [HashedId],
      "subscription": StripeSubscriptionPlan,
      "belongsToGroup": Group,
      "group": Group,
      "role": Role,
      "teams": [Team],
      "hasMultipleGroups": true,
      "groups": [Group],
      "unavailability": [UserUnavailability],
      "settings": {}
    }
  }
}

usersFromCurrentGroupDownWithinOEMOrCustomer

Response

Returns [User!]!

Example

Query
query usersFromCurrentGroupDownWithinOEMOrCustomer {
  usersFromCurrentGroupDownWithinOEMOrCustomer {
    id
    created
    updated
    publicId
    firstname
    lastname
    password
    email
    phone
    fullName
    groupId
    roleId
    isSupportAdmin
    canShareViews
    isSSOEnabled
    languageId
    language
    languageCode
    dashboardId
    locale
    timezone
    label
    apiKey
    image
    activated
    isServicing
    info
    stripeSubscriptionId
    deleted
    username
    supportAdmin
    belongsToGroupId
    lastLogin
    services
    dashboard
    notifications
    notificationIds
    checkPassword
    loginInterrupts
    loginInterruptIds
    subscription {
      ...StripeSubscriptionPlanFragment
    }
    belongsToGroup {
      ...GroupFragment
    }
    group {
      ...GroupFragment
    }
    role {
      ...RoleFragment
    }
    teams {
      ...TeamFragment
    }
    hasMultipleGroups
    groups {
      ...GroupFragment
    }
    unavailability {
      ...UserUnavailabilityFragment
    }
    settings
  }
}
Response
{
  "data": {
    "usersFromCurrentGroupDownWithinOEMOrCustomer": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "publicId": 987,
        "firstname": "xyz789",
        "lastname": "xyz789",
        "password": "xyz789",
        "email": "abc123",
        "phone": "xyz789",
        "fullName": "xyz789",
        "groupId": HashedId,
        "roleId": HashedId,
        "isSupportAdmin": true,
        "canShareViews": false,
        "isSSOEnabled": true,
        "languageId": HashedId,
        "language": HashedId,
        "languageCode": "ENGLISH",
        "dashboardId": HashedId,
        "locale": LanguageTag,
        "timezone": "xyz789",
        "label": "xyz789",
        "apiKey": "abc123",
        "image": "xyz789",
        "activated": 1592577642,
        "isServicing": true,
        "info": {},
        "stripeSubscriptionId": "abc123",
        "deleted": 1592577642,
        "username": "xyz789",
        "supportAdmin": false,
        "belongsToGroupId": HashedId,
        "lastLogin": "2007-12-03T10:15:30Z",
        "services": [{}],
        "dashboard": {},
        "notifications": [{}],
        "notificationIds": [HashedId],
        "checkPassword": true,
        "loginInterrupts": {},
        "loginInterruptIds": [HashedId],
        "subscription": StripeSubscriptionPlan,
        "belongsToGroup": Group,
        "group": Group,
        "role": Role,
        "teams": [Team],
        "hasMultipleGroups": false,
        "groups": [Group],
        "unavailability": [UserUnavailability],
        "settings": {}
      }
    ]
  }
}

usersPaginated

Response

Returns a UserPaginatedResult

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query usersPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  usersPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...UserFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "abc123",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "usersPaginated": {
      "meta": PaginationMeta,
      "rows": [User]
    }
  }
}

usersSubscriptions

Response

Returns a UserPaginatedResult

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query usersSubscriptions(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  usersSubscriptions(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...UserFragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "usersSubscriptions": {
      "meta": PaginationMeta,
      "rows": [User]
    }
  }
}

validateEntity

Description

Validates the given entities

Response

Returns [JSON]!

Arguments
Name Description
entity - String!
data - [JSON]!
upsert - Boolean
initial - Boolean

Example

Query
query validateEntity(
  $entity: String!,
  $data: [JSON]!,
  $upsert: Boolean,
  $initial: Boolean
) {
  validateEntity(
    entity: $entity,
    data: $data,
    upsert: $upsert,
    initial: $initial
  )
}
Variables
{
  "entity": "abc123",
  "data": [{}],
  "upsert": true,
  "initial": true
}
Response
{"data": {"validateEntity": [{}]}}

webhooksForGroup

Response

Returns [Webhook!]!

Arguments
Name Description
groupId - HashedId!

Example

Query
query webhooksForGroup($groupId: HashedId!) {
  webhooksForGroup(groupId: $groupId) {
    id
    created
    updated
    groupId
    url
    forTickets
    forSites
    forAssets
    forWorkOrders
  }
}
Variables
{"groupId": HashedId}
Response
{
  "data": {
    "webhooksForGroup": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "groupId": HashedId,
        "url": "xyz789",
        "forTickets": true,
        "forSites": true,
        "forAssets": false,
        "forWorkOrders": true
      }
    ]
  }
}

workOrderAttachablePersonnelHandlers

Example

Query
query workOrderAttachablePersonnelHandlers {
  workOrderAttachablePersonnelHandlers {
    userId
    groupId
    displayName
  }
}
Response
{
  "data": {
    "workOrderAttachablePersonnelHandlers": [
      {
        "userId": HashedId,
        "groupId": HashedId,
        "displayName": "abc123"
      }
    ]
  }
}

workOrderAttachableWorkers

Response

Returns [User!]!

Example

Query
query workOrderAttachableWorkers {
  workOrderAttachableWorkers {
    id
    created
    updated
    publicId
    firstname
    lastname
    password
    email
    phone
    fullName
    groupId
    roleId
    isSupportAdmin
    canShareViews
    isSSOEnabled
    languageId
    language
    languageCode
    dashboardId
    locale
    timezone
    label
    apiKey
    image
    activated
    isServicing
    info
    stripeSubscriptionId
    deleted
    username
    supportAdmin
    belongsToGroupId
    lastLogin
    services
    dashboard
    notifications
    notificationIds
    checkPassword
    loginInterrupts
    loginInterruptIds
    subscription {
      ...StripeSubscriptionPlanFragment
    }
    belongsToGroup {
      ...GroupFragment
    }
    group {
      ...GroupFragment
    }
    role {
      ...RoleFragment
    }
    teams {
      ...TeamFragment
    }
    hasMultipleGroups
    groups {
      ...GroupFragment
    }
    unavailability {
      ...UserUnavailabilityFragment
    }
    settings
  }
}
Response
{
  "data": {
    "workOrderAttachableWorkers": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "publicId": 987,
        "firstname": "xyz789",
        "lastname": "abc123",
        "password": "xyz789",
        "email": "abc123",
        "phone": "xyz789",
        "fullName": "abc123",
        "groupId": HashedId,
        "roleId": HashedId,
        "isSupportAdmin": false,
        "canShareViews": true,
        "isSSOEnabled": true,
        "languageId": HashedId,
        "language": HashedId,
        "languageCode": "ENGLISH",
        "dashboardId": HashedId,
        "locale": LanguageTag,
        "timezone": "abc123",
        "label": "xyz789",
        "apiKey": "xyz789",
        "image": "xyz789",
        "activated": 1592577642,
        "isServicing": false,
        "info": {},
        "stripeSubscriptionId": "xyz789",
        "deleted": 1592577642,
        "username": "xyz789",
        "supportAdmin": true,
        "belongsToGroupId": HashedId,
        "lastLogin": "2007-12-03T10:15:30Z",
        "services": [{}],
        "dashboard": {},
        "notifications": [{}],
        "notificationIds": [HashedId],
        "checkPassword": true,
        "loginInterrupts": {},
        "loginInterruptIds": [HashedId],
        "subscription": StripeSubscriptionPlan,
        "belongsToGroup": Group,
        "group": Group,
        "role": Role,
        "teams": [Team],
        "hasMultipleGroups": true,
        "groups": [Group],
        "unavailability": [UserUnavailability],
        "settings": {}
      }
    ]
  }
}

workOrderCostCenters

Response

Returns [String!]!

Arguments
Name Description
like - String

Example

Query
query workOrderCostCenters($like: String) {
  workOrderCostCenters(like: $like)
}
Variables
{"like": "xyz789"}
Response
{
  "data": {
    "workOrderCostCenters": ["xyz789"]
  }
}

workOrders

Response

Returns [WorkOrderV2!]!

Arguments
Name Description
ids - [HashedId!]
includeHidden - Boolean! Default = false
from - DateTime
to - DateTime

Example

Query
query workOrders(
  $ids: [HashedId!],
  $includeHidden: Boolean!,
  $from: DateTime,
  $to: DateTime
) {
  workOrders(
    ids: $ids,
    includeHidden: $includeHidden,
    from: $from,
    to: $to
  ) {
    id
    created
    updated
    name
    startDate
    endDate
    createdByGroupId
    procedureTemplateId
    creatorId
    creationDate
    customerName
    status
    notesId
    costCenter
    siteId
    creator {
      ...UserFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    site {
      ...SiteFragment
    }
    workOrderNumber
    notes {
      ...TranslationFragment
    }
    sourceTicketId
    assignee {
      ...WorkOrderPersonnelV2Fragment
    }
    followers {
      ...WorkOrderPersonnelV2Fragment
    }
    workers {
      ...WorkOrderPersonnelV2Fragment
    }
    costs {
      ...WorkOrderCostFragment
    }
    dailyRate {
      ...WorkOrderCostFragment
    }
    assetCollections {
      ...WorkOrderAssetCollectionFragment
    }
    assets {
      ...AssetFragment
    }
    locations {
      ...WorkOrderLocationFragment
    }
    history {
      ...WorkOrderHistoryEntryFragment
    }
  }
}
Variables
{
  "ids": [HashedId],
  "includeHidden": false,
  "from": "2007-12-03T10:15:30Z",
  "to": "2007-12-03T10:15:30Z"
}
Response
{
  "data": {
    "workOrders": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "xyz789",
        "startDate": "2007-12-03T10:15:30Z",
        "endDate": "2007-12-03T10:15:30Z",
        "createdByGroupId": HashedId,
        "procedureTemplateId": HashedId,
        "creatorId": HashedId,
        "creationDate": "2007-12-03T10:15:30Z",
        "customerName": "abc123",
        "status": "PENDING",
        "notesId": HashedId,
        "costCenter": "xyz789",
        "siteId": HashedId,
        "creator": User,
        "procedureTemplate": ProcedureTemplate,
        "site": Site,
        "workOrderNumber": 123,
        "notes": Translation,
        "sourceTicketId": HashedId,
        "assignee": WorkOrderPersonnelV2,
        "followers": [WorkOrderPersonnelV2],
        "workers": [WorkOrderPersonnelV2],
        "costs": [WorkOrderCost],
        "dailyRate": WorkOrderCost,
        "assetCollections": [WorkOrderAssetCollection],
        "assets": [Asset],
        "locations": [WorkOrderLocation],
        "history": [WorkOrderHistoryEntry]
      }
    ]
  }
}

workOrdersFiltered

Response

Returns [WorkOrderV2!]!

Arguments
Name Description
search - String!
filters - [FilterParamsInput!]!

Example

Query
query workOrdersFiltered(
  $search: String!,
  $filters: [FilterParamsInput!]!
) {
  workOrdersFiltered(
    search: $search,
    filters: $filters
  ) {
    id
    created
    updated
    name
    startDate
    endDate
    createdByGroupId
    procedureTemplateId
    creatorId
    creationDate
    customerName
    status
    notesId
    costCenter
    siteId
    creator {
      ...UserFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    site {
      ...SiteFragment
    }
    workOrderNumber
    notes {
      ...TranslationFragment
    }
    sourceTicketId
    assignee {
      ...WorkOrderPersonnelV2Fragment
    }
    followers {
      ...WorkOrderPersonnelV2Fragment
    }
    workers {
      ...WorkOrderPersonnelV2Fragment
    }
    costs {
      ...WorkOrderCostFragment
    }
    dailyRate {
      ...WorkOrderCostFragment
    }
    assetCollections {
      ...WorkOrderAssetCollectionFragment
    }
    assets {
      ...AssetFragment
    }
    locations {
      ...WorkOrderLocationFragment
    }
    history {
      ...WorkOrderHistoryEntryFragment
    }
  }
}
Variables
{
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "workOrdersFiltered": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "startDate": "2007-12-03T10:15:30Z",
        "endDate": "2007-12-03T10:15:30Z",
        "createdByGroupId": HashedId,
        "procedureTemplateId": HashedId,
        "creatorId": HashedId,
        "creationDate": "2007-12-03T10:15:30Z",
        "customerName": "abc123",
        "status": "PENDING",
        "notesId": HashedId,
        "costCenter": "abc123",
        "siteId": HashedId,
        "creator": User,
        "procedureTemplate": ProcedureTemplate,
        "site": Site,
        "workOrderNumber": 987,
        "notes": Translation,
        "sourceTicketId": HashedId,
        "assignee": WorkOrderPersonnelV2,
        "followers": [WorkOrderPersonnelV2],
        "workers": [WorkOrderPersonnelV2],
        "costs": [WorkOrderCost],
        "dailyRate": WorkOrderCost,
        "assetCollections": [WorkOrderAssetCollection],
        "assets": [Asset],
        "locations": [WorkOrderLocation],
        "history": [WorkOrderHistoryEntry]
      }
    ]
  }
}

workOrdersPaginated

Response

Returns a WorkOrdersPaginatedResult!

Arguments
Name Description
pagination - PaginationParams!
search - String
filters - [FilterParamsInput]

Example

Query
query workOrdersPaginated(
  $pagination: PaginationParams!,
  $search: String,
  $filters: [FilterParamsInput]
) {
  workOrdersPaginated(
    pagination: $pagination,
    search: $search,
    filters: $filters
  ) {
    meta {
      ...PaginationMetaFragment
    }
    rows {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{
  "pagination": PaginationParams,
  "search": "xyz789",
  "filters": [FilterParamsInput]
}
Response
{
  "data": {
    "workOrdersPaginated": {
      "meta": PaginationMeta,
      "rows": [WorkOrderV2]
    }
  }
}

Mutations

addHandlerByTicketId

Description

Will add a new handler to the ticket. If the new relation is ASSIGNEE the old assingee will be removed.

Response

Returns a TicketHandler!

Arguments
Name Description
id - HashedId!
input - TicketHandlerCreateInput!

Example

Query
mutation addHandlerByTicketId(
  $id: HashedId!,
  $input: TicketHandlerCreateInput!
) {
  addHandlerByTicketId(
    id: $id,
    input: $input
  ) {
    id
    displayName
    relationValue
    isDeletable
    relationType
    handlerType
  }
}
Variables
{
  "id": HashedId,
  "input": TicketHandlerCreateInput
}
Response
{
  "data": {
    "addHandlerByTicketId": {
      "id": HashedId,
      "displayName": "xyz789",
      "relationValue": "abc123",
      "isDeletable": true,
      "relationType": "ASSIGNEE",
      "handlerType": "USER"
    }
  }
}

addTicketRelation

use "addHandlerByTicketId" instead
Response

Returns a TicketHandler!

Arguments
Name Description
ticketId - HashedId!
ticketHandler - TicketHandlerInput!

Example

Query
mutation addTicketRelation(
  $ticketId: HashedId!,
  $ticketHandler: TicketHandlerInput!
) {
  addTicketRelation(
    ticketId: $ticketId,
    ticketHandler: $ticketHandler
  ) {
    id
    displayName
    relationValue
    isDeletable
    relationType
    handlerType
  }
}
Variables
{
  "ticketId": HashedId,
  "ticketHandler": TicketHandlerInput
}
Response
{
  "data": {
    "addTicketRelation": {
      "id": HashedId,
      "displayName": "xyz789",
      "relationValue": "xyz789",
      "isDeletable": false,
      "relationType": "ASSIGNEE",
      "handlerType": "USER"
    }
  }
}

archiveCustomFieldById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation archiveCustomFieldById($id: HashedId!) {
  archiveCustomFieldById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"archiveCustomFieldById": true}}

archiveRule

Description

As this is historical data, rules can't be deleted, but archived. After being archived, they won't be triggered, won't show up in the rules list and can't be edited anymore.

Response

Returns a Boolean

Arguments
Name Description
id - [HashedId!]!

Example

Query
mutation archiveRule($id: [HashedId!]!) {
  archiveRule(id: $id)
}
Variables
{"id": [HashedId]}
Response
{"data": {"archiveRule": true}}

assignAssetUUID

Response

Returns an Asset!

Arguments
Name Description
assetId - HashedId!
uuid - String!

Example

Query
mutation assignAssetUUID(
  $assetId: HashedId!,
  $uuid: String!
) {
  assignAssetUUID(
    assetId: $assetId,
    uuid: $uuid
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "uuid": "xyz789"
}
Response
{
  "data": {
    "assignAssetUUID": {
      "publicId": 987,
      "isCommodity": false,
      "moduleId": HashedId,
      "assignedToGroupId": HashedId,
      "allowReservations": false,
      "assetCategoryId": HashedId,
      "assetTypeId": HashedId,
      "assignment": "abc123",
      "availabilityId": HashedId,
      "BLE": "abc123",
      "client": "xyz789",
      "commissionDate": "2007-12-03",
      "costCenter": "abc123",
      "created": 1592577642,
      "createdByGroupId": HashedId,
      "currency": "abc123",
      "customer": "abc123",
      "customerEditable": true,
      "descriptionId": HashedId,
      "externalId": "abc123",
      "fixedAssetNumber": "abc123",
      "floorRoom": "abc123",
      "image": "abc123",
      "initialValue": "xyz789",
      "inventoryNumber": "abc123",
      "isInStationaryGateway": true,
      "isLocked": false,
      "leasingCostTermination": "xyz789",
      "leasingEnd": "2007-12-03",
      "leasingLevel": "abc123",
      "leasingMonthlyCost": "abc123",
      "leasingPartner": "xyz789",
      "leasingPartnerContractNumber": "xyz789",
      "leasingPartnerContractPositionNumber": "xyz789",
      "leasingRenewalDate": "2007-12-03",
      "leasingRenewalRate": "xyz789",
      "leasingStart": "2007-12-03",
      "manufacturerId": HashedId,
      "optionalAssetID": "xyz789",
      "ownershipId": HashedId,
      "partsNumber": "abc123",
      "previousSiteId": HashedId,
      "projectNumber": "abc123",
      "purchaseCost": "xyz789",
      "purchaseDepriciation": 123,
      "purchaseInvoiceNumber": "abc123",
      "purchaseLowValueAsset": true,
      "purchaseStart": "2007-12-03",
      "purchaseWarrantyEnd": "2007-12-03",
      "purchaseWarrantyPeriod": 987,
      "purchaseWarrantyStart": "2007-12-03",
      "qrAttached": false,
      "quantity": 987,
      "rentalCostTermination": "xyz789",
      "rentalEnd": "2007-12-03",
      "rentalMonthlyCost": "abc123",
      "rentalRenewalDate": "2007-12-03",
      "rentalRenewalRate": "xyz789",
      "rentalStart": "2007-12-03",
      "responsiblePerson": "xyz789",
      "runtimeWithOffsetInSeconds": 987,
      "serial": "xyz789",
      "serviceContract": false,
      "serviceContractCostPerYear": "abc123",
      "serviceContractEmail": "abc123",
      "serviceContractEnd": "2007-12-03",
      "serviceContractFrom": 1592577642,
      "serviceContractLevel": "xyz789",
      "serviceContractPartner": "xyz789",
      "serviceContractStart": "2007-12-03",
      "serviceContractTo": 1592577642,
      "siteId": HashedId,
      "assignedToSiteId": HashedId,
      "supplier": "xyz789",
      "updated": 1592577642,
      "uuid": "abc123",
      "id": HashedId,
      "stateV2": [AssetStateItem],
      "state": AssetState,
      "serviceContractDocuments": [Document],
      "availability": "READY_TO_USE",
      "ownership": "PURCHASE",
      "module": Module,
      "scanTime": "2007-12-03",
      "imei": "xyz789",
      "costsSum": 123.45,
      "costsSumBattery": 987.65,
      "costsSumRepair": 123.45,
      "costsSumMaintenance": 123.45,
      "costsSumParts": 987.65,
      "costsSumConsumables": 123.45,
      "costsSumFuel": 123.45,
      "costsSumLabor": 987.65,
      "costsSumLogistics": 987.65,
      "costsSumTaxes": 987.65,
      "costsSumOther": 123.45,
      "costsSumCertification": 987.65,
      "parameterOffsetIds": [HashedId],
      "reservationIds": [HashedId],
      "moduleConnectionStatus": "primary",
      "relatedGroups": [RelatedGroup],
      "checkScheduleRule": AssetCheckScheduleRule,
      "tickets": [Ticket],
      "lastTicketDate": "2007-12-03T10:15:30Z",
      "totalUtilization": "abc123",
      "totalWorkDone": "abc123",
      "purchaseCurrentBookValue": "xyz789",
      "batteryLevel": "abc123",
      "lastContacted": 1592577642,
      "vncTunnelUrl": "xyz789",
      "subscription": "abc123",
      "ticketsCount": "xyz789",
      "workingHoursSettings": {},
      "workingHoursNotification": [
        RuleNotificationRelation
      ],
      "gatewayAsset": Asset,
      "services": [Service],
      "primaryServicePackage": ServicePackageWithSourceType,
      "eventIds": [HashedId],
      "nextService": 123,
      "downloadLink": "abc123",
      "activity": AssetActivity,
      "latestAssetData": {},
      "location": Location,
      "parameterSets": [ParameterSet],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "status": [StatusItem],
      "displayParameters": [DisplayParameter],
      "latestTrip": AssetTripLatest,
      "unavailability": [AssetUnavailability],
      "reservations": [Reservation],
      "parameterOffsets": [AssetParameterOffset],
      "costs": [Cost],
      "manufacturer": Manufacturer,
      "createdByGroup": Group,
      "assetType": AssetType,
      "assetCategory": AssetCategory,
      "assignedToGroup": Group,
      "site": Site,
      "assignedToSite": Site,
      "assignedToPreviousSite": Site,
      "documents": [Document],
      "events": [Event],
      "description": Translation,
      "checkSchedule": AssetCheckSchedule,
      "maintenanceSchedule": AssetMaintenanceSchedule,
      "workOrders": [WorkOrderV2]
    }
  }
}

assignServicesToServicePackage

Response

Returns a Boolean!

Arguments
Name Description
servicePackageId - HashedId!
serviceIds - [HashedId!]!

Example

Query
mutation assignServicesToServicePackage(
  $servicePackageId: HashedId!,
  $serviceIds: [HashedId!]!
) {
  assignServicesToServicePackage(
    servicePackageId: $servicePackageId,
    serviceIds: $serviceIds
  )
}
Variables
{
  "servicePackageId": HashedId,
  "serviceIds": [HashedId]
}
Response
{"data": {"assignServicesToServicePackage": false}}

assignWorkOrderAssets

Response

Returns [Asset!]!

Arguments
Name Description
workOrder - WorkOrderDatesInput!
assetIds - [HashedId!]! Default = []

Example

Query
mutation assignWorkOrderAssets(
  $workOrder: WorkOrderDatesInput!,
  $assetIds: [HashedId!]!
) {
  assignWorkOrderAssets(
    workOrder: $workOrder,
    assetIds: $assetIds
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{"workOrder": WorkOrderDatesInput, "assetIds": [""]}
Response
{
  "data": {
    "assignWorkOrderAssets": [
      {
        "publicId": 123,
        "isCommodity": true,
        "moduleId": HashedId,
        "assignedToGroupId": HashedId,
        "allowReservations": false,
        "assetCategoryId": HashedId,
        "assetTypeId": HashedId,
        "assignment": "abc123",
        "availabilityId": HashedId,
        "BLE": "xyz789",
        "client": "xyz789",
        "commissionDate": "2007-12-03",
        "costCenter": "xyz789",
        "created": 1592577642,
        "createdByGroupId": HashedId,
        "currency": "abc123",
        "customer": "xyz789",
        "customerEditable": true,
        "descriptionId": HashedId,
        "externalId": "xyz789",
        "fixedAssetNumber": "xyz789",
        "floorRoom": "xyz789",
        "image": "xyz789",
        "initialValue": "xyz789",
        "inventoryNumber": "xyz789",
        "isInStationaryGateway": false,
        "isLocked": false,
        "leasingCostTermination": "abc123",
        "leasingEnd": "2007-12-03",
        "leasingLevel": "abc123",
        "leasingMonthlyCost": "xyz789",
        "leasingPartner": "xyz789",
        "leasingPartnerContractNumber": "xyz789",
        "leasingPartnerContractPositionNumber": "xyz789",
        "leasingRenewalDate": "2007-12-03",
        "leasingRenewalRate": "xyz789",
        "leasingStart": "2007-12-03",
        "manufacturerId": HashedId,
        "optionalAssetID": "abc123",
        "ownershipId": HashedId,
        "partsNumber": "abc123",
        "previousSiteId": HashedId,
        "projectNumber": "xyz789",
        "purchaseCost": "xyz789",
        "purchaseDepriciation": 123,
        "purchaseInvoiceNumber": "abc123",
        "purchaseLowValueAsset": false,
        "purchaseStart": "2007-12-03",
        "purchaseWarrantyEnd": "2007-12-03",
        "purchaseWarrantyPeriod": 123,
        "purchaseWarrantyStart": "2007-12-03",
        "qrAttached": true,
        "quantity": 123,
        "rentalCostTermination": "xyz789",
        "rentalEnd": "2007-12-03",
        "rentalMonthlyCost": "abc123",
        "rentalRenewalDate": "2007-12-03",
        "rentalRenewalRate": "xyz789",
        "rentalStart": "2007-12-03",
        "responsiblePerson": "xyz789",
        "runtimeWithOffsetInSeconds": 123,
        "serial": "abc123",
        "serviceContract": true,
        "serviceContractCostPerYear": "abc123",
        "serviceContractEmail": "xyz789",
        "serviceContractEnd": "2007-12-03",
        "serviceContractFrom": 1592577642,
        "serviceContractLevel": "abc123",
        "serviceContractPartner": "abc123",
        "serviceContractStart": "2007-12-03",
        "serviceContractTo": 1592577642,
        "siteId": HashedId,
        "assignedToSiteId": HashedId,
        "supplier": "abc123",
        "updated": 1592577642,
        "uuid": "abc123",
        "id": HashedId,
        "stateV2": [AssetStateItem],
        "state": AssetState,
        "serviceContractDocuments": [Document],
        "availability": "READY_TO_USE",
        "ownership": "PURCHASE",
        "module": Module,
        "scanTime": "2007-12-03",
        "imei": "abc123",
        "costsSum": 987.65,
        "costsSumBattery": 123.45,
        "costsSumRepair": 123.45,
        "costsSumMaintenance": 123.45,
        "costsSumParts": 987.65,
        "costsSumConsumables": 987.65,
        "costsSumFuel": 123.45,
        "costsSumLabor": 123.45,
        "costsSumLogistics": 987.65,
        "costsSumTaxes": 123.45,
        "costsSumOther": 987.65,
        "costsSumCertification": 987.65,
        "parameterOffsetIds": [HashedId],
        "reservationIds": [HashedId],
        "moduleConnectionStatus": "primary",
        "relatedGroups": [RelatedGroup],
        "checkScheduleRule": AssetCheckScheduleRule,
        "tickets": [Ticket],
        "lastTicketDate": "2007-12-03T10:15:30Z",
        "totalUtilization": "xyz789",
        "totalWorkDone": "xyz789",
        "purchaseCurrentBookValue": "xyz789",
        "batteryLevel": "abc123",
        "lastContacted": 1592577642,
        "vncTunnelUrl": "abc123",
        "subscription": "xyz789",
        "ticketsCount": "abc123",
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "gatewayAsset": Asset,
        "services": [Service],
        "primaryServicePackage": ServicePackageWithSourceType,
        "eventIds": [HashedId],
        "nextService": 123,
        "downloadLink": "xyz789",
        "activity": AssetActivity,
        "latestAssetData": {},
        "location": Location,
        "parameterSets": [ParameterSet],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "status": [StatusItem],
        "displayParameters": [DisplayParameter],
        "latestTrip": AssetTripLatest,
        "unavailability": [AssetUnavailability],
        "reservations": [Reservation],
        "parameterOffsets": [AssetParameterOffset],
        "costs": [Cost],
        "manufacturer": Manufacturer,
        "createdByGroup": Group,
        "assetType": AssetType,
        "assetCategory": AssetCategory,
        "assignedToGroup": Group,
        "site": Site,
        "assignedToSite": Site,
        "assignedToPreviousSite": Site,
        "documents": [Document],
        "events": [Event],
        "description": Translation,
        "checkSchedule": AssetCheckSchedule,
        "maintenanceSchedule": AssetMaintenanceSchedule,
        "workOrders": [WorkOrderV2]
      }
    ]
  }
}

assignWorkOrderCosts

Response

Returns [WorkOrderCost!]!

Arguments
Name Description
workOrder - WorkOrderDatesInput!
costs - [WorkOrderCostInput!]!

Example

Query
mutation assignWorkOrderCosts(
  $workOrder: WorkOrderDatesInput!,
  $costs: [WorkOrderCostInput!]!
) {
  assignWorkOrderCosts(
    workOrder: $workOrder,
    costs: $costs
  ) {
    workOrderId
    widgetHint
    id
    valueCents
    costType
    currency
  }
}
Variables
{
  "workOrder": WorkOrderDatesInput,
  "costs": [WorkOrderCostInput]
}
Response
{
  "data": {
    "assignWorkOrderCosts": [
      {
        "workOrderId": HashedId,
        "widgetHint": "xyz789",
        "id": HashedId,
        "valueCents": 123,
        "costType": "DAILY_RATE",
        "currency": "AED"
      }
    ]
  }
}

assignWorkOrderLocations

Response

Returns [WorkOrderLocation!]!

Arguments
Name Description
workOrder - WorkOrderDatesInput!
locations - [WorkOrderLocationInput!]!

Example

Query
mutation assignWorkOrderLocations(
  $workOrder: WorkOrderDatesInput!,
  $locations: [WorkOrderLocationInput!]!
) {
  assignWorkOrderLocations(
    workOrder: $workOrder,
    locations: $locations
  ) {
    workOrderId
    widgetHint
    id
    name
    address
    lat
    lng
    siteId
  }
}
Variables
{
  "workOrder": WorkOrderDatesInput,
  "locations": [WorkOrderLocationInput]
}
Response
{
  "data": {
    "assignWorkOrderLocations": [
      {
        "workOrderId": HashedId,
        "widgetHint": "xyz789",
        "id": HashedId,
        "name": "xyz789",
        "address": "xyz789",
        "lat": "abc123",
        "lng": "abc123",
        "siteId": HashedId
      }
    ]
  }
}

assignWorkOrderPersonnel

Response

Returns [WorkOrderPersonnelV2!]!

Arguments
Name Description
workOrder - WorkOrderDatesInput!
personnel - WorkOrderPersonnelInput!

Example

Query
mutation assignWorkOrderPersonnel(
  $workOrder: WorkOrderDatesInput!,
  $personnel: WorkOrderPersonnelInput!
) {
  assignWorkOrderPersonnel(
    workOrder: $workOrder,
    personnel: $personnel
  ) {
    workOrderId
    widgetHint
    id
    userId
    groupId
    user {
      ...UserFragment
    }
    group {
      ...GroupFragment
    }
    contact {
      ...WorkOrderPersonnelContactFragment
    }
    removable
    displayName
  }
}
Variables
{
  "workOrder": WorkOrderDatesInput,
  "personnel": WorkOrderPersonnelInput
}
Response
{
  "data": {
    "assignWorkOrderPersonnel": [
      {
        "workOrderId": HashedId,
        "widgetHint": "abc123",
        "id": HashedId,
        "userId": HashedId,
        "groupId": HashedId,
        "user": User,
        "group": Group,
        "contact": WorkOrderPersonnelContact,
        "removable": false,
        "displayName": "xyz789"
      }
    ]
  }
}

attachQrCodeToSite

Response

Returns a Site!

Arguments
Name Description
id - HashedId!
uuid - String!
input - SiteAttachQrCodeInput!

Example

Query
mutation attachQrCodeToSite(
  $id: HashedId!,
  $uuid: String!,
  $input: SiteAttachQrCodeInput!
) {
  attachQrCodeToSite(
    id: $id,
    uuid: $uuid,
    input: $input
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "uuid": "abc123",
  "input": SiteAttachQrCodeInput
}
Response
{
  "data": {
    "attachQrCodeToSite": {
      "id": HashedId,
      "externalId": "abc123",
      "name": "xyz789",
      "isFixed": false,
      "locationText": "xyz789",
      "address": "xyz789",
      "coordinates": Coordinates,
      "assignedToGroup": Group,
      "assignedToGroupId": HashedId,
      "createdByGroup": Group,
      "createdByGroupId": HashedId,
      "accountNumber": "xyz789",
      "customerNumber": "abc123",
      "siteManagerName": "xyz789",
      "email": "abc123",
      "telephone": "abc123",
      "postalCode": "abc123",
      "country": "abc123",
      "geofenceSettings": {},
      "geofenceNotification": [RuleNotificationRelation],
      "containsAssetsToModifyByGroup": false,
      "created": 1592577642,
      "assetsCount": 123,
      "updated": 1592577642,
      "note": "xyz789",
      "image": "xyz789",
      "parentSite": Site,
      "parentSiteId": HashedId,
      "servicePackageId": HashedId,
      "shouldInheritServicePackage": false,
      "servicePackage": ServicePackage,
      "shouldInheritGeofenceSettings": true,
      "shouldInheritManagerDetails": true,
      "groupTreeRootId": HashedId,
      "lat": "abc123",
      "lng": "abc123",
      "siteTypeId": HashedId,
      "qrAttached": true,
      "uuid": "abc123",
      "events": [Event],
      "publicId": 987,
      "siteType": SiteType,
      "siteManagers": [SiteManager]
    }
  }
}

changeGroupAssignment

Response

Returns [Asset!]

Arguments
Name Description
assignToGroupId - HashedId

Example

Query
mutation changeGroupAssignment($assignToGroupId: HashedId) {
  changeGroupAssignment(assignToGroupId: $assignToGroupId) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{"assignToGroupId": HashedId}
Response
{
  "data": {
    "changeGroupAssignment": [
      {
        "publicId": 123,
        "isCommodity": true,
        "moduleId": HashedId,
        "assignedToGroupId": HashedId,
        "allowReservations": true,
        "assetCategoryId": HashedId,
        "assetTypeId": HashedId,
        "assignment": "abc123",
        "availabilityId": HashedId,
        "BLE": "xyz789",
        "client": "xyz789",
        "commissionDate": "2007-12-03",
        "costCenter": "xyz789",
        "created": 1592577642,
        "createdByGroupId": HashedId,
        "currency": "xyz789",
        "customer": "abc123",
        "customerEditable": false,
        "descriptionId": HashedId,
        "externalId": "xyz789",
        "fixedAssetNumber": "xyz789",
        "floorRoom": "xyz789",
        "image": "xyz789",
        "initialValue": "abc123",
        "inventoryNumber": "xyz789",
        "isInStationaryGateway": true,
        "isLocked": false,
        "leasingCostTermination": "xyz789",
        "leasingEnd": "2007-12-03",
        "leasingLevel": "abc123",
        "leasingMonthlyCost": "xyz789",
        "leasingPartner": "abc123",
        "leasingPartnerContractNumber": "abc123",
        "leasingPartnerContractPositionNumber": "xyz789",
        "leasingRenewalDate": "2007-12-03",
        "leasingRenewalRate": "abc123",
        "leasingStart": "2007-12-03",
        "manufacturerId": HashedId,
        "optionalAssetID": "abc123",
        "ownershipId": HashedId,
        "partsNumber": "xyz789",
        "previousSiteId": HashedId,
        "projectNumber": "xyz789",
        "purchaseCost": "xyz789",
        "purchaseDepriciation": 987,
        "purchaseInvoiceNumber": "xyz789",
        "purchaseLowValueAsset": true,
        "purchaseStart": "2007-12-03",
        "purchaseWarrantyEnd": "2007-12-03",
        "purchaseWarrantyPeriod": 987,
        "purchaseWarrantyStart": "2007-12-03",
        "qrAttached": false,
        "quantity": 987,
        "rentalCostTermination": "xyz789",
        "rentalEnd": "2007-12-03",
        "rentalMonthlyCost": "xyz789",
        "rentalRenewalDate": "2007-12-03",
        "rentalRenewalRate": "abc123",
        "rentalStart": "2007-12-03",
        "responsiblePerson": "xyz789",
        "runtimeWithOffsetInSeconds": 987,
        "serial": "abc123",
        "serviceContract": false,
        "serviceContractCostPerYear": "xyz789",
        "serviceContractEmail": "xyz789",
        "serviceContractEnd": "2007-12-03",
        "serviceContractFrom": 1592577642,
        "serviceContractLevel": "abc123",
        "serviceContractPartner": "xyz789",
        "serviceContractStart": "2007-12-03",
        "serviceContractTo": 1592577642,
        "siteId": HashedId,
        "assignedToSiteId": HashedId,
        "supplier": "abc123",
        "updated": 1592577642,
        "uuid": "xyz789",
        "id": HashedId,
        "stateV2": [AssetStateItem],
        "state": AssetState,
        "serviceContractDocuments": [Document],
        "availability": "READY_TO_USE",
        "ownership": "PURCHASE",
        "module": Module,
        "scanTime": "2007-12-03",
        "imei": "abc123",
        "costsSum": 123.45,
        "costsSumBattery": 123.45,
        "costsSumRepair": 123.45,
        "costsSumMaintenance": 123.45,
        "costsSumParts": 123.45,
        "costsSumConsumables": 123.45,
        "costsSumFuel": 987.65,
        "costsSumLabor": 987.65,
        "costsSumLogistics": 987.65,
        "costsSumTaxes": 123.45,
        "costsSumOther": 123.45,
        "costsSumCertification": 123.45,
        "parameterOffsetIds": [HashedId],
        "reservationIds": [HashedId],
        "moduleConnectionStatus": "primary",
        "relatedGroups": [RelatedGroup],
        "checkScheduleRule": AssetCheckScheduleRule,
        "tickets": [Ticket],
        "lastTicketDate": "2007-12-03T10:15:30Z",
        "totalUtilization": "abc123",
        "totalWorkDone": "xyz789",
        "purchaseCurrentBookValue": "xyz789",
        "batteryLevel": "xyz789",
        "lastContacted": 1592577642,
        "vncTunnelUrl": "xyz789",
        "subscription": "xyz789",
        "ticketsCount": "abc123",
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "gatewayAsset": Asset,
        "services": [Service],
        "primaryServicePackage": ServicePackageWithSourceType,
        "eventIds": [HashedId],
        "nextService": 987,
        "downloadLink": "abc123",
        "activity": AssetActivity,
        "latestAssetData": {},
        "location": Location,
        "parameterSets": [ParameterSet],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "status": [StatusItem],
        "displayParameters": [DisplayParameter],
        "latestTrip": AssetTripLatest,
        "unavailability": [AssetUnavailability],
        "reservations": [Reservation],
        "parameterOffsets": [AssetParameterOffset],
        "costs": [Cost],
        "manufacturer": Manufacturer,
        "createdByGroup": Group,
        "assetType": AssetType,
        "assetCategory": AssetCategory,
        "assignedToGroup": Group,
        "site": Site,
        "assignedToSite": Site,
        "assignedToPreviousSite": Site,
        "documents": [Document],
        "events": [Event],
        "description": Translation,
        "checkSchedule": AssetCheckSchedule,
        "maintenanceSchedule": AssetMaintenanceSchedule,
        "workOrders": [WorkOrderV2]
      }
    ]
  }
}

changeRoomStatusById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId! Id of the asset that has room type.
status - RoomStatusEnum! Simple type for room status instructions to be used in requests for fetching housekeeping rooms. Valid status values are Clean, Dirty, Pickup, Inspected, OutOfOrder, OutOfService.

Example

Query
mutation changeRoomStatusById(
  $id: HashedId!,
  $status: RoomStatusEnum!
) {
  changeRoomStatusById(
    id: $id,
    status: $status
  )
}
Variables
{"id": HashedId, "status": "Inspected"}
Response
{"data": {"changeRoomStatusById": true}}

completeTrial

Response

Returns a Boolean!

Example

Query
mutation completeTrial {
  completeTrial
}
Response
{"data": {"completeTrial": true}}

createAsset

Response

Returns [Asset!]

Arguments
Name Description
allowReservations - Boolean
assetTypeId - HashedId!
assignedToGroupId - HashedId
assignedToSiteId - HashedId
availability - AssetAvailability
BLE - String
client - String
commissionDate - Date
costCenter - String
currency - String
customerEditable - Boolean
description - TranslationInput
disableWebhooks - Boolean
externalId - String External ID should only be filled by a machine. This is used to couple an external asset with an internal asset. An external Asset is an asset that represents the same physical thing but in a different system.
fixedAssetNumber - String
floorRoom - String
imei - String
initialValue - String
inventoryNumber - String
isInStationaryGateway - Boolean
isTypePresetCheckOnSave - Boolean
leasingCostTermination - String
leasingEnd - Date
leasingLevel - String
leasingMonthlyCost - String
leasingPartner - String
leasingPartnerContractNumber - String
leasingPartnerContractPositionNumber - String
leasingRenewalDate - Date
leasingRenewalRate - String
leasingStart - Date
optionalAssetID - String
ownership - AssetOwnership
parameterOffsets - [AssetParameterOffsetInput!]
partsNumber - String Specific identifier of a certain part of an asset
projectNumber - String
purchaseCost - String
purchaseDepriciation - Int
purchaseInvoiceNumber - String
purchaseLowValueAsset - Boolean
purchaseStart - Date
purchaseWarrantyEnd - Date
purchaseWarrantyPeriod - Int
purchaseWarrantyStart - Date
qrAttached - Boolean
quantity - Int
rentalCostTermination - String
rentalEnd - Date
rentalMonthlyCost - String
rentalRenewalDate - Date
rentalRenewalRate - String
rentalStart - Date
responsiblePerson - String
serial - String!
serviceContract - Boolean
serviceContractCostPerYear - String
serviceContractDocuments - [Upload!]
serviceContractEmail - String
serviceContractEnd - Date
serviceContractFrom - Timestamp
serviceContractLevel - String
serviceContractPartner - String
serviceContractStart - Date
serviceContractTo - Timestamp
subscription - String Change service tier for this asset. See SubscriptionPlan for a full list of services - only submit the name.
supplier - String
syncSiteGroup - Boolean
workingHoursNotification - [RuleNotificationRelationInput] When a working hours event happens, send notifications to these entities
workingHoursSettings - JSON Sets up a working hour watcher. See RuleBlock schema for syntax.
transferModule - Boolean If set, the asset will be became primary asset of the IOT module with the given IMEI.

Example

Query
mutation createAsset(
  $allowReservations: Boolean,
  $assetTypeId: HashedId!,
  $assignedToGroupId: HashedId,
  $assignedToSiteId: HashedId,
  $availability: AssetAvailability,
  $BLE: String,
  $client: String,
  $commissionDate: Date,
  $costCenter: String,
  $currency: String,
  $customerEditable: Boolean,
  $description: TranslationInput,
  $disableWebhooks: Boolean,
  $externalId: String,
  $fixedAssetNumber: String,
  $floorRoom: String,
  $imei: String,
  $initialValue: String,
  $inventoryNumber: String,
  $isInStationaryGateway: Boolean,
  $isTypePresetCheckOnSave: Boolean,
  $leasingCostTermination: String,
  $leasingEnd: Date,
  $leasingLevel: String,
  $leasingMonthlyCost: String,
  $leasingPartner: String,
  $leasingPartnerContractNumber: String,
  $leasingPartnerContractPositionNumber: String,
  $leasingRenewalDate: Date,
  $leasingRenewalRate: String,
  $leasingStart: Date,
  $optionalAssetID: String,
  $ownership: AssetOwnership,
  $parameterOffsets: [AssetParameterOffsetInput!],
  $partsNumber: String,
  $projectNumber: String,
  $purchaseCost: String,
  $purchaseDepriciation: Int,
  $purchaseInvoiceNumber: String,
  $purchaseLowValueAsset: Boolean,
  $purchaseStart: Date,
  $purchaseWarrantyEnd: Date,
  $purchaseWarrantyPeriod: Int,
  $purchaseWarrantyStart: Date,
  $qrAttached: Boolean,
  $quantity: Int,
  $rentalCostTermination: String,
  $rentalEnd: Date,
  $rentalMonthlyCost: String,
  $rentalRenewalDate: Date,
  $rentalRenewalRate: String,
  $rentalStart: Date,
  $responsiblePerson: String,
  $serial: String!,
  $serviceContract: Boolean,
  $serviceContractCostPerYear: String,
  $serviceContractDocuments: [Upload!],
  $serviceContractEmail: String,
  $serviceContractEnd: Date,
  $serviceContractFrom: Timestamp,
  $serviceContractLevel: String,
  $serviceContractPartner: String,
  $serviceContractStart: Date,
  $serviceContractTo: Timestamp,
  $subscription: String,
  $supplier: String,
  $syncSiteGroup: Boolean,
  $workingHoursNotification: [RuleNotificationRelationInput],
  $workingHoursSettings: JSON,
  $transferModule: Boolean
) {
  createAsset(
    allowReservations: $allowReservations,
    assetTypeId: $assetTypeId,
    assignedToGroupId: $assignedToGroupId,
    assignedToSiteId: $assignedToSiteId,
    availability: $availability,
    BLE: $BLE,
    client: $client,
    commissionDate: $commissionDate,
    costCenter: $costCenter,
    currency: $currency,
    customerEditable: $customerEditable,
    description: $description,
    disableWebhooks: $disableWebhooks,
    externalId: $externalId,
    fixedAssetNumber: $fixedAssetNumber,
    floorRoom: $floorRoom,
    imei: $imei,
    initialValue: $initialValue,
    inventoryNumber: $inventoryNumber,
    isInStationaryGateway: $isInStationaryGateway,
    isTypePresetCheckOnSave: $isTypePresetCheckOnSave,
    leasingCostTermination: $leasingCostTermination,
    leasingEnd: $leasingEnd,
    leasingLevel: $leasingLevel,
    leasingMonthlyCost: $leasingMonthlyCost,
    leasingPartner: $leasingPartner,
    leasingPartnerContractNumber: $leasingPartnerContractNumber,
    leasingPartnerContractPositionNumber: $leasingPartnerContractPositionNumber,
    leasingRenewalDate: $leasingRenewalDate,
    leasingRenewalRate: $leasingRenewalRate,
    leasingStart: $leasingStart,
    optionalAssetID: $optionalAssetID,
    ownership: $ownership,
    parameterOffsets: $parameterOffsets,
    partsNumber: $partsNumber,
    projectNumber: $projectNumber,
    purchaseCost: $purchaseCost,
    purchaseDepriciation: $purchaseDepriciation,
    purchaseInvoiceNumber: $purchaseInvoiceNumber,
    purchaseLowValueAsset: $purchaseLowValueAsset,
    purchaseStart: $purchaseStart,
    purchaseWarrantyEnd: $purchaseWarrantyEnd,
    purchaseWarrantyPeriod: $purchaseWarrantyPeriod,
    purchaseWarrantyStart: $purchaseWarrantyStart,
    qrAttached: $qrAttached,
    quantity: $quantity,
    rentalCostTermination: $rentalCostTermination,
    rentalEnd: $rentalEnd,
    rentalMonthlyCost: $rentalMonthlyCost,
    rentalRenewalDate: $rentalRenewalDate,
    rentalRenewalRate: $rentalRenewalRate,
    rentalStart: $rentalStart,
    responsiblePerson: $responsiblePerson,
    serial: $serial,
    serviceContract: $serviceContract,
    serviceContractCostPerYear: $serviceContractCostPerYear,
    serviceContractDocuments: $serviceContractDocuments,
    serviceContractEmail: $serviceContractEmail,
    serviceContractEnd: $serviceContractEnd,
    serviceContractFrom: $serviceContractFrom,
    serviceContractLevel: $serviceContractLevel,
    serviceContractPartner: $serviceContractPartner,
    serviceContractStart: $serviceContractStart,
    serviceContractTo: $serviceContractTo,
    subscription: $subscription,
    supplier: $supplier,
    syncSiteGroup: $syncSiteGroup,
    workingHoursNotification: $workingHoursNotification,
    workingHoursSettings: $workingHoursSettings,
    transferModule: $transferModule
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{
  "allowReservations": false,
  "assetTypeId": HashedId,
  "assignedToGroupId": HashedId,
  "assignedToSiteId": HashedId,
  "availability": "READY_TO_USE",
  "BLE": "xyz789",
  "client": "abc123",
  "commissionDate": "2007-12-03",
  "costCenter": "xyz789",
  "currency": "xyz789",
  "customerEditable": false,
  "description": TranslationInput,
  "disableWebhooks": false,
  "externalId": "abc123",
  "fixedAssetNumber": "abc123",
  "floorRoom": "xyz789",
  "imei": "xyz789",
  "initialValue": "abc123",
  "inventoryNumber": "xyz789",
  "isInStationaryGateway": false,
  "isTypePresetCheckOnSave": true,
  "leasingCostTermination": "xyz789",
  "leasingEnd": "2007-12-03",
  "leasingLevel": "abc123",
  "leasingMonthlyCost": "abc123",
  "leasingPartner": "abc123",
  "leasingPartnerContractNumber": "abc123",
  "leasingPartnerContractPositionNumber": "xyz789",
  "leasingRenewalDate": "2007-12-03",
  "leasingRenewalRate": "abc123",
  "leasingStart": "2007-12-03",
  "optionalAssetID": "abc123",
  "ownership": "PURCHASE",
  "parameterOffsets": [AssetParameterOffsetInput],
  "partsNumber": "xyz789",
  "projectNumber": "xyz789",
  "purchaseCost": "xyz789",
  "purchaseDepriciation": 987,
  "purchaseInvoiceNumber": "abc123",
  "purchaseLowValueAsset": true,
  "purchaseStart": "2007-12-03",
  "purchaseWarrantyEnd": "2007-12-03",
  "purchaseWarrantyPeriod": 123,
  "purchaseWarrantyStart": "2007-12-03",
  "qrAttached": false,
  "quantity": 987,
  "rentalCostTermination": "xyz789",
  "rentalEnd": "2007-12-03",
  "rentalMonthlyCost": "abc123",
  "rentalRenewalDate": "2007-12-03",
  "rentalRenewalRate": "abc123",
  "rentalStart": "2007-12-03",
  "responsiblePerson": "xyz789",
  "serial": "xyz789",
  "serviceContract": true,
  "serviceContractCostPerYear": "xyz789",
  "serviceContractDocuments": [Upload],
  "serviceContractEmail": "xyz789",
  "serviceContractEnd": "2007-12-03",
  "serviceContractFrom": 1592577642,
  "serviceContractLevel": "xyz789",
  "serviceContractPartner": "xyz789",
  "serviceContractStart": "2007-12-03",
  "serviceContractTo": 1592577642,
  "subscription": "xyz789",
  "supplier": "xyz789",
  "syncSiteGroup": true,
  "workingHoursNotification": [
    RuleNotificationRelationInput
  ],
  "workingHoursSettings": {},
  "transferModule": false
}
Response
{
  "data": {
    "createAsset": [
      {
        "publicId": 123,
        "isCommodity": true,
        "moduleId": HashedId,
        "assignedToGroupId": HashedId,
        "allowReservations": false,
        "assetCategoryId": HashedId,
        "assetTypeId": HashedId,
        "assignment": "abc123",
        "availabilityId": HashedId,
        "BLE": "xyz789",
        "client": "xyz789",
        "commissionDate": "2007-12-03",
        "costCenter": "xyz789",
        "created": 1592577642,
        "createdByGroupId": HashedId,
        "currency": "abc123",
        "customer": "xyz789",
        "customerEditable": true,
        "descriptionId": HashedId,
        "externalId": "abc123",
        "fixedAssetNumber": "abc123",
        "floorRoom": "abc123",
        "image": "abc123",
        "initialValue": "xyz789",
        "inventoryNumber": "abc123",
        "isInStationaryGateway": false,
        "isLocked": false,
        "leasingCostTermination": "xyz789",
        "leasingEnd": "2007-12-03",
        "leasingLevel": "abc123",
        "leasingMonthlyCost": "abc123",
        "leasingPartner": "xyz789",
        "leasingPartnerContractNumber": "xyz789",
        "leasingPartnerContractPositionNumber": "abc123",
        "leasingRenewalDate": "2007-12-03",
        "leasingRenewalRate": "xyz789",
        "leasingStart": "2007-12-03",
        "manufacturerId": HashedId,
        "optionalAssetID": "abc123",
        "ownershipId": HashedId,
        "partsNumber": "abc123",
        "previousSiteId": HashedId,
        "projectNumber": "abc123",
        "purchaseCost": "abc123",
        "purchaseDepriciation": 123,
        "purchaseInvoiceNumber": "xyz789",
        "purchaseLowValueAsset": false,
        "purchaseStart": "2007-12-03",
        "purchaseWarrantyEnd": "2007-12-03",
        "purchaseWarrantyPeriod": 123,
        "purchaseWarrantyStart": "2007-12-03",
        "qrAttached": true,
        "quantity": 987,
        "rentalCostTermination": "abc123",
        "rentalEnd": "2007-12-03",
        "rentalMonthlyCost": "abc123",
        "rentalRenewalDate": "2007-12-03",
        "rentalRenewalRate": "xyz789",
        "rentalStart": "2007-12-03",
        "responsiblePerson": "abc123",
        "runtimeWithOffsetInSeconds": 987,
        "serial": "xyz789",
        "serviceContract": false,
        "serviceContractCostPerYear": "abc123",
        "serviceContractEmail": "xyz789",
        "serviceContractEnd": "2007-12-03",
        "serviceContractFrom": 1592577642,
        "serviceContractLevel": "abc123",
        "serviceContractPartner": "abc123",
        "serviceContractStart": "2007-12-03",
        "serviceContractTo": 1592577642,
        "siteId": HashedId,
        "assignedToSiteId": HashedId,
        "supplier": "abc123",
        "updated": 1592577642,
        "uuid": "abc123",
        "id": HashedId,
        "stateV2": [AssetStateItem],
        "state": AssetState,
        "serviceContractDocuments": [Document],
        "availability": "READY_TO_USE",
        "ownership": "PURCHASE",
        "module": Module,
        "scanTime": "2007-12-03",
        "imei": "abc123",
        "costsSum": 987.65,
        "costsSumBattery": 987.65,
        "costsSumRepair": 123.45,
        "costsSumMaintenance": 123.45,
        "costsSumParts": 123.45,
        "costsSumConsumables": 987.65,
        "costsSumFuel": 987.65,
        "costsSumLabor": 123.45,
        "costsSumLogistics": 987.65,
        "costsSumTaxes": 987.65,
        "costsSumOther": 987.65,
        "costsSumCertification": 987.65,
        "parameterOffsetIds": [HashedId],
        "reservationIds": [HashedId],
        "moduleConnectionStatus": "primary",
        "relatedGroups": [RelatedGroup],
        "checkScheduleRule": AssetCheckScheduleRule,
        "tickets": [Ticket],
        "lastTicketDate": "2007-12-03T10:15:30Z",
        "totalUtilization": "xyz789",
        "totalWorkDone": "abc123",
        "purchaseCurrentBookValue": "abc123",
        "batteryLevel": "xyz789",
        "lastContacted": 1592577642,
        "vncTunnelUrl": "xyz789",
        "subscription": "xyz789",
        "ticketsCount": "xyz789",
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "gatewayAsset": Asset,
        "services": [Service],
        "primaryServicePackage": ServicePackageWithSourceType,
        "eventIds": [HashedId],
        "nextService": 987,
        "downloadLink": "xyz789",
        "activity": AssetActivity,
        "latestAssetData": {},
        "location": Location,
        "parameterSets": [ParameterSet],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "status": [StatusItem],
        "displayParameters": [DisplayParameter],
        "latestTrip": AssetTripLatest,
        "unavailability": [AssetUnavailability],
        "reservations": [Reservation],
        "parameterOffsets": [AssetParameterOffset],
        "costs": [Cost],
        "manufacturer": Manufacturer,
        "createdByGroup": Group,
        "assetType": AssetType,
        "assetCategory": AssetCategory,
        "assignedToGroup": Group,
        "site": Site,
        "assignedToSite": Site,
        "assignedToPreviousSite": Site,
        "documents": [Document],
        "events": [Event],
        "description": Translation,
        "checkSchedule": AssetCheckSchedule,
        "maintenanceSchedule": AssetMaintenanceSchedule,
        "workOrders": [WorkOrderV2]
      }
    ]
  }
}

createAssetCategory

Response

Returns [AssetCategory!]

Arguments
Name Description
externalId - String
groupId - HashedId
servicePackageId - HashedId
optimalBatteryVoltage - Float
minimalBatteryVoltage - Float
nominalBatteryVoltage - Float
parentParameterKey - AssetParentParameter
optimalRuntime - Float
workUnitsPerHour - Float
workUnits - TranslationInput
isPrivate - Boolean Listed to users outside this group hierarchy - "publicly" available. May be used for not yet released models
name - TranslationInput!

Example

Query
mutation createAssetCategory(
  $externalId: String,
  $groupId: HashedId,
  $servicePackageId: HashedId,
  $optimalBatteryVoltage: Float,
  $minimalBatteryVoltage: Float,
  $nominalBatteryVoltage: Float,
  $parentParameterKey: AssetParentParameter,
  $optimalRuntime: Float,
  $workUnitsPerHour: Float,
  $workUnits: TranslationInput,
  $isPrivate: Boolean,
  $name: TranslationInput!
) {
  createAssetCategory(
    externalId: $externalId,
    groupId: $groupId,
    servicePackageId: $servicePackageId,
    optimalBatteryVoltage: $optimalBatteryVoltage,
    minimalBatteryVoltage: $minimalBatteryVoltage,
    nominalBatteryVoltage: $nominalBatteryVoltage,
    parentParameterKey: $parentParameterKey,
    optimalRuntime: $optimalRuntime,
    workUnitsPerHour: $workUnitsPerHour,
    workUnits: $workUnits,
    isPrivate: $isPrivate,
    name: $name
  ) {
    id
    created
    updated
    image
    externalId
    forManufacturerId
    groupId
    servicePackageId
    isPrivate
    publicId
    nameId
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnitsPerHour
    workUnitId
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    workUnits {
      ...TranslationFragment
    }
    assetsCount
    servicePackage {
      ...ServicePackageFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{
  "externalId": "abc123",
  "groupId": HashedId,
  "servicePackageId": HashedId,
  "optimalBatteryVoltage": 987.65,
  "minimalBatteryVoltage": 987.65,
  "nominalBatteryVoltage": 123.45,
  "parentParameterKey": "runtime",
  "optimalRuntime": 987.65,
  "workUnitsPerHour": 987.65,
  "workUnits": TranslationInput,
  "isPrivate": true,
  "name": TranslationInput
}
Response
{
  "data": {
    "createAssetCategory": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "image": "xyz789",
        "externalId": "abc123",
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "isPrivate": true,
        "publicId": 123,
        "nameId": HashedId,
        "minimalBatteryVoltage": 123.45,
        "nominalBatteryVoltage": 123.45,
        "optimalBatteryVoltage": 123.45,
        "optimalRuntime": 987.65,
        "parentParameterKey": "runtime",
        "workUnitsPerHour": 123.45,
        "workUnitId": HashedId,
        "name": Translation,
        "group": Group,
        "manufacturer": Manufacturer,
        "workUnits": Translation,
        "assetsCount": 987,
        "servicePackage": ServicePackage,
        "forManufacturer": Manufacturer
      }
    ]
  }
}

createAssetData

Response

Returns an AssetData

Arguments
Name Description
assetId - HashedId!
data - String!
receivedDate - Date
interpolatedTimestamp - Date

Example

Query
mutation createAssetData(
  $assetId: HashedId!,
  $data: String!,
  $receivedDate: Date,
  $interpolatedTimestamp: Date
) {
  createAssetData(
    assetId: $assetId,
    data: $data,
    receivedDate: $receivedDate,
    interpolatedTimestamp: $interpolatedTimestamp
  ) {
    id
    created
    updated
    createdByModuleImei
    createdByAssetId
    createdByAsset {
      ...AssetFragment
    }
    createdByModuleId
    createdByModule {
      ...ModuleFragment
    }
    data
  }
}
Variables
{
  "assetId": HashedId,
  "data": "abc123",
  "receivedDate": "2007-12-03",
  "interpolatedTimestamp": "2007-12-03"
}
Response
{
  "data": {
    "createAssetData": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "createdByModuleImei": "xyz789",
      "createdByAssetId": HashedId,
      "createdByAsset": Asset,
      "createdByModuleId": HashedId,
      "createdByModule": Module,
      "data": {}
    }
  }
}

createAssetEventView

Description

create a new asset event view for the logged in user

Response

Returns an AssetEventView!

Arguments
Name Description
view - AssetEventViewCreateInput!

Example

Query
mutation createAssetEventView($view: AssetEventViewCreateInput!) {
  createAssetEventView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...AssetEventViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": AssetEventViewCreateInput}
Response
{
  "data": {
    "createAssetEventView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": AssetEventViewOptions,
      "isActive": true,
      "isSystemView": true,
      "isShared": true,
      "isEditable": true,
      "isDeletable": true,
      "isShareable": true,
      "isUnsharedByParentGroup": false,
      "title": Translation
    }
  }
}

createAssetIntegration

Response

Returns an AssetIntegration!

Arguments
Name Description
input - AssetIntegrationCreateInput!

Example

Query
mutation createAssetIntegration($input: AssetIntegrationCreateInput!) {
  createAssetIntegration(input: $input) {
    id
    created
    updated
    name
    manufacturerId
    assetCategoryId
    assetCategory {
      ...AssetCategoryFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{"input": AssetIntegrationCreateInput}
Response
{
  "data": {
    "createAssetIntegration": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "manufacturerId": HashedId,
      "assetCategoryId": HashedId,
      "assetCategory": AssetCategory,
      "manufacturer": Manufacturer
    }
  }
}

createAssetType

Response

Returns [AssetType]

Arguments
Name Description
optimalBatteryVoltage - Float
minimalBatteryVoltage - Float
nominalBatteryVoltage - Float
parentParameterKey - AssetParentParameter
optimalRuntime - Float
workUnitsPerHour - Float
workUnits - TranslationInput
externalId - String
groupId - HashedId
servicePackageId - HashedId
hasAssortmentList - Boolean
hasVNC - Boolean Certain assets can be accessed over a remote connection. This specifies if this type can be accessed over VNC.
image - String
inAssetCategoryId - HashedId!
inAssetIntegrationId - HashedId The asset integration that applies to this type
isApprovedAssetType - Boolean
isLockable - Boolean Certain Asset Types can be locked. This will then lock the asset
isLockedState - Boolean
isPollingAvailable - Boolean
isPrivate - Boolean Listed to users outside this group hierarchy - "publicly" available. May be used for not yet released models
isVehicle - Boolean
isRoom - Boolean
manufacturer - String
name - TranslationInput!
preset - Boolean
presetInitialValue - String
presetLeasingCostTermination - String
presetLeasingLevel - String
presetLeasingMonthlyCost - String
presetLeasingPartner - String
presetLeasingPartnerContractNumber - String
presetLeasingPartnerContractPositionNumber - String
presetLeasingRenewalRate - String
presetLowValueAsset - Boolean
presetMachineCheckLastCreated - Boolean
presetMachineCheckName - String
presetMachineCheckInterval - Int
presetOwnership - String
presetPurchaseCost - String
presetPurchaseDepriciation - Int
presetRentalCostTermination - String
presetRentalMonthlyCost - String
presetRentalRenewalRate - String
presetServiceContractCostPerYear - String
presetServiceContractEmail - String
presetServiceContractLevel - String
presetServiceContractPartner - String
presetSupplier - String
presetWarrantyPeriod - Int
restrictedType - Boolean
suggestedServicePartner - String

Example

Query
mutation createAssetType(
  $optimalBatteryVoltage: Float,
  $minimalBatteryVoltage: Float,
  $nominalBatteryVoltage: Float,
  $parentParameterKey: AssetParentParameter,
  $optimalRuntime: Float,
  $workUnitsPerHour: Float,
  $workUnits: TranslationInput,
  $externalId: String,
  $groupId: HashedId,
  $servicePackageId: HashedId,
  $hasAssortmentList: Boolean,
  $hasVNC: Boolean,
  $image: String,
  $inAssetCategoryId: HashedId!,
  $inAssetIntegrationId: HashedId,
  $isApprovedAssetType: Boolean,
  $isLockable: Boolean,
  $isLockedState: Boolean,
  $isPollingAvailable: Boolean,
  $isPrivate: Boolean,
  $isVehicle: Boolean,
  $isRoom: Boolean,
  $manufacturer: String,
  $name: TranslationInput!,
  $preset: Boolean,
  $presetInitialValue: String,
  $presetLeasingCostTermination: String,
  $presetLeasingLevel: String,
  $presetLeasingMonthlyCost: String,
  $presetLeasingPartner: String,
  $presetLeasingPartnerContractNumber: String,
  $presetLeasingPartnerContractPositionNumber: String,
  $presetLeasingRenewalRate: String,
  $presetLowValueAsset: Boolean,
  $presetMachineCheckLastCreated: Boolean,
  $presetMachineCheckName: String,
  $presetMachineCheckInterval: Int,
  $presetOwnership: String,
  $presetPurchaseCost: String,
  $presetPurchaseDepriciation: Int,
  $presetRentalCostTermination: String,
  $presetRentalMonthlyCost: String,
  $presetRentalRenewalRate: String,
  $presetServiceContractCostPerYear: String,
  $presetServiceContractEmail: String,
  $presetServiceContractLevel: String,
  $presetServiceContractPartner: String,
  $presetSupplier: String,
  $presetWarrantyPeriod: Int,
  $restrictedType: Boolean,
  $suggestedServicePartner: String
) {
  createAssetType(
    optimalBatteryVoltage: $optimalBatteryVoltage,
    minimalBatteryVoltage: $minimalBatteryVoltage,
    nominalBatteryVoltage: $nominalBatteryVoltage,
    parentParameterKey: $parentParameterKey,
    optimalRuntime: $optimalRuntime,
    workUnitsPerHour: $workUnitsPerHour,
    workUnits: $workUnits,
    externalId: $externalId,
    groupId: $groupId,
    servicePackageId: $servicePackageId,
    hasAssortmentList: $hasAssortmentList,
    hasVNC: $hasVNC,
    image: $image,
    inAssetCategoryId: $inAssetCategoryId,
    inAssetIntegrationId: $inAssetIntegrationId,
    isApprovedAssetType: $isApprovedAssetType,
    isLockable: $isLockable,
    isLockedState: $isLockedState,
    isPollingAvailable: $isPollingAvailable,
    isPrivate: $isPrivate,
    isVehicle: $isVehicle,
    isRoom: $isRoom,
    manufacturer: $manufacturer,
    name: $name,
    preset: $preset,
    presetInitialValue: $presetInitialValue,
    presetLeasingCostTermination: $presetLeasingCostTermination,
    presetLeasingLevel: $presetLeasingLevel,
    presetLeasingMonthlyCost: $presetLeasingMonthlyCost,
    presetLeasingPartner: $presetLeasingPartner,
    presetLeasingPartnerContractNumber: $presetLeasingPartnerContractNumber,
    presetLeasingPartnerContractPositionNumber: $presetLeasingPartnerContractPositionNumber,
    presetLeasingRenewalRate: $presetLeasingRenewalRate,
    presetLowValueAsset: $presetLowValueAsset,
    presetMachineCheckLastCreated: $presetMachineCheckLastCreated,
    presetMachineCheckName: $presetMachineCheckName,
    presetMachineCheckInterval: $presetMachineCheckInterval,
    presetOwnership: $presetOwnership,
    presetPurchaseCost: $presetPurchaseCost,
    presetPurchaseDepriciation: $presetPurchaseDepriciation,
    presetRentalCostTermination: $presetRentalCostTermination,
    presetRentalMonthlyCost: $presetRentalMonthlyCost,
    presetRentalRenewalRate: $presetRentalRenewalRate,
    presetServiceContractCostPerYear: $presetServiceContractCostPerYear,
    presetServiceContractEmail: $presetServiceContractEmail,
    presetServiceContractLevel: $presetServiceContractLevel,
    presetServiceContractPartner: $presetServiceContractPartner,
    presetSupplier: $presetSupplier,
    presetWarrantyPeriod: $presetWarrantyPeriod,
    restrictedType: $restrictedType,
    suggestedServicePartner: $suggestedServicePartner
  ) {
    id
    created
    updated
    forManufacturerId
    groupId
    servicePackageId
    hasAssortmentList
    externalId
    image
    inAssetCategoryId
    inAssetIntegrationId
    isApprovedAssetType
    isPrivate
    isVehicle
    isRoom
    make
    publicId
    nameId
    restrictedType
    preset
    presetInitialValue
    presetLeasingCostTermination
    presetLeasingLevel
    presetLeasingMonthlyCost
    presetLeasingPartner
    presetLeasingPartnerContractNumber
    presetLeasingPartnerContractPositionNumber
    presetLeasingRenewalRate
    presetLowValueAsset
    presetMachineCheckInterval
    presetMachineCheckLastCreated
    presetMachineCheckName
    presetOwnership
    presetPurchaseCost
    presetPurchaseDepriciation
    presetRentalCostTermination
    presetRentalMonthlyCost
    presetRentalRenewalRate
    presetServiceContractCostPerYear
    presetServiceContractEmail
    presetServiceContractLevel
    presetServiceContractPartner
    presetSupplier
    presetWarrantyPeriod
    isLockable
    isLockedState
    lockAssetTypeId
    hasVNC
    isPollingAvailable
    name {
      ...TranslationFragment
    }
    documents {
      ...DocumentFragment
    }
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnits {
      ...TranslationFragment
    }
    workUnitsPerHour
    workUnitId
    inAssetCategory {
      ...AssetCategoryFragment
    }
    group {
      ...GroupFragment
    }
    inAssetIntegration {
      ...AssetIntegrationFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
    namespace
    assetsCount
    userManual
    suggestedServicePartner
    suggestedPartner {
      ...AvailableHandlerFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    lockAssetType {
      ...AssetTypeFragment
    }
  }
}
Variables
{
  "optimalBatteryVoltage": 987.65,
  "minimalBatteryVoltage": 987.65,
  "nominalBatteryVoltage": 123.45,
  "parentParameterKey": "runtime",
  "optimalRuntime": 123.45,
  "workUnitsPerHour": 987.65,
  "workUnits": TranslationInput,
  "externalId": "xyz789",
  "groupId": HashedId,
  "servicePackageId": HashedId,
  "hasAssortmentList": true,
  "hasVNC": true,
  "image": "xyz789",
  "inAssetCategoryId": HashedId,
  "inAssetIntegrationId": HashedId,
  "isApprovedAssetType": false,
  "isLockable": true,
  "isLockedState": true,
  "isPollingAvailable": true,
  "isPrivate": false,
  "isVehicle": true,
  "isRoom": true,
  "manufacturer": "abc123",
  "name": TranslationInput,
  "preset": false,
  "presetInitialValue": "abc123",
  "presetLeasingCostTermination": "xyz789",
  "presetLeasingLevel": "xyz789",
  "presetLeasingMonthlyCost": "abc123",
  "presetLeasingPartner": "xyz789",
  "presetLeasingPartnerContractNumber": "abc123",
  "presetLeasingPartnerContractPositionNumber": "xyz789",
  "presetLeasingRenewalRate": "xyz789",
  "presetLowValueAsset": false,
  "presetMachineCheckLastCreated": false,
  "presetMachineCheckName": "xyz789",
  "presetMachineCheckInterval": 123,
  "presetOwnership": "abc123",
  "presetPurchaseCost": "abc123",
  "presetPurchaseDepriciation": 123,
  "presetRentalCostTermination": "abc123",
  "presetRentalMonthlyCost": "abc123",
  "presetRentalRenewalRate": "abc123",
  "presetServiceContractCostPerYear": "abc123",
  "presetServiceContractEmail": "abc123",
  "presetServiceContractLevel": "xyz789",
  "presetServiceContractPartner": "xyz789",
  "presetSupplier": "abc123",
  "presetWarrantyPeriod": 987,
  "restrictedType": true,
  "suggestedServicePartner": "abc123"
}
Response
{
  "data": {
    "createAssetType": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "hasAssortmentList": false,
        "externalId": "xyz789",
        "image": "abc123",
        "inAssetCategoryId": HashedId,
        "inAssetIntegrationId": HashedId,
        "isApprovedAssetType": true,
        "isPrivate": false,
        "isVehicle": false,
        "isRoom": true,
        "make": "abc123",
        "publicId": 123,
        "nameId": HashedId,
        "restrictedType": false,
        "preset": false,
        "presetInitialValue": "abc123",
        "presetLeasingCostTermination": "xyz789",
        "presetLeasingLevel": "abc123",
        "presetLeasingMonthlyCost": "abc123",
        "presetLeasingPartner": "xyz789",
        "presetLeasingPartnerContractNumber": "xyz789",
        "presetLeasingPartnerContractPositionNumber": "xyz789",
        "presetLeasingRenewalRate": "xyz789",
        "presetLowValueAsset": true,
        "presetMachineCheckInterval": 987,
        "presetMachineCheckLastCreated": false,
        "presetMachineCheckName": "abc123",
        "presetOwnership": "PURCHASE",
        "presetPurchaseCost": "abc123",
        "presetPurchaseDepriciation": 987,
        "presetRentalCostTermination": "xyz789",
        "presetRentalMonthlyCost": "abc123",
        "presetRentalRenewalRate": "xyz789",
        "presetServiceContractCostPerYear": "abc123",
        "presetServiceContractEmail": "abc123",
        "presetServiceContractLevel": "xyz789",
        "presetServiceContractPartner": "xyz789",
        "presetSupplier": "xyz789",
        "presetWarrantyPeriod": 987,
        "isLockable": true,
        "isLockedState": false,
        "lockAssetTypeId": HashedId,
        "hasVNC": true,
        "isPollingAvailable": false,
        "name": Translation,
        "documents": [Document],
        "minimalBatteryVoltage": 123.45,
        "nominalBatteryVoltage": 123.45,
        "optimalBatteryVoltage": 987.65,
        "optimalRuntime": 987.65,
        "parentParameterKey": "runtime",
        "workUnits": Translation,
        "workUnitsPerHour": 123.45,
        "workUnitId": HashedId,
        "inAssetCategory": AssetCategory,
        "group": Group,
        "inAssetIntegration": AssetIntegration,
        "forManufacturer": Manufacturer,
        "namespace": "xyz789",
        "assetsCount": 987,
        "userManual": "xyz789",
        "suggestedServicePartner": "abc123",
        "suggestedPartner": AvailableHandler,
        "servicePackage": ServicePackage,
        "lockAssetType": AssetType
      }
    ]
  }
}

createAssetView

Description

create a new asset view for the logged in user

Response

Returns an AssetView!

Arguments
Name Description
view - AssetViewCreateInput!

Example

Query
mutation createAssetView($view: AssetViewCreateInput!) {
  createAssetView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...AssetViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": AssetViewCreateInput}
Response
{
  "data": {
    "createAssetView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": AssetViewOptions,
      "isActive": false,
      "isSystemView": false,
      "isShared": true,
      "isEditable": false,
      "isDeletable": true,
      "isShareable": true,
      "isUnsharedByParentGroup": true,
      "title": Translation
    }
  }
}

createBrand

Response

Returns a Brand!

Arguments
Name Description
input - BrandCreateInput!

Example

Query
mutation createBrand($input: BrandCreateInput!) {
  createBrand(input: $input) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{"input": BrandCreateInput}
Response
{
  "data": {
    "createBrand": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "logoWidth": 123,
      "key": "abc123",
      "systemName": "abc123",
      "colorDark": "xyz789",
      "colorLight": "xyz789",
      "faviconUrl": "xyz789",
      "loginBackground": "xyz789",
      "name": "xyz789",
      "appUrlAndroid": "abc123",
      "appUrlIos": "abc123",
      "logo": "abc123",
      "color": "abc123",
      "symbol": "abc123",
      "ownURL": "abc123",
      "supportEmail": "abc123",
      "activationMailVideo": "xyz789",
      "logoIsSquare": true,
      "group": Group,
      "sso": "2007-12-03T10:15:30Z",
      "loginLanguageFallback": HashedId,
      "projects": "xyz789"
    }
  }
}

createCheckSchedule

Response

Returns an AssetCheckSchedule!

Arguments
Name Description
assetId - HashedId!
name - String!
interval - Int!
lastCheck - Date
nextCheck - Date!

Example

Query
mutation createCheckSchedule(
  $assetId: HashedId!,
  $name: String!,
  $interval: Int!,
  $lastCheck: Date,
  $nextCheck: Date!
) {
  createCheckSchedule(
    assetId: $assetId,
    name: $name,
    interval: $interval,
    lastCheck: $lastCheck,
    nextCheck: $nextCheck
  ) {
    id
    assetId
    name
    interval
    lastCheck
    nextCheck
    daysToNextCheck
    lastCheckLastEdited {
      ...AssetCheckScheduleEditNoteFragment
    }
    nextCheckLastEdited {
      ...AssetCheckScheduleEditNoteFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "name": "xyz789",
  "interval": 987,
  "lastCheck": "2007-12-03",
  "nextCheck": "2007-12-03"
}
Response
{
  "data": {
    "createCheckSchedule": {
      "id": HashedId,
      "assetId": HashedId,
      "name": "xyz789",
      "interval": 987,
      "lastCheck": "2007-12-03",
      "nextCheck": "2007-12-03",
      "daysToNextCheck": 987,
      "lastCheckLastEdited": AssetCheckScheduleEditNote,
      "nextCheckLastEdited": AssetCheckScheduleEditNote
    }
  }
}

createCommentForTicket

Response

Returns a TicketComment!

Arguments
Name Description
input - TicketCommentCreateInput!

Example

Query
mutation createCommentForTicket($input: TicketCommentCreateInput!) {
  createCommentForTicket(input: $input) {
    id
    created
    updated
    createdByUserId
    authorEmail
    createdByUser {
      ...TicketUserFragment
    }
    history {
      ...TicketCommentContentFragment
    }
    content {
      ...TicketCommentContentFragment
    }
    isAutomated
    costs {
      ...CostFragment
    }
    stateEvent {
      ...TicketStateFragment
    }
    attachments {
      ...DocumentFragment
    }
    connectedEventId
    connectedEvent {
      ...EventFragment
    }
    internal
    deleted
  }
}
Variables
{"input": TicketCommentCreateInput}
Response
{
  "data": {
    "createCommentForTicket": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "createdByUserId": HashedId,
      "authorEmail": "abc123",
      "createdByUser": TicketUser,
      "history": [TicketCommentContent],
      "content": TicketCommentContent,
      "isAutomated": false,
      "costs": [Cost],
      "stateEvent": TicketState,
      "attachments": [Document],
      "connectedEventId": HashedId,
      "connectedEvent": Event,
      "internal": false,
      "deleted": 1592577642
    }
  }
}

createCost

Response

Returns a Cost

Arguments
Name Description
assetId - HashedId!
costTypeId - HashedId!
currency - String!
originatingFromEventId - HashedId
originatingFromCommentId - HashedId
value - Float!

Example

Query
mutation createCost(
  $assetId: HashedId!,
  $costTypeId: HashedId!,
  $currency: String!,
  $originatingFromEventId: HashedId,
  $originatingFromCommentId: HashedId,
  $value: Float!
) {
  createCost(
    assetId: $assetId,
    costTypeId: $costTypeId,
    currency: $currency,
    originatingFromEventId: $originatingFromEventId,
    originatingFromCommentId: $originatingFromCommentId,
    value: $value
  ) {
    id
    created
    updated
    assetId
    costTypeId
    createdByUserId
    currency
    originatingFromEventId
    originatingFromCommentId
    value
    costType {
      ...CostTypeFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "costTypeId": HashedId,
  "currency": "xyz789",
  "originatingFromEventId": HashedId,
  "originatingFromCommentId": HashedId,
  "value": 987.65
}
Response
{
  "data": {
    "createCost": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "assetId": HashedId,
      "costTypeId": HashedId,
      "createdByUserId": HashedId,
      "currency": "xyz789",
      "originatingFromEventId": HashedId,
      "originatingFromCommentId": HashedId,
      "value": 123.45,
      "costType": CostType
    }
  }
}

createCustomEvent

Response

Returns an Event

Arguments
Name Description
assetId - HashedId
partId - HashedId
title - TranslationInput!
description - TranslationInput
isCritical - Boolean
isImmediateNotification - Boolean

Example

Query
mutation createCustomEvent(
  $assetId: HashedId,
  $partId: HashedId,
  $title: TranslationInput!,
  $description: TranslationInput,
  $isCritical: Boolean,
  $isImmediateNotification: Boolean
) {
  createCustomEvent(
    assetId: $assetId,
    partId: $partId,
    title: $title,
    description: $description,
    isCritical: $isCritical,
    isImmediateNotification: $isImmediateNotification
  ) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "partId": HashedId,
  "title": TranslationInput,
  "description": TranslationInput,
  "isCritical": true,
  "isImmediateNotification": false
}
Response
{
  "data": {
    "createCustomEvent": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "abc123",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": false,
      "isImmediateNotification": false,
      "shouldNotify": false,
      "manualDeactivation": true,
      "isOngoing": true,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 123,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "xyz789",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

createCustomField

Response

Returns a CustomField!

Arguments
Name Description
input - CustomFieldCreateInput!

Example

Query
mutation createCustomField($input: CustomFieldCreateInput!) {
  createCustomField(input: $input) {
    id
    created
    updated
    nameId
    type
    isRequired
    showOnQrLandingPage
    showToNonLoggedInUsers
    groupId
    addToAllAssetsInGroupAndBelow
    customerVisibilityRights
    createdByUserId
    createdByGroupId
    availableCustomerVisibilityRights
    deleted
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    assetTypes {
      ...AssetTypeFragment
    }
    assetCategories {
      ...AssetCategoryFragment
    }
    assets {
      ...AssetFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    values {
      ...CustomFieldValueFragment
    }
  }
}
Variables
{"input": CustomFieldCreateInput}
Response
{
  "data": {
    "createCustomField": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "nameId": HashedId,
      "type": "text",
      "isRequired": true,
      "showOnQrLandingPage": false,
      "showToNonLoggedInUsers": true,
      "groupId": HashedId,
      "addToAllAssetsInGroupAndBelow": false,
      "customerVisibilityRights": "editor",
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "availableCustomerVisibilityRights": ["editor"],
      "deleted": 1592577642,
      "name": Translation,
      "group": Group,
      "assetTypes": [AssetType],
      "assetCategories": [AssetCategory],
      "assets": [Asset],
      "createdByUser": User,
      "createdByGroup": Group,
      "values": [CustomFieldValue]
    }
  }
}

createCustomFieldsValues

Frontend uses "set" this one is for mobile only. Should be changed there and removed here.
Response

Returns [CustomFieldValue!]!

Arguments
Name Description
values - [CustomFieldsValuesCreateInput!]!

Example

Query
mutation createCustomFieldsValues($values: [CustomFieldsValuesCreateInput!]!) {
  createCustomFieldsValues(values: $values) {
    id
    created
    updated
    customFieldId
    assetId
    textValueId
    numberValue
    dateValue
    currencyValue
    textValue {
      ...TranslationFragment
    }
  }
}
Variables
{"values": [CustomFieldsValuesCreateInput]}
Response
{
  "data": {
    "createCustomFieldsValues": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "customFieldId": HashedId,
        "assetId": HashedId,
        "textValueId": HashedId,
        "numberValue": 987.65,
        "dateValue": "2007-12-03",
        "currencyValue": 987.65,
        "textValue": Translation
      }
    ]
  }
}

createDashboard

Response

Returns a Dashboard

Arguments
Name Description
title - TranslationInput!
default - Boolean
priority - Int
grafanaDashboardUID - String
filters - [DashboardMutationFilterInput!]

Example

Query
mutation createDashboard(
  $title: TranslationInput!,
  $default: Boolean,
  $priority: Int,
  $grafanaDashboardUID: String,
  $filters: [DashboardMutationFilterInput!]
) {
  createDashboard(
    title: $title,
    default: $default,
    priority: $priority,
    grafanaDashboardUID: $grafanaDashboardUID,
    filters: $filters
  ) {
    id
    title {
      ...TranslationFragment
    }
    priority
    definition
    grafanaDashboardURL
    grafanaDashboardUID
    filters {
      ...DashboardFilterFragment
    }
    snapshotURL
    createdByUserId
    createdByGroupId
    default
  }
}
Variables
{
  "title": TranslationInput,
  "default": false,
  "priority": 987,
  "grafanaDashboardUID": "xyz789",
  "filters": [DashboardMutationFilterInput]
}
Response
{
  "data": {
    "createDashboard": {
      "id": HashedId,
      "title": Translation,
      "priority": 987,
      "definition": {},
      "grafanaDashboardURL": "abc123",
      "grafanaDashboardUID": "xyz789",
      "filters": [DashboardFilter],
      "snapshotURL": "xyz789",
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "default": true
    }
  }
}

createDocument

Description

Accepts 'jpg', 'jpeg', 'gif', 'png', 'heic', 'pdf', 'doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx', 'pub', 'csv', 'txt', 'json'

Response

Returns [Document!]!

Arguments
Name Description
assetId - HashedId Id of the associated asset. Mutually exclusive with other associations.
assetTypeId - HashedId Id of the associated assetType. Mutually exclusive with other associations.
partId - HashedId Id of the associated part. Mutually exclusive with other associations.
isVisibleToCustomer - Boolean!
name - String! Name of the attachment
purpose - String A string 'label' to define the purpose of the document. Can only be one of the items of a predefined constant array.
documentLink - String
file - Upload

Example

Query
mutation createDocument(
  $assetId: HashedId,
  $assetTypeId: HashedId,
  $partId: HashedId,
  $isVisibleToCustomer: Boolean!,
  $name: String!,
  $purpose: String,
  $documentLink: String,
  $file: Upload
) {
  createDocument(
    assetId: $assetId,
    assetTypeId: $assetTypeId,
    partId: $partId,
    isVisibleToCustomer: $isVisibleToCustomer,
    name: $name,
    purpose: $purpose,
    documentLink: $documentLink,
    file: $file
  ) {
    id
    created
    updated
    assetId
    assetTypeId
    commentId
    eventId
    partId
    isExternal
    isVisibleToCustomer
    name
    purpose
    uploadedByUserId
    url
    editable
    fileSize
    isInherited
    typeKey
    uploadedByCustomer
    uploadedByUser {
      ...UserFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "assetTypeId": HashedId,
  "partId": HashedId,
  "isVisibleToCustomer": true,
  "name": "xyz789",
  "purpose": "abc123",
  "documentLink": "xyz789",
  "file": Upload
}
Response
{
  "data": {
    "createDocument": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "assetId": HashedId,
        "assetTypeId": HashedId,
        "commentId": HashedId,
        "eventId": HashedId,
        "partId": HashedId,
        "isExternal": false,
        "isVisibleToCustomer": false,
        "name": "xyz789",
        "purpose": "xyz789",
        "uploadedByUserId": HashedId,
        "url": "abc123",
        "editable": true,
        "fileSize": 123,
        "isInherited": false,
        "typeKey": "xyz789",
        "uploadedByCustomer": true,
        "uploadedByUser": User
      }
    ]
  }
}

createEvent

Response

Returns an Event

Arguments
Name Description
assetId - HashedId
partId - HashedId
title - TranslationInput!
description - TranslationInput
isCritical - Boolean
costs - [NewCostInput!]
attachments - [Upload!]
siteId - HashedId

Example

Query
mutation createEvent(
  $assetId: HashedId,
  $partId: HashedId,
  $title: TranslationInput!,
  $description: TranslationInput,
  $isCritical: Boolean,
  $costs: [NewCostInput!],
  $attachments: [Upload!],
  $siteId: HashedId
) {
  createEvent(
    assetId: $assetId,
    partId: $partId,
    title: $title,
    description: $description,
    isCritical: $isCritical,
    costs: $costs,
    attachments: $attachments,
    siteId: $siteId
  ) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "partId": HashedId,
  "title": TranslationInput,
  "description": TranslationInput,
  "isCritical": false,
  "costs": [NewCostInput],
  "attachments": [Upload],
  "siteId": HashedId
}
Response
{
  "data": {
    "createEvent": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "xyz789",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": true,
      "isImmediateNotification": false,
      "shouldNotify": true,
      "manualDeactivation": true,
      "isOngoing": true,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 123,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "abc123",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

createEventStyle

Response

Returns an EventStyle!

Arguments
Name Description
name - TranslationInput!
iconIndex - Int!
color - String!

Example

Query
mutation createEventStyle(
  $name: TranslationInput!,
  $iconIndex: Int!,
  $color: String!
) {
  createEventStyle(
    name: $name,
    iconIndex: $iconIndex,
    color: $color
  ) {
    id
    key
    nameId
    name {
      ...TranslationFragment
    }
    icon
    color
    createdByGroupId
  }
}
Variables
{
  "name": TranslationInput,
  "iconIndex": 987,
  "color": "abc123"
}
Response
{
  "data": {
    "createEventStyle": {
      "id": HashedId,
      "key": "ERROR",
      "nameId": HashedId,
      "name": Translation,
      "icon": "xyz789",
      "color": "abc123",
      "createdByGroupId": HashedId
    }
  }
}

createGroup

Use groups.create instead
Response

Returns [Group!]!

Arguments
Name Description
name - String!
parentGroupId - HashedId!
settings - JSON
vatNumber - String
isCustomer - Boolean
getRawFlow - Boolean
servicePackageId - HashedId Can only be changed by internal TS users currently
handlerAlias - String
defaultCurrency - String
hasTicketHandling - Boolean
identificationNumber - String
flowMaintainers - [NotificationRelationCreateInput!]

Example

Query
mutation createGroup(
  $name: String!,
  $parentGroupId: HashedId!,
  $settings: JSON,
  $vatNumber: String,
  $isCustomer: Boolean,
  $getRawFlow: Boolean,
  $servicePackageId: HashedId,
  $handlerAlias: String,
  $defaultCurrency: String,
  $hasTicketHandling: Boolean,
  $identificationNumber: String,
  $flowMaintainers: [NotificationRelationCreateInput!]
) {
  createGroup(
    name: $name,
    parentGroupId: $parentGroupId,
    settings: $settings,
    vatNumber: $vatNumber,
    isCustomer: $isCustomer,
    getRawFlow: $getRawFlow,
    servicePackageId: $servicePackageId,
    handlerAlias: $handlerAlias,
    defaultCurrency: $defaultCurrency,
    hasTicketHandling: $hasTicketHandling,
    identificationNumber: $identificationNumber,
    flowMaintainers: $flowMaintainers
  ) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{
  "name": "abc123",
  "parentGroupId": HashedId,
  "settings": {},
  "vatNumber": "xyz789",
  "isCustomer": false,
  "getRawFlow": true,
  "servicePackageId": HashedId,
  "handlerAlias": "xyz789",
  "defaultCurrency": "abc123",
  "hasTicketHandling": true,
  "identificationNumber": "xyz789",
  "flowMaintainers": [NotificationRelationCreateInput]
}
Response
{
  "data": {
    "createGroup": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "parentGroupId": HashedId,
        "isRoot": true,
        "image": "abc123",
        "isCustomer": true,
        "identificationNumber": "abc123",
        "vatNumber": "abc123",
        "rootGroupId": HashedId,
        "handlerAlias": "abc123",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": true,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": true,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": false,
        "customerRootGroup": Group,
        "rootGroupName": "abc123",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "xyz789",
        "parentName": "xyz789",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

createGroupV2

Response

Returns a Group!

Arguments
Name Description
input - GroupCreateInput!

Example

Query
mutation createGroupV2($input: GroupCreateInput!) {
  createGroupV2(input: $input) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{"input": GroupCreateInput}
Response
{
  "data": {
    "createGroupV2": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "parentGroupId": HashedId,
      "isRoot": true,
      "image": "xyz789",
      "isCustomer": false,
      "identificationNumber": "abc123",
      "vatNumber": "xyz789",
      "rootGroupId": HashedId,
      "handlerAlias": "xyz789",
      "treeRootId": HashedId,
      "servicePackageId": HashedId,
      "flowId": HashedId,
      "roleIds": [HashedId],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "parentGroup": Group,
      "services": [Service],
      "servicesV2": [Service],
      "servicePackage": ServicePackage,
      "flow": ServicePackage,
      "internalSettings": {},
      "hasTicketHandling": false,
      "flowMaintainers": [NotificationRelation],
      "settings": {},
      "assetLocationsHidden": false,
      "nonCustomerParentGroup": Group,
      "childGroups": [Group],
      "childGroupIds": [HashedId],
      "belongsToCurrentGroup": true,
      "customerRootGroup": Group,
      "rootGroupName": "xyz789",
      "userRequestNotifiers": [NotificationRelation],
      "customerName": "abc123",
      "parentName": "xyz789",
      "groupTypeId": HashedId,
      "assets": [Asset],
      "assetIds": [HashedId],
      "maintainedManufacturer": [Manufacturer],
      "maintainedManufacturerId": [HashedId],
      "userIds": [HashedId],
      "users": [User],
      "servicePackageV2": ServicePackage,
      "groupType": ServicePackage
    }
  }
}

createLoginInterrupt

Response

Returns a LoginInterrupt

Arguments
Name Description
title - String!

Example

Query
mutation createLoginInterrupt($title: String!) {
  createLoginInterrupt(title: $title) {
    id
    title {
      ...TranslationFragment
    }
    titleId
    content {
      ...TranslationFragment
    }
    contentId
    visibleToGroupIds
    visibleToGroups {
      ...GroupFragment
    }
    created
    updated
  }
}
Variables
{"title": "xyz789"}
Response
{
  "data": {
    "createLoginInterrupt": {
      "id": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "content": Translation,
      "contentId": HashedId,
      "visibleToGroupIds": [HashedId],
      "visibleToGroups": [Group],
      "created": 1592577642,
      "updated": 1592577642
    }
  }
}

createMaintenanceSchedule

Response

Returns an AssetMaintenanceSchedule!

Arguments
Name Description
assetId - HashedId!
interval - Int!
lastMaintenance - Date
nextMaintenance - Date!

Example

Query
mutation createMaintenanceSchedule(
  $assetId: HashedId!,
  $interval: Int!,
  $lastMaintenance: Date,
  $nextMaintenance: Date!
) {
  createMaintenanceSchedule(
    assetId: $assetId,
    interval: $interval,
    lastMaintenance: $lastMaintenance,
    nextMaintenance: $nextMaintenance
  ) {
    id
    assetId
    interval
    lastMaintenance
    nextMaintenance
    lastMaintenanceLastEdited {
      ...AssetMaintenanceScheduleEditNoteFragment
    }
    nextMaintenanceLastEdited {
      ...AssetMaintenanceScheduleEditNoteFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "interval": 123,
  "lastMaintenance": "2007-12-03",
  "nextMaintenance": "2007-12-03"
}
Response
{
  "data": {
    "createMaintenanceSchedule": {
      "id": HashedId,
      "assetId": HashedId,
      "interval": 123,
      "lastMaintenance": "2007-12-03",
      "nextMaintenance": "2007-12-03",
      "lastMaintenanceLastEdited": AssetMaintenanceScheduleEditNote,
      "nextMaintenanceLastEdited": AssetMaintenanceScheduleEditNote
    }
  }
}

createManufacturer

Response

Returns a Manufacturer!

Arguments
Name Description
input - ManufacturerCreateInput!

Example

Query
mutation createManufacturer($input: ManufacturerCreateInput!) {
  createManufacturer(input: $input) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{"input": ManufacturerCreateInput}
Response
{
  "data": {
    "createManufacturer": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "nameKey": "abc123",
      "notificationsEnabled": true,
      "maintainedByGroupId": 123,
      "maintainedByGroup": Group,
      "assetIntegrations": [AssetIntegration],
      "assetIntegrationIds": [HashedId]
    }
  }
}

createModule

Response

Returns a Module!

Arguments
Name Description
imei - String! IMEI of the module
stripeCustomerId - String Used to connect the Module to a Stripe Customer
stripePriceId - String Used to connect the Module to a Stripe Product
moduleRevision - String Some value that is specifying what kind of module this is
isFake - Boolean

Example

Query
mutation createModule(
  $imei: String!,
  $stripeCustomerId: String,
  $stripePriceId: String,
  $moduleRevision: String,
  $isFake: Boolean
) {
  createModule(
    imei: $imei,
    stripeCustomerId: $stripeCustomerId,
    stripePriceId: $stripePriceId,
    moduleRevision: $moduleRevision,
    isFake: $isFake
  ) {
    id
    created
    updated
    imei
    controlId
    stripeCustomerId
    stripePriceId
    moduleTypeId
    moduleRevision
    moduleVersionNr
    assetVersionNr
    assignedToAsset {
      ...AssetFragment
    }
    assignedToAssetId
    assignedToAssets {
      ...AssetFragment
    }
    assignedToAssetIds
    currentPrice
    isFake
    moduleType {
      ...ModuleTypeFragment
    }
    price {
      ...StripePriceFragment
    }
  }
}
Variables
{
  "imei": "xyz789",
  "stripeCustomerId": "xyz789",
  "stripePriceId": "abc123",
  "moduleRevision": "xyz789",
  "isFake": false
}
Response
{
  "data": {
    "createModule": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "imei": "xyz789",
      "controlId": "abc123",
      "stripeCustomerId": "abc123",
      "stripePriceId": "abc123",
      "moduleTypeId": HashedId,
      "moduleRevision": "xyz789",
      "moduleVersionNr": "xyz789",
      "assetVersionNr": "xyz789",
      "assignedToAsset": Asset,
      "assignedToAssetId": HashedId,
      "assignedToAssets": [Asset],
      "assignedToAssetIds": [HashedId],
      "currentPrice": 987.65,
      "isFake": false,
      "moduleType": ModuleType,
      "price": StripePrice
    }
  }
}

createOTAUpdate

Response

Returns an OTAUpdate

Arguments
Name Description
assetIntegrationId - HashedId!

Example

Query
mutation createOTAUpdate($assetIntegrationId: HashedId!) {
  createOTAUpdate(assetIntegrationId: $assetIntegrationId) {
    id
    fileName
    versionName
    assetIntegration {
      ...AssetIntegrationFragment
    }
    assetIntegrationId
    description {
      ...TranslationFragment
    }
    descriptionId
    created
    updated
  }
}
Variables
{"assetIntegrationId": HashedId}
Response
{
  "data": {
    "createOTAUpdate": {
      "id": HashedId,
      "fileName": "xyz789",
      "versionName": "abc123",
      "assetIntegration": AssetIntegration,
      "assetIntegrationId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "created": 1592577642,
      "updated": 1592577642
    }
  }
}

createPart

Response

Returns a Part!

Arguments
Name Description
input - PartCreateInput!

Example

Query
mutation createPart($input: PartCreateInput!) {
  createPart(input: $input) {
    id
    created
    updated
    publicId
    type
    nameId
    name {
      ...TranslationFragment
    }
    descriptionId
    description {
      ...TranslationFragment
    }
    siteId
    site {
      ...SiteFragment
    }
    area
    availableQuantity
    minQuantity
    maxQuantity
    unitOfMeasure
    unitCost
    currency
    totalStockValue
    groupId
    group {
      ...GroupFragment
    }
    customerId
    customer {
      ...GroupFragment
    }
    externalId
    uuid
    qrAttached
    brand
    previousQuantity
    responsiblePerson
    vendor
    image
    shouldNotifyCriticalStockLevel
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    createdByGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByUserId
    createdByUser {
      ...UserFragment
    }
  }
}
Variables
{"input": PartCreateInput}
Response
{
  "data": {
    "createPart": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "publicId": 123,
      "type": "abc123",
      "nameId": HashedId,
      "name": Translation,
      "descriptionId": HashedId,
      "description": Translation,
      "siteId": HashedId,
      "site": Site,
      "area": "abc123",
      "availableQuantity": 987,
      "minQuantity": 987,
      "maxQuantity": 987,
      "unitOfMeasure": "abc123",
      "unitCost": 987.65,
      "currency": "abc123",
      "totalStockValue": 123.45,
      "groupId": HashedId,
      "group": Group,
      "customerId": HashedId,
      "customer": Group,
      "externalId": "abc123",
      "uuid": "abc123",
      "qrAttached": true,
      "brand": "abc123",
      "previousQuantity": 987,
      "responsiblePerson": "abc123",
      "vendor": "xyz789",
      "image": "xyz789",
      "shouldNotifyCriticalStockLevel": true,
      "sendNotificationsTo": [RuleNotificationRelation],
      "documents": [Document],
      "events": [Event],
      "createdByGroupId": HashedId,
      "createdByGroup": Group,
      "createdByUserId": HashedId,
      "createdByUser": User
    }
  }
}

createPartMoving

Response

Returns a PartMoving

Arguments
Name Description
input - PartMovingCreateInput!

Example

Query
mutation createPartMoving($input: PartMovingCreateInput!) {
  createPartMoving(input: $input) {
    id
    created
    updated
    partId
    part {
      ...PartFragment
    }
    siteId
    site {
      ...SiteFragment
    }
    operationDate
    unitCost
    quantity
    contentQuantity
    totalValue
    createdByUserId
    createdByUser {
      ...UserFragment
    }
  }
}
Variables
{"input": PartMovingCreateInput}
Response
{
  "data": {
    "createPartMoving": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "partId": HashedId,
      "part": Part,
      "siteId": HashedId,
      "site": Site,
      "operationDate": "2007-12-03T10:15:30Z",
      "unitCost": 123.45,
      "quantity": 123.45,
      "contentQuantity": 987.65,
      "totalValue": 987.65,
      "createdByUserId": HashedId,
      "createdByUser": User
    }
  }
}

createProcedureInstance

Response

Returns a ProcedureInstance!

Arguments
Name Description
input - ProcedureInstanceCreateInput!

Example

Query
mutation createProcedureInstance($input: ProcedureInstanceCreateInput!) {
  createProcedureInstance(input: $input) {
    id
    created
    updated
    templateId
    serviceId
    createdByGroupId
    createdByUserId
    scannedAssetId
    checkEventId
    scannedSiteId
    scannedSite {
      ...SiteFragment
    }
    ticket {
      ...TicketFragment
    }
    scannedAsset {
      ...AssetFragment
    }
    service {
      ...ServiceFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    template {
      ...ProcedureTemplateFragment
    }
    components {
      ...ProcedureInstanceComponentFragment
    }
  }
}
Variables
{"input": ProcedureInstanceCreateInput}
Response
{
  "data": {
    "createProcedureInstance": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "templateId": HashedId,
      "serviceId": HashedId,
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "scannedAssetId": HashedId,
      "checkEventId": HashedId,
      "scannedSiteId": HashedId,
      "scannedSite": Site,
      "ticket": Ticket,
      "scannedAsset": Asset,
      "service": Service,
      "createdByUser": User,
      "createdByGroup": Group,
      "template": ProcedureTemplate,
      "components": [ProcedureInstanceComponent]
    }
  }
}

createProcedureTemplate

Response

Returns a ProcedureTemplate!

Arguments
Name Description
input - ProcedureTemplateCreateInput!

Example

Query
mutation createProcedureTemplate($input: ProcedureTemplateCreateInput!) {
  createProcedureTemplate(input: $input) {
    id
    created
    updated
    type
    itemType
    preset
    accessLevel
    iconUrl
    createdByGroupId
    createdByUserId
    titleId
    descriptionId
    rootId
    parentId
    publicId
    publicRootId
    servicePackages {
      ...ServicePackageFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    description {
      ...TranslationFragment
    }
    components {
      ...ProcedureTemplateComponentFragment
    }
    automations {
      ...ProcedureTemplateAutomationFragment
    }
    parent {
      ...ProcedureTemplateFragment
    }
  }
}
Variables
{"input": ProcedureTemplateCreateInput}
Response
{
  "data": {
    "createProcedureTemplate": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "type": "tickets",
      "itemType": "general",
      "preset": "check",
      "accessLevel": "tree",
      "iconUrl": "abc123",
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "titleId": HashedId,
      "descriptionId": HashedId,
      "rootId": HashedId,
      "parentId": HashedId,
      "publicId": 987,
      "publicRootId": 123,
      "servicePackages": [ServicePackage],
      "title": Translation,
      "createdByUser": User,
      "createdByGroup": Group,
      "description": Translation,
      "components": [ProcedureTemplateComponent],
      "automations": [ProcedureTemplateAutomation],
      "parent": ProcedureTemplate
    }
  }
}

createReservation

Response

Returns [Reservation!]

Arguments
Name Description
from - Timestamp!
until - Timestamp!
reserverName - String!
assetIds - [HashedId!]!
notes - TranslationInput
workingHoursSettings - JSON Sets up a working hour watcher. See RuleBlock schema for syntax.
workingHoursNotification - [RuleNotificationRelationInput] When a working hours event happens, send notifications to these entities

Example

Query
mutation createReservation(
  $from: Timestamp!,
  $until: Timestamp!,
  $reserverName: String!,
  $assetIds: [HashedId!]!,
  $notes: TranslationInput,
  $workingHoursSettings: JSON,
  $workingHoursNotification: [RuleNotificationRelationInput]
) {
  createReservation(
    from: $from,
    until: $until,
    reserverName: $reserverName,
    assetIds: $assetIds,
    notes: $notes,
    workingHoursSettings: $workingHoursSettings,
    workingHoursNotification: $workingHoursNotification
  ) {
    id
    from
    until
    reserverName
    assets {
      ...AssetFragment
    }
    assetIds
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    notes {
      ...TranslationFragment
    }
    notesId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    created
    updated
  }
}
Variables
{
  "from": 1592577642,
  "until": 1592577642,
  "reserverName": "abc123",
  "assetIds": [HashedId],
  "notes": TranslationInput,
  "workingHoursSettings": {},
  "workingHoursNotification": [
    RuleNotificationRelationInput
  ]
}
Response
{
  "data": {
    "createReservation": [
      {
        "id": HashedId,
        "from": 1592577642,
        "until": 1592577642,
        "reserverName": "xyz789",
        "assets": [Asset],
        "assetIds": [HashedId],
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "notes": Translation,
        "notesId": HashedId,
        "createdByUser": User,
        "createdByUserId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "created": 1592577642,
        "updated": 1592577642
      }
    ]
  }
}

createRule

Response

Returns a Rule!

Arguments
Name Description
title - TranslationInput!
description - TranslationInput
definition - JSON!
assetTypeIds - [HashedId!]
assetIds - [HashedId!]
relations - RuleRelationInput!
source - RuleSource!
eventStyleId - HashedId!
isActive - Boolean
isOneshot - Boolean
duration - JSON
isCritical - Boolean
isImmediateNotification - Boolean
isOnetime - Boolean
isGlobalRule - Boolean
assignedToGroupId - HashedId
manualDeactivation - Boolean
assetBlacklistIds - [HashedId!]
sendNotificationsTo - [RuleNotificationRelationInput] Add entities who will be notified when this rule is triggered. See type for possibilities.
eventsConfigs - [EventConfigInput]
serviceIds - [HashedId]

Example

Query
mutation createRule(
  $title: TranslationInput!,
  $description: TranslationInput,
  $definition: JSON!,
  $assetTypeIds: [HashedId!],
  $assetIds: [HashedId!],
  $relations: RuleRelationInput!,
  $source: RuleSource!,
  $eventStyleId: HashedId!,
  $isActive: Boolean,
  $isOneshot: Boolean,
  $duration: JSON,
  $isCritical: Boolean,
  $isImmediateNotification: Boolean,
  $isOnetime: Boolean,
  $isGlobalRule: Boolean,
  $assignedToGroupId: HashedId,
  $manualDeactivation: Boolean,
  $assetBlacklistIds: [HashedId!],
  $sendNotificationsTo: [RuleNotificationRelationInput],
  $eventsConfigs: [EventConfigInput],
  $serviceIds: [HashedId]
) {
  createRule(
    title: $title,
    description: $description,
    definition: $definition,
    assetTypeIds: $assetTypeIds,
    assetIds: $assetIds,
    relations: $relations,
    source: $source,
    eventStyleId: $eventStyleId,
    isActive: $isActive,
    isOneshot: $isOneshot,
    duration: $duration,
    isCritical: $isCritical,
    isImmediateNotification: $isImmediateNotification,
    isOnetime: $isOnetime,
    isGlobalRule: $isGlobalRule,
    assignedToGroupId: $assignedToGroupId,
    manualDeactivation: $manualDeactivation,
    assetBlacklistIds: $assetBlacklistIds,
    sendNotificationsTo: $sendNotificationsTo,
    eventsConfigs: $eventsConfigs,
    serviceIds: $serviceIds
  ) {
    definition
    module {
      ...ModuleFragment
    }
    moduleId
    assetBlacklist {
      ...AssetFragment
    }
    assetBlacklistIds
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    duration
    relations {
      ...RuleRelationFragment
    }
    eventsConfigs {
      ...EventConfigFragment
    }
    id
    created
    updated
    title {
      ...TranslationFragment
    }
    description {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    eventStyle {
      ...EventStyleFragment
    }
    titleId
    descriptionId
    createdByGroupId
    createdByUserId
    assignedToGroupId
    eventStyleId
    isCritical
    isOnetime
    isImmediateNotification
    isGlobalRule
    manualDeactivation
    isArchived
    isOneshot
    isActive
    source
    enabled
    purpose
    publicId
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
  }
}
Variables
{
  "title": TranslationInput,
  "description": TranslationInput,
  "definition": {},
  "assetTypeIds": [HashedId],
  "assetIds": [HashedId],
  "relations": RuleRelationInput,
  "source": "DATA",
  "eventStyleId": HashedId,
  "isActive": false,
  "isOneshot": true,
  "duration": {},
  "isCritical": true,
  "isImmediateNotification": true,
  "isOnetime": true,
  "isGlobalRule": false,
  "assignedToGroupId": HashedId,
  "manualDeactivation": false,
  "assetBlacklistIds": [HashedId],
  "sendNotificationsTo": [RuleNotificationRelationInput],
  "eventsConfigs": [EventConfigInput],
  "serviceIds": [HashedId]
}
Response
{
  "data": {
    "createRule": {
      "definition": {},
      "module": [Module],
      "moduleId": [HashedId],
      "assetBlacklist": [Asset],
      "assetBlacklistIds": [HashedId],
      "sendNotificationsTo": [RuleNotificationRelation],
      "duration": {},
      "relations": [RuleRelation],
      "eventsConfigs": [EventConfig],
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "title": Translation,
      "description": Translation,
      "createdByUser": User,
      "createdByGroup": Group,
      "assignedToGroup": Group,
      "eventStyle": EventStyle,
      "titleId": HashedId,
      "descriptionId": HashedId,
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "assignedToGroupId": HashedId,
      "eventStyleId": HashedId,
      "isCritical": false,
      "isOnetime": false,
      "isImmediateNotification": true,
      "isGlobalRule": false,
      "manualDeactivation": true,
      "isArchived": true,
      "isOneshot": true,
      "isActive": false,
      "source": "DATA",
      "enabled": false,
      "purpose": "GEOFENCE",
      "publicId": "abc123",
      "services": [Service],
      "servicesV2": [Service]
    }
  }
}

createServicePackage

Response

Returns a ServicePackage!

Arguments
Name Description
input - ServicePackageCreateInput!

Example

Query
mutation createServicePackage($input: ServicePackageCreateInput!) {
  createServicePackage(input: $input) {
    id
    created
    updated
    titleId
    createdByUserId
    createdByGroupId
    assignedSitesCount
    assignedGroupsCount
    restrictionReason
    services {
      ...ServiceFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    canBeDeleted
  }
}
Variables
{"input": ServicePackageCreateInput}
Response
{
  "data": {
    "createServicePackage": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "assignedSitesCount": 987,
      "assignedGroupsCount": 987,
      "restrictionReason": "NOT_IN_CUSTOMER_TREE",
      "services": [Service],
      "createdByGroup": Group,
      "title": Translation,
      "createdByUser": User,
      "canBeDeleted": false
    }
  }
}

createServices

Description

This can only be used by TS platform admins for now

Response

Returns [Service!]!

Arguments
Name Description
services - [ServiceCreateInput!]!
servicePackageId - HashedId!

Example

Query
mutation createServices(
  $services: [ServiceCreateInput!]!,
  $servicePackageId: HashedId!
) {
  createServices(
    services: $services,
    servicePackageId: $servicePackageId
  ) {
    id
    created
    updated
    titleId
    procedureTemplateId
    publicProcedureTemplateId
    keys
    contentType
    assigneeAutomation
    preset
    type
    iconUrl
    formId
    jotformId
    jotformSource
    isServiceCheck
    assigneeAutomationId
    createdByGroupId
    belongsToGroupTypeId
    suggestedServicePartner
    servicePartner {
      ...AvailableHandlerFragment
    }
    title {
      ...TranslationFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    servicePackages {
      ...ServicePackageFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    rules {
      ...RuleFragment
    }
    canBeDeleted
  }
}
Variables
{
  "services": [ServiceCreateInput],
  "servicePackageId": HashedId
}
Response
{
  "data": {
    "createServices": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "procedureTemplateId": HashedId,
        "publicProcedureTemplateId": 987,
        "keys": ["xyz789"],
        "contentType": "formHtml",
        "assigneeAutomation": "SUGGESTED_PARTNER",
        "preset": "BLE",
        "type": "JOT_FORM",
        "iconUrl": "xyz789",
        "formId": "xyz789",
        "jotformId": "abc123",
        "jotformSource": "abc123",
        "isServiceCheck": false,
        "assigneeAutomationId": 123,
        "createdByGroupId": HashedId,
        "belongsToGroupTypeId": HashedId,
        "suggestedServicePartner": "abc123",
        "servicePartner": AvailableHandler,
        "title": Translation,
        "servicePackage": ServicePackage,
        "servicePackages": [ServicePackage],
        "procedureTemplate": ProcedureTemplate,
        "createdByGroup": Group,
        "rules": [Rule],
        "canBeDeleted": false
      }
    ]
  }
}

createSite

Response

Returns [Site!]

Arguments
Name Description
externalId - String An id that is referring to some external source. Like an ERP System or another external Task/Order management system This is not a unique identifier in our system. This is technically not feasible!
name - String!

The name of the a site. This is usualy not a clear identifier. Examples of site names would be:

  • Billa
  • WeXelerate
  • Uniqa Wien 1020 This is the name that our customers are using to communicate roughly about what site they mean. To really identify a site they use some kind of contract number.
note - String
isFixed - Boolean! Specifies if the site is tied to a fixed location - like a building. Not fixed locations could be a moving vehicle or a team.
locationText - String
accountNumber - String Account number - arbitrary, for the Manufacturer to assign them their interal description
address - String Formatted address consisting of street and street number
country - String
customerNumber - String Customer number - arbitrary, for the Customer to manage their own Customers
siteManagerName - String Name of the contact person of the site
email - String Email address of the contact person of the site
postalCode - String
telephone - String Telephone number of the contact person of the site
geofenceSettings - JSON Geofence settings, if set. See Rules schema for syntax.
assignedToGroupId - HashedId
coordinates - CoordinatesInput
disableWebhooks - Boolean
geofenceNotification - [RuleNotificationRelationInput] When a geofence event happens, send notifications to these entities

Example

Query
mutation createSite(
  $externalId: String,
  $name: String!,
  $note: String,
  $isFixed: Boolean!,
  $locationText: String,
  $accountNumber: String,
  $address: String,
  $country: String,
  $customerNumber: String,
  $siteManagerName: String,
  $email: String,
  $postalCode: String,
  $telephone: String,
  $geofenceSettings: JSON,
  $assignedToGroupId: HashedId,
  $coordinates: CoordinatesInput,
  $disableWebhooks: Boolean,
  $geofenceNotification: [RuleNotificationRelationInput]
) {
  createSite(
    externalId: $externalId,
    name: $name,
    note: $note,
    isFixed: $isFixed,
    locationText: $locationText,
    accountNumber: $accountNumber,
    address: $address,
    country: $country,
    customerNumber: $customerNumber,
    siteManagerName: $siteManagerName,
    email: $email,
    postalCode: $postalCode,
    telephone: $telephone,
    geofenceSettings: $geofenceSettings,
    assignedToGroupId: $assignedToGroupId,
    coordinates: $coordinates,
    disableWebhooks: $disableWebhooks,
    geofenceNotification: $geofenceNotification
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "externalId": "xyz789",
  "name": "abc123",
  "note": "abc123",
  "isFixed": true,
  "locationText": "abc123",
  "accountNumber": "abc123",
  "address": "xyz789",
  "country": "abc123",
  "customerNumber": "xyz789",
  "siteManagerName": "xyz789",
  "email": "xyz789",
  "postalCode": "xyz789",
  "telephone": "abc123",
  "geofenceSettings": {},
  "assignedToGroupId": HashedId,
  "coordinates": CoordinatesInput,
  "disableWebhooks": false,
  "geofenceNotification": [RuleNotificationRelationInput]
}
Response
{
  "data": {
    "createSite": [
      {
        "id": HashedId,
        "externalId": "xyz789",
        "name": "abc123",
        "isFixed": false,
        "locationText": "xyz789",
        "address": "abc123",
        "coordinates": Coordinates,
        "assignedToGroup": Group,
        "assignedToGroupId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "accountNumber": "xyz789",
        "customerNumber": "xyz789",
        "siteManagerName": "abc123",
        "email": "xyz789",
        "telephone": "abc123",
        "postalCode": "xyz789",
        "country": "xyz789",
        "geofenceSettings": {},
        "geofenceNotification": [
          RuleNotificationRelation
        ],
        "containsAssetsToModifyByGroup": true,
        "created": 1592577642,
        "assetsCount": 987,
        "updated": 1592577642,
        "note": "xyz789",
        "image": "xyz789",
        "parentSite": Site,
        "parentSiteId": HashedId,
        "servicePackageId": HashedId,
        "shouldInheritServicePackage": false,
        "servicePackage": ServicePackage,
        "shouldInheritGeofenceSettings": false,
        "shouldInheritManagerDetails": true,
        "groupTreeRootId": HashedId,
        "lat": "xyz789",
        "lng": "xyz789",
        "siteTypeId": HashedId,
        "qrAttached": true,
        "uuid": "xyz789",
        "events": [Event],
        "publicId": 987,
        "siteType": SiteType,
        "siteManagers": [SiteManager]
      }
    ]
  }
}

createSiteV2

Response

Returns a Site

Arguments
Name Description
siteInput - SiteCreateInput!
optionsInput - SiteCreateOptionsInput

Example

Query
mutation createSiteV2(
  $siteInput: SiteCreateInput!,
  $optionsInput: SiteCreateOptionsInput
) {
  createSiteV2(
    siteInput: $siteInput,
    optionsInput: $optionsInput
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "siteInput": SiteCreateInput,
  "optionsInput": SiteCreateOptionsInput
}
Response
{
  "data": {
    "createSiteV2": {
      "id": HashedId,
      "externalId": "abc123",
      "name": "abc123",
      "isFixed": true,
      "locationText": "xyz789",
      "address": "abc123",
      "coordinates": Coordinates,
      "assignedToGroup": Group,
      "assignedToGroupId": HashedId,
      "createdByGroup": Group,
      "createdByGroupId": HashedId,
      "accountNumber": "xyz789",
      "customerNumber": "xyz789",
      "siteManagerName": "xyz789",
      "email": "xyz789",
      "telephone": "abc123",
      "postalCode": "abc123",
      "country": "abc123",
      "geofenceSettings": {},
      "geofenceNotification": [RuleNotificationRelation],
      "containsAssetsToModifyByGroup": true,
      "created": 1592577642,
      "assetsCount": 123,
      "updated": 1592577642,
      "note": "xyz789",
      "image": "xyz789",
      "parentSite": Site,
      "parentSiteId": HashedId,
      "servicePackageId": HashedId,
      "shouldInheritServicePackage": false,
      "servicePackage": ServicePackage,
      "shouldInheritGeofenceSettings": true,
      "shouldInheritManagerDetails": false,
      "groupTreeRootId": HashedId,
      "lat": "abc123",
      "lng": "abc123",
      "siteTypeId": HashedId,
      "qrAttached": true,
      "uuid": "abc123",
      "events": [Event],
      "publicId": 123,
      "siteType": SiteType,
      "siteManagers": [SiteManager]
    }
  }
}

createTeam

Response

Returns a Team!

Arguments
Name Description
input - TeamCreateInput!

Example

Query
mutation createTeam($input: TeamCreateInput!) {
  createTeam(input: $input) {
    id
    created
    updated
    nameId
    groupId
    createdByUserId
    createdByGroupId
    assignedToActiveTicketIds
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    members {
      ...TeamMemberFragment
    }
    servicePackages {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
  }
}
Variables
{"input": TeamCreateInput}
Response
{
  "data": {
    "createTeam": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "nameId": HashedId,
      "groupId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "assignedToActiveTicketIds": [987],
      "name": Translation,
      "group": Group,
      "createdByUser": User,
      "createdByGroup": Group,
      "members": [TeamMember],
      "servicePackages": [ServicePackage]
    }
  }
}

createTerms

Response

Returns a Terms!

Arguments
Name Description
title - TranslationInput!
content - TranslationInput!

Example

Query
mutation createTerms(
  $title: TranslationInput!,
  $content: TranslationInput!
) {
  createTerms(
    title: $title,
    content: $content
  ) {
    id
    created
    updated
    isActive
    titleId
    title {
      ...TranslationFragment
    }
    versions {
      ...TermsHasVersionFragment
    }
    version
    contentId
    content {
      ...TranslationFragment
    }
  }
}
Variables
{
  "title": TranslationInput,
  "content": TranslationInput
}
Response
{
  "data": {
    "createTerms": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "isActive": true,
      "titleId": HashedId,
      "title": Translation,
      "versions": [TermsHasVersion],
      "version": 123,
      "contentId": HashedId,
      "content": Translation
    }
  }
}

createTicket

Needed only for one client. Do not use in new code
Response

Returns a Ticket!

Arguments
Name Description
stateId - HashedId
stateKey - String
disableWebhooks - Boolean Default = false
title - TranslationInput!
content - String!
associatedAssetIds - [HashedId!]

Example

Query
mutation createTicket(
  $stateId: HashedId,
  $stateKey: String,
  $disableWebhooks: Boolean,
  $title: TranslationInput!,
  $content: String!,
  $associatedAssetIds: [HashedId!]
) {
  createTicket(
    stateId: $stateId,
    stateKey: $stateKey,
    disableWebhooks: $disableWebhooks,
    title: $title,
    content: $content,
    associatedAssetIds: $associatedAssetIds
  ) {
    id
    created
    updated
    content
    uuid
    serviceResponseId
    createdByUserId
    createdByGroupId
    procedureInstanceId
    titleId
    serviceId
    ticketId
    assignee {
      ...ProcessHandlerFragment
    }
    responsibles {
      ...ProcessHandlerFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    currentState {
      ...TicketCurrentStateFragment
    }
    ticketComments {
      ...TicketCommentFragment
    }
    associatedAssets {
      ...AssetFragment
    }
    documents {
      ...DocumentFragment
    }
    pdfCertificateLink {
      ...DocumentFragment
    }
    service {
      ...ServiceFragment
    }
    title {
      ...TranslationFragment
    }
    lastStatusChange
    notifications {
      ...NotificationFilterFragment
    }
    batteryCosts
    certificationCosts
    consumablesCosts
    fuelCosts
    insuranceTaxesCosts
    laborCosts
    logisticsCosts
    otherCosts
    repairCosts
    sparePartsCosts
    ticketTimeline {
      ...TicketTimelineFragment
    }
    totalCosts
    urgency
    procedureInstance {
      ...ProcedureInstanceFragment
    }
    associatedSites {
      ...SiteFragment
    }
    associatedAssetCategories {
      ...AssetCategoryFragment
    }
    associatedAssetTypes {
      ...AssetTypeFragment
    }
    ticketContent {
      ...TicketContentFieldFragment
    }
    activityEvents {
      ... on TicketHandlerUpdate {
        ...TicketHandlerUpdateFragment
      }
      ... on TicketUrgencyUpdate {
        ...TicketUrgencyUpdateFragment
      }
      ... on TicketAssetCheckComplete {
        ...TicketAssetCheckCompleteFragment
      }
      ... on TicketAssetSiteUpdate {
        ...TicketAssetSiteUpdateFragment
      }
      ... on TicketAssetAvailabilityUpdate {
        ...TicketAssetAvailabilityUpdateFragment
      }
    }
    automationDetails {
      ...TicketAutomationDetailsFragment
    }
  }
}
Variables
{
  "stateId": HashedId,
  "stateKey": "abc123",
  "disableWebhooks": false,
  "title": TranslationInput,
  "content": "abc123",
  "associatedAssetIds": [HashedId]
}
Response
{
  "data": {
    "createTicket": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "content": {},
      "uuid": "abc123",
      "serviceResponseId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "procedureInstanceId": HashedId,
      "titleId": HashedId,
      "serviceId": HashedId,
      "ticketId": 123,
      "assignee": ProcessHandler,
      "responsibles": [ProcessHandler],
      "createdByUser": User,
      "createdByGroup": Group,
      "currentState": TicketCurrentState,
      "ticketComments": [TicketComment],
      "associatedAssets": [Asset],
      "documents": [Document],
      "pdfCertificateLink": Document,
      "service": Service,
      "title": Translation,
      "lastStatusChange": 1592577642,
      "notifications": NotificationFilter,
      "batteryCosts": "abc123",
      "certificationCosts": "abc123",
      "consumablesCosts": "xyz789",
      "fuelCosts": "abc123",
      "insuranceTaxesCosts": "abc123",
      "laborCosts": "abc123",
      "logisticsCosts": "abc123",
      "otherCosts": "abc123",
      "repairCosts": "abc123",
      "sparePartsCosts": "abc123",
      "ticketTimeline": TicketTimeline,
      "totalCosts": "abc123",
      "urgency": "CRITICAL",
      "procedureInstance": ProcedureInstance,
      "associatedSites": [Site],
      "associatedAssetCategories": [AssetCategory],
      "associatedAssetTypes": [AssetType],
      "ticketContent": [TicketContentField],
      "activityEvents": [TicketHandlerUpdate],
      "automationDetails": TicketAutomationDetails
    }
  }
}

createTicketComment

Use "createCommentForTicket" instead
Response

Returns a TicketComment!

Arguments
Name Description
disableWebhooks - Boolean Default = false
ticketId - HashedId!
content - String!
attachments - [Upload!]
event - CreateCommentEventInput
costs - [NewCostInput!]
internal - Boolean

Example

Query
mutation createTicketComment(
  $disableWebhooks: Boolean,
  $ticketId: HashedId!,
  $content: String!,
  $attachments: [Upload!],
  $event: CreateCommentEventInput,
  $costs: [NewCostInput!],
  $internal: Boolean
) {
  createTicketComment(
    disableWebhooks: $disableWebhooks,
    ticketId: $ticketId,
    content: $content,
    attachments: $attachments,
    event: $event,
    costs: $costs,
    internal: $internal
  ) {
    id
    created
    updated
    createdByUserId
    authorEmail
    createdByUser {
      ...TicketUserFragment
    }
    history {
      ...TicketCommentContentFragment
    }
    content {
      ...TicketCommentContentFragment
    }
    isAutomated
    costs {
      ...CostFragment
    }
    stateEvent {
      ...TicketStateFragment
    }
    attachments {
      ...DocumentFragment
    }
    connectedEventId
    connectedEvent {
      ...EventFragment
    }
    internal
    deleted
  }
}
Variables
{
  "disableWebhooks": false,
  "ticketId": HashedId,
  "content": "abc123",
  "attachments": [Upload],
  "event": CreateCommentEventInput,
  "costs": [NewCostInput],
  "internal": true
}
Response
{
  "data": {
    "createTicketComment": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "createdByUserId": HashedId,
      "authorEmail": "xyz789",
      "createdByUser": TicketUser,
      "history": [TicketCommentContent],
      "content": TicketCommentContent,
      "isAutomated": false,
      "costs": [Cost],
      "stateEvent": TicketState,
      "attachments": [Document],
      "connectedEventId": HashedId,
      "connectedEvent": Event,
      "internal": false,
      "deleted": 1592577642
    }
  }
}

createTicketView

Description

create a new ticket view for the logged in user

Response

Returns a TicketView!

Arguments
Name Description
view - TicketViewCreateInput!

Example

Query
mutation createTicketView($view: TicketViewCreateInput!) {
  createTicketView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...TicketViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": TicketViewCreateInput}
Response
{
  "data": {
    "createTicketView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": TicketViewOptions,
      "isActive": true,
      "isSystemView": false,
      "isShared": true,
      "isEditable": true,
      "isDeletable": true,
      "isShareable": false,
      "isUnsharedByParentGroup": false,
      "title": Translation
    }
  }
}

createTripsView

Description

create a new ticket view for the logged in user

Response

Returns a TicketView!

Arguments
Name Description
view - TripsViewCreateInput!

Example

Query
mutation createTripsView($view: TripsViewCreateInput!) {
  createTripsView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...TicketViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": TripsViewCreateInput}
Response
{
  "data": {
    "createTripsView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": TicketViewOptions,
      "isActive": false,
      "isSystemView": false,
      "isShared": false,
      "isEditable": true,
      "isDeletable": true,
      "isShareable": false,
      "isUnsharedByParentGroup": true,
      "title": Translation
    }
  }
}

createUser

there is no password reset link in this mutation. Use createUserV2 instead.
Response

Returns [User!]

Arguments
Name Description
belongsToGroupId - HashedId!
email - String!
roleId - HashedId!
languageId - HashedId!
dashboardId - HashedId
activationRoute - String
firstname - String
isSSOEnabled - Boolean
lastname - String
locale - String
password - String Default = "INVALID"
phone - String
preventInviteEmail - Boolean
settings - JSON
settingsPath - String
supportAdmin - Boolean
timezone - String
username - String keeping it for backward compatibility, if passed value for username it will be ignored
label - String
canShareViews - Boolean
info - JSON

Example

Query
mutation createUser(
  $belongsToGroupId: HashedId!,
  $email: String!,
  $roleId: HashedId!,
  $languageId: HashedId!,
  $dashboardId: HashedId,
  $activationRoute: String,
  $firstname: String,
  $isSSOEnabled: Boolean,
  $lastname: String,
  $locale: String,
  $password: String,
  $phone: String,
  $preventInviteEmail: Boolean,
  $settings: JSON,
  $settingsPath: String,
  $supportAdmin: Boolean,
  $timezone: String,
  $username: String,
  $label: String,
  $canShareViews: Boolean,
  $info: JSON
) {
  createUser(
    belongsToGroupId: $belongsToGroupId,
    email: $email,
    roleId: $roleId,
    languageId: $languageId,
    dashboardId: $dashboardId,
    activationRoute: $activationRoute,
    firstname: $firstname,
    isSSOEnabled: $isSSOEnabled,
    lastname: $lastname,
    locale: $locale,
    password: $password,
    phone: $phone,
    preventInviteEmail: $preventInviteEmail,
    settings: $settings,
    settingsPath: $settingsPath,
    supportAdmin: $supportAdmin,
    timezone: $timezone,
    username: $username,
    label: $label,
    canShareViews: $canShareViews,
    info: $info
  ) {
    id
    created
    updated
    publicId
    firstname
    lastname
    password
    email
    phone
    fullName
    groupId
    roleId
    isSupportAdmin
    canShareViews
    isSSOEnabled
    languageId
    language
    languageCode
    dashboardId
    locale
    timezone
    label
    apiKey
    image
    activated
    isServicing
    info
    stripeSubscriptionId
    deleted
    username
    supportAdmin
    belongsToGroupId
    lastLogin
    services
    dashboard
    notifications
    notificationIds
    checkPassword
    loginInterrupts
    loginInterruptIds
    subscription {
      ...StripeSubscriptionPlanFragment
    }
    belongsToGroup {
      ...GroupFragment
    }
    group {
      ...GroupFragment
    }
    role {
      ...RoleFragment
    }
    teams {
      ...TeamFragment
    }
    hasMultipleGroups
    groups {
      ...GroupFragment
    }
    unavailability {
      ...UserUnavailabilityFragment
    }
    settings
  }
}
Variables
{
  "belongsToGroupId": HashedId,
  "email": "xyz789",
  "roleId": HashedId,
  "languageId": HashedId,
  "dashboardId": HashedId,
  "activationRoute": "xyz789",
  "firstname": "abc123",
  "isSSOEnabled": false,
  "lastname": "xyz789",
  "locale": "xyz789",
  "password": "INVALID",
  "phone": "xyz789",
  "preventInviteEmail": false,
  "settings": {},
  "settingsPath": "xyz789",
  "supportAdmin": true,
  "timezone": "abc123",
  "username": "xyz789",
  "label": "xyz789",
  "canShareViews": true,
  "info": {}
}
Response
{
  "data": {
    "createUser": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "publicId": 123,
        "firstname": "abc123",
        "lastname": "xyz789",
        "password": "abc123",
        "email": "xyz789",
        "phone": "xyz789",
        "fullName": "xyz789",
        "groupId": HashedId,
        "roleId": HashedId,
        "isSupportAdmin": false,
        "canShareViews": true,
        "isSSOEnabled": true,
        "languageId": HashedId,
        "language": HashedId,
        "languageCode": "ENGLISH",
        "dashboardId": HashedId,
        "locale": LanguageTag,
        "timezone": "xyz789",
        "label": "xyz789",
        "apiKey": "abc123",
        "image": "xyz789",
        "activated": 1592577642,
        "isServicing": true,
        "info": {},
        "stripeSubscriptionId": "xyz789",
        "deleted": 1592577642,
        "username": "abc123",
        "supportAdmin": false,
        "belongsToGroupId": HashedId,
        "lastLogin": "2007-12-03T10:15:30Z",
        "services": [{}],
        "dashboard": {},
        "notifications": [{}],
        "notificationIds": [HashedId],
        "checkPassword": true,
        "loginInterrupts": {},
        "loginInterruptIds": [HashedId],
        "subscription": StripeSubscriptionPlan,
        "belongsToGroup": Group,
        "group": Group,
        "role": Role,
        "teams": [Team],
        "hasMultipleGroups": true,
        "groups": [Group],
        "unavailability": [UserUnavailability],
        "settings": {}
      }
    ]
  }
}

createUserV2

Response

Returns a CreateUserDto

Arguments
Name Description
belongsToGroupId - HashedId!
email - String!
roleId - HashedId!
languageId - HashedId!
dashboardId - HashedId
activationRoute - String
firstname - String
isSSOEnabled - Boolean
lastname - String
locale - String
password - String Default = "INVALID"
phone - String
preventInviteEmail - Boolean
settings - JSON
settingsPath - String
supportAdmin - Boolean
timezone - String
username - String keeping it for backward compatibility, if passed value for username it will be ignored
label - String
canShareViews - Boolean
info - JSON

Example

Query
mutation createUserV2(
  $belongsToGroupId: HashedId!,
  $email: String!,
  $roleId: HashedId!,
  $languageId: HashedId!,
  $dashboardId: HashedId,
  $activationRoute: String,
  $firstname: String,
  $isSSOEnabled: Boolean,
  $lastname: String,
  $locale: String,
  $password: String,
  $phone: String,
  $preventInviteEmail: Boolean,
  $settings: JSON,
  $settingsPath: String,
  $supportAdmin: Boolean,
  $timezone: String,
  $username: String,
  $label: String,
  $canShareViews: Boolean,
  $info: JSON
) {
  createUserV2(
    belongsToGroupId: $belongsToGroupId,
    email: $email,
    roleId: $roleId,
    languageId: $languageId,
    dashboardId: $dashboardId,
    activationRoute: $activationRoute,
    firstname: $firstname,
    isSSOEnabled: $isSSOEnabled,
    lastname: $lastname,
    locale: $locale,
    password: $password,
    phone: $phone,
    preventInviteEmail: $preventInviteEmail,
    settings: $settings,
    settingsPath: $settingsPath,
    supportAdmin: $supportAdmin,
    timezone: $timezone,
    username: $username,
    label: $label,
    canShareViews: $canShareViews,
    info: $info
  ) {
    user {
      ...UserFragment
    }
    passwordResetLink
  }
}
Variables
{
  "belongsToGroupId": HashedId,
  "email": "xyz789",
  "roleId": HashedId,
  "languageId": HashedId,
  "dashboardId": HashedId,
  "activationRoute": "abc123",
  "firstname": "abc123",
  "isSSOEnabled": true,
  "lastname": "abc123",
  "locale": "xyz789",
  "password": "INVALID",
  "phone": "abc123",
  "preventInviteEmail": true,
  "settings": {},
  "settingsPath": "xyz789",
  "supportAdmin": true,
  "timezone": "xyz789",
  "username": "xyz789",
  "label": "xyz789",
  "canShareViews": true,
  "info": {}
}
Response
{
  "data": {
    "createUserV2": {
      "user": User,
      "passwordResetLink": "xyz789"
    }
  }
}

createWebhook

Response

Returns a Webhook!

Arguments
Name Description
input - WebhookCreateInput!

Example

Query
mutation createWebhook($input: WebhookCreateInput!) {
  createWebhook(input: $input) {
    id
    created
    updated
    groupId
    url
    forTickets
    forSites
    forAssets
    forWorkOrders
  }
}
Variables
{"input": WebhookCreateInput}
Response
{
  "data": {
    "createWebhook": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "url": "abc123",
      "forTickets": false,
      "forSites": true,
      "forAssets": false,
      "forWorkOrders": false
    }
  }
}

createWorkOrder

Response

Returns a WorkOrderV2!

Arguments
Name Description
workOrder - WorkOrderCreateInput!

Example

Query
mutation createWorkOrder($workOrder: WorkOrderCreateInput!) {
  createWorkOrder(workOrder: $workOrder) {
    id
    created
    updated
    name
    startDate
    endDate
    createdByGroupId
    procedureTemplateId
    creatorId
    creationDate
    customerName
    status
    notesId
    costCenter
    siteId
    creator {
      ...UserFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    site {
      ...SiteFragment
    }
    workOrderNumber
    notes {
      ...TranslationFragment
    }
    sourceTicketId
    assignee {
      ...WorkOrderPersonnelV2Fragment
    }
    followers {
      ...WorkOrderPersonnelV2Fragment
    }
    workers {
      ...WorkOrderPersonnelV2Fragment
    }
    costs {
      ...WorkOrderCostFragment
    }
    dailyRate {
      ...WorkOrderCostFragment
    }
    assetCollections {
      ...WorkOrderAssetCollectionFragment
    }
    assets {
      ...AssetFragment
    }
    locations {
      ...WorkOrderLocationFragment
    }
    history {
      ...WorkOrderHistoryEntryFragment
    }
  }
}
Variables
{"workOrder": WorkOrderCreateInput}
Response
{
  "data": {
    "createWorkOrder": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "startDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "createdByGroupId": HashedId,
      "procedureTemplateId": HashedId,
      "creatorId": HashedId,
      "creationDate": "2007-12-03T10:15:30Z",
      "customerName": "abc123",
      "status": "PENDING",
      "notesId": HashedId,
      "costCenter": "xyz789",
      "siteId": HashedId,
      "creator": User,
      "procedureTemplate": ProcedureTemplate,
      "site": Site,
      "workOrderNumber": 987,
      "notes": Translation,
      "sourceTicketId": HashedId,
      "assignee": WorkOrderPersonnelV2,
      "followers": [WorkOrderPersonnelV2],
      "workers": [WorkOrderPersonnelV2],
      "costs": [WorkOrderCost],
      "dailyRate": WorkOrderCost,
      "assetCollections": [WorkOrderAssetCollection],
      "assets": [Asset],
      "locations": [WorkOrderLocation],
      "history": [WorkOrderHistoryEntry]
    }
  }
}

createWorkOrderFromTicket

Response

Returns a WorkOrderV2!

Arguments
Name Description
ticket - IdInput!

Example

Query
mutation createWorkOrderFromTicket($ticket: IdInput!) {
  createWorkOrderFromTicket(ticket: $ticket) {
    id
    created
    updated
    name
    startDate
    endDate
    createdByGroupId
    procedureTemplateId
    creatorId
    creationDate
    customerName
    status
    notesId
    costCenter
    siteId
    creator {
      ...UserFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    site {
      ...SiteFragment
    }
    workOrderNumber
    notes {
      ...TranslationFragment
    }
    sourceTicketId
    assignee {
      ...WorkOrderPersonnelV2Fragment
    }
    followers {
      ...WorkOrderPersonnelV2Fragment
    }
    workers {
      ...WorkOrderPersonnelV2Fragment
    }
    costs {
      ...WorkOrderCostFragment
    }
    dailyRate {
      ...WorkOrderCostFragment
    }
    assetCollections {
      ...WorkOrderAssetCollectionFragment
    }
    assets {
      ...AssetFragment
    }
    locations {
      ...WorkOrderLocationFragment
    }
    history {
      ...WorkOrderHistoryEntryFragment
    }
  }
}
Variables
{"ticket": IdInput}
Response
{
  "data": {
    "createWorkOrderFromTicket": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "startDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "createdByGroupId": HashedId,
      "procedureTemplateId": HashedId,
      "creatorId": HashedId,
      "creationDate": "2007-12-03T10:15:30Z",
      "customerName": "xyz789",
      "status": "PENDING",
      "notesId": HashedId,
      "costCenter": "abc123",
      "siteId": HashedId,
      "creator": User,
      "procedureTemplate": ProcedureTemplate,
      "site": Site,
      "workOrderNumber": 123,
      "notes": Translation,
      "sourceTicketId": HashedId,
      "assignee": WorkOrderPersonnelV2,
      "followers": [WorkOrderPersonnelV2],
      "workers": [WorkOrderPersonnelV2],
      "costs": [WorkOrderCost],
      "dailyRate": WorkOrderCost,
      "assetCollections": [WorkOrderAssetCollection],
      "assets": [Asset],
      "locations": [WorkOrderLocation],
      "history": [WorkOrderHistoryEntry]
    }
  }
}

deactivateTerms

Response

Returns a Boolean!

Arguments
Name Description
id - [HashedId!]!

Example

Query
mutation deactivateTerms($id: [HashedId!]!) {
  deactivateTerms(id: $id)
}
Variables
{"id": [HashedId]}
Response
{"data": {"deactivateTerms": true}}

deactivateTicketComment

Response

Returns a Boolean

Arguments
Name Description
id - HashedId!

Example

Query
mutation deactivateTicketComment($id: HashedId!) {
  deactivateTicketComment(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deactivateTicketComment": true}}

deleteAsset

Response

Returns [Boolean]

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteAsset($id: HashedId!) {
  deleteAsset(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteAsset": [false]}}

deleteAssetCategory

Response

Returns [Boolean!]

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteAssetCategory($id: HashedId!) {
  deleteAssetCategory(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteAssetCategory": [false]}}

deleteAssetIntegrationById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteAssetIntegrationById($id: HashedId!) {
  deleteAssetIntegrationById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteAssetIntegrationById": false}}

deleteAssetType

Response

Returns [Boolean]

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteAssetType($id: HashedId!) {
  deleteAssetType(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteAssetType": [true]}}

deleteAssetV2

Response

Returns [Boolean!]!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteAssetV2($id: HashedId!) {
  deleteAssetV2(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteAssetV2": [false]}}

deleteBrandById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteBrandById($id: HashedId!) {
  deleteBrandById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteBrandById": false}}

deleteCost

Response

Returns a Cost

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteCost($id: HashedId!) {
  deleteCost(id: $id) {
    id
    created
    updated
    assetId
    costTypeId
    createdByUserId
    currency
    originatingFromEventId
    originatingFromCommentId
    value
    costType {
      ...CostTypeFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "deleteCost": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "assetId": HashedId,
      "costTypeId": HashedId,
      "createdByUserId": HashedId,
      "currency": "xyz789",
      "originatingFromEventId": HashedId,
      "originatingFromCommentId": HashedId,
      "value": 123.45,
      "costType": CostType
    }
  }
}

deleteDashboard

Response

Returns a DeletedResponse!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteDashboard($id: HashedId!) {
  deleteDashboard(id: $id) {
    affected_rows
  }
}
Variables
{"id": HashedId}
Response
{"data": {"deleteDashboard": {"affected_rows": 123}}}

deleteDocument

Response

Returns [Boolean!]!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteDocument($id: HashedId!) {
  deleteDocument(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteDocument": [true]}}

deleteEvent

Response

Returns an Event

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteEvent($id: HashedId!) {
  deleteEvent(id: $id) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "deleteEvent": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "abc123",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": true,
      "isImmediateNotification": true,
      "shouldNotify": true,
      "manualDeactivation": false,
      "isOngoing": false,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 987,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "abc123",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

deleteGroup

Use groups.deleteById instead
Response

Returns [Boolean!]!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteGroup($id: HashedId!) {
  deleteGroup(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteGroup": [false]}}

deleteGroupById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteGroupById($id: HashedId!) {
  deleteGroupById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteGroupById": true}}

deleteManufacturerById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteManufacturerById($id: HashedId!) {
  deleteManufacturerById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteManufacturerById": false}}

deleteModuleById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteModuleById($id: HashedId!) {
  deleteModuleById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteModuleById": true}}

deletePart

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deletePart($id: HashedId!) {
  deletePart(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deletePart": false}}

deleteProcedureTemplateById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteProcedureTemplateById($id: HashedId!) {
  deleteProcedureTemplateById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteProcedureTemplateById": true}}

deleteReservation

Response

Returns [Boolean!]

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteReservation($id: HashedId!) {
  deleteReservation(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteReservation": [false]}}

deleteServicePackageById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteServicePackageById($id: HashedId!) {
  deleteServicePackageById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteServicePackageById": true}}

deleteSite

Response

Returns a Boolean

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteSite($id: HashedId!) {
  deleteSite(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteSite": false}}

deleteTeamById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteTeamById($id: HashedId!) {
  deleteTeamById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteTeamById": true}}

deleteTicketById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation deleteTicketById($id: HashedId!) {
  deleteTicketById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"deleteTicketById": false}}

deleteUser

Response

Returns [Boolean!]!

Arguments
Name Description
id - [HashedId!]!

Example

Query
mutation deleteUser($id: [HashedId!]!) {
  deleteUser(id: $id)
}
Variables
{"id": [HashedId]}
Response
{"data": {"deleteUser": [true]}}

deleteView

Description

delete a view

Response

Returns a Boolean!

Arguments
Name Description
view - IdInput!

Example

Query
mutation deleteView($view: IdInput!) {
  deleteView(view: $view)
}
Variables
{"view": IdInput}
Response
{"data": {"deleteView": false}}

deleteViewShareStatus

Description

Delete a view's share status for current group, and return whether this operation affected anything (result is false if the view had no previous share status for the current group)

Response

Returns a Boolean!

Arguments
Name Description
view - IdInput!

Example

Query
mutation deleteViewShareStatus($view: IdInput!) {
  deleteViewShareStatus(view: $view)
}
Variables
{"view": IdInput}
Response
{"data": {"deleteViewShareStatus": true}}

deleteWebhook

Response

Returns a Boolean!

Arguments
Name Description
input - IdInput!

Example

Query
mutation deleteWebhook($input: IdInput!) {
  deleteWebhook(input: $input)
}
Variables
{"input": IdInput}
Response
{"data": {"deleteWebhook": true}}

deleteWorkOrder

Response

Returns a Boolean!

Arguments
Name Description
workOrder - IdInput!

Example

Query
mutation deleteWorkOrder($workOrder: IdInput!) {
  deleteWorkOrder(workOrder: $workOrder)
}
Variables
{"workOrder": IdInput}
Response
{"data": {"deleteWorkOrder": true}}

importEntity

Description

Allow to import multiple entities at once

Response

Returns an ExpectedResultType!

Arguments
Name Description
entity - String!
data - [JSON]!

Example

Query
mutation importEntity(
  $entity: String!,
  $data: [JSON]!
) {
  importEntity(
    entity: $entity,
    data: $data
  ) {
    status
    error
    message
    id
  }
}
Variables
{"entity": "xyz789", "data": [{}]}
Response
{
  "data": {
    "importEntity": {
      "status": true,
      "error": "abc123",
      "message": "abc123",
      "id": "xyz789"
    }
  }
}

incrementPageviewCount

Response

Returns a Boolean!

Example

Query
mutation incrementPageviewCount {
  incrementPageviewCount
}
Response
{"data": {"incrementPageviewCount": true}}

notificationConfig

Response

Returns a NotificationConfigDto!

Arguments
Name Description
config - NotificationConfigInput!

Example

Query
mutation notificationConfig($config: NotificationConfigInput!) {
  notificationConfig(config: $config) {
    ticketPush
    ticketEmail
  }
}
Variables
{"config": NotificationConfigInput}
Response
{"data": {"notificationConfig": {"ticketPush": false, "ticketEmail": false}}}

processAssetRequest

Response

Returns a Boolean!

Arguments
Name Description
requests - [AssetRequestItem!]

Example

Query
mutation processAssetRequest($requests: [AssetRequestItem!]) {
  processAssetRequest(requests: $requests)
}
Variables
{"requests": [AssetRequestItem]}
Response
{"data": {"processAssetRequest": true}}

processRegistrationRequest

Response

Returns a RegistrationRequest!

Arguments
Name Description
id - HashedId!
activationRoute - String!
denialMessage - String
username - String
targetGroup - RequestGroupInput

Example

Query
mutation processRegistrationRequest(
  $id: HashedId!,
  $activationRoute: String!,
  $denialMessage: String,
  $username: String,
  $targetGroup: RequestGroupInput
) {
  processRegistrationRequest(
    id: $id,
    activationRoute: $activationRoute,
    denialMessage: $denialMessage,
    username: $username,
    targetGroup: $targetGroup
  ) {
    id
    created
    updated
    forGroupId
    firstname
    lastname
    email
    phone
    companyAddress
    customerNumber
    dealerName
    groupName
    acceptedTermsVersionId
    salesRepresentative
    vatNumber
    languageId
    isProcessed
    isActive
    resultingUserId
    isDenied
    denialMessage
    processedByUserId
    resultingGroupId
    assetsCount
    forGroup {
      ...GroupFragment
    }
    resultingUser {
      ...UserFragment
    }
    processedByUser {
      ...UserFragment
    }
    resultingGroup {
      ...GroupFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "activationRoute": "abc123",
  "denialMessage": "abc123",
  "username": "xyz789",
  "targetGroup": RequestGroupInput
}
Response
{
  "data": {
    "processRegistrationRequest": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "forGroupId": HashedId,
      "firstname": "xyz789",
      "lastname": "abc123",
      "email": "abc123",
      "phone": "xyz789",
      "companyAddress": "abc123",
      "customerNumber": "xyz789",
      "dealerName": "xyz789",
      "groupName": "abc123",
      "acceptedTermsVersionId": HashedId,
      "salesRepresentative": "abc123",
      "vatNumber": "abc123",
      "languageId": HashedId,
      "isProcessed": false,
      "isActive": true,
      "resultingUserId": HashedId,
      "isDenied": false,
      "denialMessage": "xyz789",
      "processedByUserId": HashedId,
      "resultingGroupId": HashedId,
      "assetsCount": 123,
      "forGroup": Group,
      "resultingUser": User,
      "processedByUser": User,
      "resultingGroup": Group
    }
  }
}

refreshTicketServiceResponse

Response

Returns a Ticket!

Arguments
Name Description
id - HashedId!

Example

Query
mutation refreshTicketServiceResponse($id: HashedId!) {
  refreshTicketServiceResponse(id: $id) {
    id
    created
    updated
    content
    uuid
    serviceResponseId
    createdByUserId
    createdByGroupId
    procedureInstanceId
    titleId
    serviceId
    ticketId
    assignee {
      ...ProcessHandlerFragment
    }
    responsibles {
      ...ProcessHandlerFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    currentState {
      ...TicketCurrentStateFragment
    }
    ticketComments {
      ...TicketCommentFragment
    }
    associatedAssets {
      ...AssetFragment
    }
    documents {
      ...DocumentFragment
    }
    pdfCertificateLink {
      ...DocumentFragment
    }
    service {
      ...ServiceFragment
    }
    title {
      ...TranslationFragment
    }
    lastStatusChange
    notifications {
      ...NotificationFilterFragment
    }
    batteryCosts
    certificationCosts
    consumablesCosts
    fuelCosts
    insuranceTaxesCosts
    laborCosts
    logisticsCosts
    otherCosts
    repairCosts
    sparePartsCosts
    ticketTimeline {
      ...TicketTimelineFragment
    }
    totalCosts
    urgency
    procedureInstance {
      ...ProcedureInstanceFragment
    }
    associatedSites {
      ...SiteFragment
    }
    associatedAssetCategories {
      ...AssetCategoryFragment
    }
    associatedAssetTypes {
      ...AssetTypeFragment
    }
    ticketContent {
      ...TicketContentFieldFragment
    }
    activityEvents {
      ... on TicketHandlerUpdate {
        ...TicketHandlerUpdateFragment
      }
      ... on TicketUrgencyUpdate {
        ...TicketUrgencyUpdateFragment
      }
      ... on TicketAssetCheckComplete {
        ...TicketAssetCheckCompleteFragment
      }
      ... on TicketAssetSiteUpdate {
        ...TicketAssetSiteUpdateFragment
      }
      ... on TicketAssetAvailabilityUpdate {
        ...TicketAssetAvailabilityUpdateFragment
      }
    }
    automationDetails {
      ...TicketAutomationDetailsFragment
    }
  }
}
Variables
{"id": HashedId}
Response
{
  "data": {
    "refreshTicketServiceResponse": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "content": {},
      "uuid": "abc123",
      "serviceResponseId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "procedureInstanceId": HashedId,
      "titleId": HashedId,
      "serviceId": HashedId,
      "ticketId": 123,
      "assignee": ProcessHandler,
      "responsibles": [ProcessHandler],
      "createdByUser": User,
      "createdByGroup": Group,
      "currentState": TicketCurrentState,
      "ticketComments": [TicketComment],
      "associatedAssets": [Asset],
      "documents": [Document],
      "pdfCertificateLink": Document,
      "service": Service,
      "title": Translation,
      "lastStatusChange": 1592577642,
      "notifications": NotificationFilter,
      "batteryCosts": "xyz789",
      "certificationCosts": "abc123",
      "consumablesCosts": "abc123",
      "fuelCosts": "abc123",
      "insuranceTaxesCosts": "xyz789",
      "laborCosts": "xyz789",
      "logisticsCosts": "abc123",
      "otherCosts": "abc123",
      "repairCosts": "abc123",
      "sparePartsCosts": "xyz789",
      "ticketTimeline": TicketTimeline,
      "totalCosts": "xyz789",
      "urgency": "CRITICAL",
      "procedureInstance": ProcedureInstance,
      "associatedSites": [Site],
      "associatedAssetCategories": [AssetCategory],
      "associatedAssetTypes": [AssetType],
      "ticketContent": [TicketContentField],
      "activityEvents": [TicketHandlerUpdate],
      "automationDetails": TicketAutomationDetails
    }
  }
}

registerAssetRequest

Response

Returns a Boolean!

Arguments
Name Description
requests - [RequestForAsset!]

Example

Query
mutation registerAssetRequest($requests: [RequestForAsset!]) {
  registerAssetRequest(requests: $requests)
}
Variables
{"requests": [RequestForAsset]}
Response
{"data": {"registerAssetRequest": true}}

removeCheckSchedule

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation removeCheckSchedule($id: HashedId!) {
  removeCheckSchedule(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"removeCheckSchedule": true}}

removeHandlerById

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation removeHandlerById($id: HashedId!) {
  removeHandlerById(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"removeHandlerById": false}}

removeMaintenanceSchedule

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!

Example

Query
mutation removeMaintenanceSchedule($id: HashedId!) {
  removeMaintenanceSchedule(id: $id)
}
Variables
{"id": HashedId}
Response
{"data": {"removeMaintenanceSchedule": true}}

removePushToken

Response

Returns a Boolean!

Arguments
Name Description
deviceId - String!

Example

Query
mutation removePushToken($deviceId: String!) {
  removePushToken(deviceId: $deviceId)
}
Variables
{"deviceId": "xyz789"}
Response
{"data": {"removePushToken": true}}

removeTicketRelation

use "removeHandlerById" instead
Response

Returns a Boolean!

Arguments
Name Description
ticketId - HashedId!
relationId - HashedId!

Example

Query
mutation removeTicketRelation(
  $ticketId: HashedId!,
  $relationId: HashedId!
) {
  removeTicketRelation(
    ticketId: $ticketId,
    relationId: $relationId
  )
}
Variables
{
  "ticketId": HashedId,
  "relationId": HashedId
}
Response
{"data": {"removeTicketRelation": true}}

reorderAllViews

Description

set the order for all views for the logged in user

Response

Returns [HashedId!]!

Arguments
Name Description
viewIds - [HashedId!]!

Example

Query
mutation reorderAllViews($viewIds: [HashedId!]!) {
  reorderAllViews(viewIds: $viewIds)
}
Variables
{"viewIds": [HashedId]}
Response
{"data": {"reorderAllViews": [HashedId]}}

rescheduleAssetEvent

Response

Returns an Event!

Arguments
Name Description
input - EventRescheduleInput!

Example

Query
mutation rescheduleAssetEvent($input: EventRescheduleInput!) {
  rescheduleAssetEvent(input: $input) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{"input": EventRescheduleInput}
Response
{
  "data": {
    "rescheduleAssetEvent": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "abc123",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": true,
      "isImmediateNotification": true,
      "shouldNotify": true,
      "manualDeactivation": true,
      "isOngoing": false,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 987,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "xyz789",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

resetNotificationCounter

Response

Returns a Boolean

Arguments
Name Description
deviceId - String!

Example

Query
mutation resetNotificationCounter($deviceId: String!) {
  resetNotificationCounter(deviceId: $deviceId)
}
Variables
{"deviceId": "abc123"}
Response
{"data": {"resetNotificationCounter": false}}

runIntegrationProvider

Response

Returns a Boolean

Arguments
Name Description
name - IntegrationNamesEnum!

Example

Query
mutation runIntegrationProvider($name: IntegrationNamesEnum!) {
  runIntegrationProvider(name: $name)
}
Variables
{"name": "WISAG"}
Response
{"data": {"runIntegrationProvider": false}}

savePushToken

Response

Returns a Boolean!

Arguments
Name Description
token - String!
deviceId - String!
platform - PushPlatformTypeEnum!

Example

Query
mutation savePushToken(
  $token: String!,
  $deviceId: String!,
  $platform: PushPlatformTypeEnum!
) {
  savePushToken(
    token: $token,
    deviceId: $deviceId,
    platform: $platform
  )
}
Variables
{
  "token": "xyz789",
  "deviceId": "xyz789",
  "platform": "ANDROID"
}
Response
{"data": {"savePushToken": true}}

sendTestPushNotification

Response

Returns a Boolean

Example

Query
mutation sendTestPushNotification {
  sendTestPushNotification
}
Response
{"data": {"sendTestPushNotification": false}}

setCustomFieldsValues

Response

Returns [CustomFieldValue!]!

Arguments
Name Description
values - [CustomFieldsValuesSetInput!]!

Example

Query
mutation setCustomFieldsValues($values: [CustomFieldsValuesSetInput!]!) {
  setCustomFieldsValues(values: $values) {
    id
    created
    updated
    customFieldId
    assetId
    textValueId
    numberValue
    dateValue
    currencyValue
    textValue {
      ...TranslationFragment
    }
  }
}
Variables
{"values": [CustomFieldsValuesSetInput]}
Response
{
  "data": {
    "setCustomFieldsValues": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "customFieldId": HashedId,
        "assetId": HashedId,
        "textValueId": HashedId,
        "numberValue": 987.65,
        "dateValue": "2007-12-03",
        "currencyValue": 987.65,
        "textValue": Translation
      }
    ]
  }
}

setViewActive

Description

Set whether a view is active for the current user and return new activation status.

Response

Returns a Boolean!

Arguments
Name Description
view - IdInput!
active - Boolean! Default = true

Example

Query
mutation setViewActive(
  $view: IdInput!,
  $active: Boolean!
) {
  setViewActive(
    view: $view,
    active: $active
  )
}
Variables
{"view": IdInput, "active": true}
Response
{"data": {"setViewActive": true}}

setupBrand

Response

Returns a Brand!

Arguments
Name Description
input - BrandUpsertInput!

Example

Query
mutation setupBrand($input: BrandUpsertInput!) {
  setupBrand(input: $input) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{"input": BrandUpsertInput}
Response
{
  "data": {
    "setupBrand": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "logoWidth": 987,
      "key": "xyz789",
      "systemName": "abc123",
      "colorDark": "abc123",
      "colorLight": "xyz789",
      "faviconUrl": "abc123",
      "loginBackground": "abc123",
      "name": "xyz789",
      "appUrlAndroid": "abc123",
      "appUrlIos": "xyz789",
      "logo": "abc123",
      "color": "xyz789",
      "symbol": "abc123",
      "ownURL": "xyz789",
      "supportEmail": "xyz789",
      "activationMailVideo": "xyz789",
      "logoIsSquare": true,
      "group": Group,
      "sso": "2007-12-03T10:15:30Z",
      "loginLanguageFallback": HashedId,
      "projects": "abc123"
    }
  }
}

stopEvent

Response

Returns an Event

Arguments
Name Description
id - HashedId!
date - Date

Example

Query
mutation stopEvent(
  $id: HashedId!,
  $date: Date
) {
  stopEvent(
    id: $id,
    date: $date
  ) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "date": "2007-12-03"
}
Response
{
  "data": {
    "stopEvent": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "xyz789",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": true,
      "isImmediateNotification": true,
      "shouldNotify": true,
      "manualDeactivation": false,
      "isOngoing": false,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 987,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "xyz789",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

toggleCronByIntegrationProvider

Response

Returns a Boolean

Arguments
Name Description
name - IntegrationNamesEnum!

Example

Query
mutation toggleCronByIntegrationProvider($name: IntegrationNamesEnum!) {
  toggleCronByIntegrationProvider(name: $name)
}
Variables
{"name": "WISAG"}
Response
{"data": {"toggleCronByIntegrationProvider": false}}

unassignServicesFromServicePackage

Response

Returns a Boolean!

Arguments
Name Description
servicePackageId - HashedId!
serviceIds - [HashedId!]!

Example

Query
mutation unassignServicesFromServicePackage(
  $servicePackageId: HashedId!,
  $serviceIds: [HashedId!]!
) {
  unassignServicesFromServicePackage(
    servicePackageId: $servicePackageId,
    serviceIds: $serviceIds
  )
}
Variables
{
  "servicePackageId": HashedId,
  "serviceIds": [HashedId]
}
Response
{"data": {"unassignServicesFromServicePackage": false}}

updateAsset

Response

Returns [Asset!]

Arguments
Name Description
allowReservations - Boolean
assetTypeId - HashedId Set this to update the site's type
assignedToGroupId - HashedId
assignedToSiteId - HashedId Set this to assign the asset to a different site, set to null to unassign
availability - AssetAvailability
BLE - String
client - String
commissionDate - Date
costCenter - String
currency - String
customerEditable - Boolean
description - TranslationInput
disableWebhooks - Boolean
externalId - String External id should only be filled by a machine. This is used to couple an external asset with an internal asset. An external Asset is an asset that represents the same physical thing but in a different system.
fixedAssetNumber - String
floorRoom - String
id - HashedId!
imei - String
initialValue - String
inventoryNumber - String
isInStationaryGateway - Boolean
leasingCostTermination - String
leasingEnd - Date
leasingLevel - String
leasingMonthlyCost - String
leasingPartner - String
leasingPartnerContractNumber - String
leasingPartnerContractPositionNumber - String
leasingRenewalDate - Date
leasingRenewalRate - String
leasingStart - Date
optionalAssetID - String
ownership - AssetOwnership
parameterOffsets - [AssetParameterOffsetInput!]
partsNumber - String Specific identifier of a certain part of an asset
previousSiteId - HashedId
projectNumber - String
purchaseCost - String
purchaseDepriciation - Int
purchaseInvoiceNumber - String
purchaseLowValueAsset - Boolean
purchaseStart - Date
purchaseWarrantyEnd - Date
purchaseWarrantyPeriod - Int
purchaseWarrantyStart - Date
qrAttached - Boolean
quantity - Int
rentalCostTermination - String
rentalEnd - Date
rentalMonthlyCost - String
rentalRenewalDate - Date
rentalRenewalRate - String
rentalStart - Date
responsiblePerson - String
serial - String
serviceContract - Boolean
serviceContractCostPerYear - String
serviceContractDocuments - [Upload!]
serviceContractEmail - String
serviceContractEnd - Date
serviceContractFrom - Timestamp
serviceContractLevel - String
serviceContractPartner - String
serviceContractStart - Date
serviceContractTo - Timestamp
subscription - String Change service tier for this asset. See SubscriptionPlan for a full list of services - only submit the name.
supplier - String
syncSiteGroup - Boolean
workingHoursNotification - [RuleNotificationRelationInput] When a working hours event happens, send notifications to these entities
workingHoursSettings - JSON Updates a working hour setting. See Rules schema for syntax. Set to null to remove working hours.
transferModule - Boolean If set, the asset will be became primary asset of the IOT module with the given IMEI.

Example

Query
mutation updateAsset(
  $allowReservations: Boolean,
  $assetTypeId: HashedId,
  $assignedToGroupId: HashedId,
  $assignedToSiteId: HashedId,
  $availability: AssetAvailability,
  $BLE: String,
  $client: String,
  $commissionDate: Date,
  $costCenter: String,
  $currency: String,
  $customerEditable: Boolean,
  $description: TranslationInput,
  $disableWebhooks: Boolean,
  $externalId: String,
  $fixedAssetNumber: String,
  $floorRoom: String,
  $id: HashedId!,
  $imei: String,
  $initialValue: String,
  $inventoryNumber: String,
  $isInStationaryGateway: Boolean,
  $leasingCostTermination: String,
  $leasingEnd: Date,
  $leasingLevel: String,
  $leasingMonthlyCost: String,
  $leasingPartner: String,
  $leasingPartnerContractNumber: String,
  $leasingPartnerContractPositionNumber: String,
  $leasingRenewalDate: Date,
  $leasingRenewalRate: String,
  $leasingStart: Date,
  $optionalAssetID: String,
  $ownership: AssetOwnership,
  $parameterOffsets: [AssetParameterOffsetInput!],
  $partsNumber: String,
  $previousSiteId: HashedId,
  $projectNumber: String,
  $purchaseCost: String,
  $purchaseDepriciation: Int,
  $purchaseInvoiceNumber: String,
  $purchaseLowValueAsset: Boolean,
  $purchaseStart: Date,
  $purchaseWarrantyEnd: Date,
  $purchaseWarrantyPeriod: Int,
  $purchaseWarrantyStart: Date,
  $qrAttached: Boolean,
  $quantity: Int,
  $rentalCostTermination: String,
  $rentalEnd: Date,
  $rentalMonthlyCost: String,
  $rentalRenewalDate: Date,
  $rentalRenewalRate: String,
  $rentalStart: Date,
  $responsiblePerson: String,
  $serial: String,
  $serviceContract: Boolean,
  $serviceContractCostPerYear: String,
  $serviceContractDocuments: [Upload!],
  $serviceContractEmail: String,
  $serviceContractEnd: Date,
  $serviceContractFrom: Timestamp,
  $serviceContractLevel: String,
  $serviceContractPartner: String,
  $serviceContractStart: Date,
  $serviceContractTo: Timestamp,
  $subscription: String,
  $supplier: String,
  $syncSiteGroup: Boolean,
  $workingHoursNotification: [RuleNotificationRelationInput],
  $workingHoursSettings: JSON,
  $transferModule: Boolean
) {
  updateAsset(
    allowReservations: $allowReservations,
    assetTypeId: $assetTypeId,
    assignedToGroupId: $assignedToGroupId,
    assignedToSiteId: $assignedToSiteId,
    availability: $availability,
    BLE: $BLE,
    client: $client,
    commissionDate: $commissionDate,
    costCenter: $costCenter,
    currency: $currency,
    customerEditable: $customerEditable,
    description: $description,
    disableWebhooks: $disableWebhooks,
    externalId: $externalId,
    fixedAssetNumber: $fixedAssetNumber,
    floorRoom: $floorRoom,
    id: $id,
    imei: $imei,
    initialValue: $initialValue,
    inventoryNumber: $inventoryNumber,
    isInStationaryGateway: $isInStationaryGateway,
    leasingCostTermination: $leasingCostTermination,
    leasingEnd: $leasingEnd,
    leasingLevel: $leasingLevel,
    leasingMonthlyCost: $leasingMonthlyCost,
    leasingPartner: $leasingPartner,
    leasingPartnerContractNumber: $leasingPartnerContractNumber,
    leasingPartnerContractPositionNumber: $leasingPartnerContractPositionNumber,
    leasingRenewalDate: $leasingRenewalDate,
    leasingRenewalRate: $leasingRenewalRate,
    leasingStart: $leasingStart,
    optionalAssetID: $optionalAssetID,
    ownership: $ownership,
    parameterOffsets: $parameterOffsets,
    partsNumber: $partsNumber,
    previousSiteId: $previousSiteId,
    projectNumber: $projectNumber,
    purchaseCost: $purchaseCost,
    purchaseDepriciation: $purchaseDepriciation,
    purchaseInvoiceNumber: $purchaseInvoiceNumber,
    purchaseLowValueAsset: $purchaseLowValueAsset,
    purchaseStart: $purchaseStart,
    purchaseWarrantyEnd: $purchaseWarrantyEnd,
    purchaseWarrantyPeriod: $purchaseWarrantyPeriod,
    purchaseWarrantyStart: $purchaseWarrantyStart,
    qrAttached: $qrAttached,
    quantity: $quantity,
    rentalCostTermination: $rentalCostTermination,
    rentalEnd: $rentalEnd,
    rentalMonthlyCost: $rentalMonthlyCost,
    rentalRenewalDate: $rentalRenewalDate,
    rentalRenewalRate: $rentalRenewalRate,
    rentalStart: $rentalStart,
    responsiblePerson: $responsiblePerson,
    serial: $serial,
    serviceContract: $serviceContract,
    serviceContractCostPerYear: $serviceContractCostPerYear,
    serviceContractDocuments: $serviceContractDocuments,
    serviceContractEmail: $serviceContractEmail,
    serviceContractEnd: $serviceContractEnd,
    serviceContractFrom: $serviceContractFrom,
    serviceContractLevel: $serviceContractLevel,
    serviceContractPartner: $serviceContractPartner,
    serviceContractStart: $serviceContractStart,
    serviceContractTo: $serviceContractTo,
    subscription: $subscription,
    supplier: $supplier,
    syncSiteGroup: $syncSiteGroup,
    workingHoursNotification: $workingHoursNotification,
    workingHoursSettings: $workingHoursSettings,
    transferModule: $transferModule
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{
  "allowReservations": true,
  "assetTypeId": HashedId,
  "assignedToGroupId": HashedId,
  "assignedToSiteId": HashedId,
  "availability": "READY_TO_USE",
  "BLE": "abc123",
  "client": "xyz789",
  "commissionDate": "2007-12-03",
  "costCenter": "xyz789",
  "currency": "xyz789",
  "customerEditable": true,
  "description": TranslationInput,
  "disableWebhooks": true,
  "externalId": "abc123",
  "fixedAssetNumber": "abc123",
  "floorRoom": "abc123",
  "id": HashedId,
  "imei": "abc123",
  "initialValue": "abc123",
  "inventoryNumber": "xyz789",
  "isInStationaryGateway": false,
  "leasingCostTermination": "xyz789",
  "leasingEnd": "2007-12-03",
  "leasingLevel": "abc123",
  "leasingMonthlyCost": "abc123",
  "leasingPartner": "xyz789",
  "leasingPartnerContractNumber": "abc123",
  "leasingPartnerContractPositionNumber": "xyz789",
  "leasingRenewalDate": "2007-12-03",
  "leasingRenewalRate": "xyz789",
  "leasingStart": "2007-12-03",
  "optionalAssetID": "xyz789",
  "ownership": "PURCHASE",
  "parameterOffsets": [AssetParameterOffsetInput],
  "partsNumber": "xyz789",
  "previousSiteId": HashedId,
  "projectNumber": "xyz789",
  "purchaseCost": "abc123",
  "purchaseDepriciation": 987,
  "purchaseInvoiceNumber": "abc123",
  "purchaseLowValueAsset": false,
  "purchaseStart": "2007-12-03",
  "purchaseWarrantyEnd": "2007-12-03",
  "purchaseWarrantyPeriod": 123,
  "purchaseWarrantyStart": "2007-12-03",
  "qrAttached": false,
  "quantity": 123,
  "rentalCostTermination": "abc123",
  "rentalEnd": "2007-12-03",
  "rentalMonthlyCost": "abc123",
  "rentalRenewalDate": "2007-12-03",
  "rentalRenewalRate": "xyz789",
  "rentalStart": "2007-12-03",
  "responsiblePerson": "xyz789",
  "serial": "xyz789",
  "serviceContract": true,
  "serviceContractCostPerYear": "abc123",
  "serviceContractDocuments": [Upload],
  "serviceContractEmail": "xyz789",
  "serviceContractEnd": "2007-12-03",
  "serviceContractFrom": 1592577642,
  "serviceContractLevel": "abc123",
  "serviceContractPartner": "xyz789",
  "serviceContractStart": "2007-12-03",
  "serviceContractTo": 1592577642,
  "subscription": "abc123",
  "supplier": "abc123",
  "syncSiteGroup": false,
  "workingHoursNotification": [
    RuleNotificationRelationInput
  ],
  "workingHoursSettings": {},
  "transferModule": false
}
Response
{
  "data": {
    "updateAsset": [
      {
        "publicId": 987,
        "isCommodity": true,
        "moduleId": HashedId,
        "assignedToGroupId": HashedId,
        "allowReservations": true,
        "assetCategoryId": HashedId,
        "assetTypeId": HashedId,
        "assignment": "abc123",
        "availabilityId": HashedId,
        "BLE": "abc123",
        "client": "xyz789",
        "commissionDate": "2007-12-03",
        "costCenter": "xyz789",
        "created": 1592577642,
        "createdByGroupId": HashedId,
        "currency": "abc123",
        "customer": "abc123",
        "customerEditable": false,
        "descriptionId": HashedId,
        "externalId": "abc123",
        "fixedAssetNumber": "abc123",
        "floorRoom": "abc123",
        "image": "abc123",
        "initialValue": "xyz789",
        "inventoryNumber": "abc123",
        "isInStationaryGateway": true,
        "isLocked": false,
        "leasingCostTermination": "abc123",
        "leasingEnd": "2007-12-03",
        "leasingLevel": "xyz789",
        "leasingMonthlyCost": "abc123",
        "leasingPartner": "abc123",
        "leasingPartnerContractNumber": "xyz789",
        "leasingPartnerContractPositionNumber": "abc123",
        "leasingRenewalDate": "2007-12-03",
        "leasingRenewalRate": "xyz789",
        "leasingStart": "2007-12-03",
        "manufacturerId": HashedId,
        "optionalAssetID": "abc123",
        "ownershipId": HashedId,
        "partsNumber": "abc123",
        "previousSiteId": HashedId,
        "projectNumber": "abc123",
        "purchaseCost": "abc123",
        "purchaseDepriciation": 987,
        "purchaseInvoiceNumber": "abc123",
        "purchaseLowValueAsset": true,
        "purchaseStart": "2007-12-03",
        "purchaseWarrantyEnd": "2007-12-03",
        "purchaseWarrantyPeriod": 123,
        "purchaseWarrantyStart": "2007-12-03",
        "qrAttached": true,
        "quantity": 123,
        "rentalCostTermination": "xyz789",
        "rentalEnd": "2007-12-03",
        "rentalMonthlyCost": "abc123",
        "rentalRenewalDate": "2007-12-03",
        "rentalRenewalRate": "xyz789",
        "rentalStart": "2007-12-03",
        "responsiblePerson": "xyz789",
        "runtimeWithOffsetInSeconds": 987,
        "serial": "abc123",
        "serviceContract": false,
        "serviceContractCostPerYear": "xyz789",
        "serviceContractEmail": "abc123",
        "serviceContractEnd": "2007-12-03",
        "serviceContractFrom": 1592577642,
        "serviceContractLevel": "abc123",
        "serviceContractPartner": "abc123",
        "serviceContractStart": "2007-12-03",
        "serviceContractTo": 1592577642,
        "siteId": HashedId,
        "assignedToSiteId": HashedId,
        "supplier": "abc123",
        "updated": 1592577642,
        "uuid": "xyz789",
        "id": HashedId,
        "stateV2": [AssetStateItem],
        "state": AssetState,
        "serviceContractDocuments": [Document],
        "availability": "READY_TO_USE",
        "ownership": "PURCHASE",
        "module": Module,
        "scanTime": "2007-12-03",
        "imei": "abc123",
        "costsSum": 123.45,
        "costsSumBattery": 987.65,
        "costsSumRepair": 123.45,
        "costsSumMaintenance": 987.65,
        "costsSumParts": 123.45,
        "costsSumConsumables": 123.45,
        "costsSumFuel": 987.65,
        "costsSumLabor": 987.65,
        "costsSumLogistics": 987.65,
        "costsSumTaxes": 123.45,
        "costsSumOther": 123.45,
        "costsSumCertification": 123.45,
        "parameterOffsetIds": [HashedId],
        "reservationIds": [HashedId],
        "moduleConnectionStatus": "primary",
        "relatedGroups": [RelatedGroup],
        "checkScheduleRule": AssetCheckScheduleRule,
        "tickets": [Ticket],
        "lastTicketDate": "2007-12-03T10:15:30Z",
        "totalUtilization": "xyz789",
        "totalWorkDone": "abc123",
        "purchaseCurrentBookValue": "xyz789",
        "batteryLevel": "abc123",
        "lastContacted": 1592577642,
        "vncTunnelUrl": "abc123",
        "subscription": "abc123",
        "ticketsCount": "abc123",
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "gatewayAsset": Asset,
        "services": [Service],
        "primaryServicePackage": ServicePackageWithSourceType,
        "eventIds": [HashedId],
        "nextService": 987,
        "downloadLink": "xyz789",
        "activity": AssetActivity,
        "latestAssetData": {},
        "location": Location,
        "parameterSets": [ParameterSet],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "status": [StatusItem],
        "displayParameters": [DisplayParameter],
        "latestTrip": AssetTripLatest,
        "unavailability": [AssetUnavailability],
        "reservations": [Reservation],
        "parameterOffsets": [AssetParameterOffset],
        "costs": [Cost],
        "manufacturer": Manufacturer,
        "createdByGroup": Group,
        "assetType": AssetType,
        "assetCategory": AssetCategory,
        "assignedToGroup": Group,
        "site": Site,
        "assignedToSite": Site,
        "assignedToPreviousSite": Site,
        "documents": [Document],
        "events": [Event],
        "description": Translation,
        "checkSchedule": AssetCheckSchedule,
        "maintenanceSchedule": AssetMaintenanceSchedule,
        "workOrders": [WorkOrderV2]
      }
    ]
  }
}

updateAssetCategory

Response

Returns [AssetCategory!]

Arguments
Name Description
externalId - String
groupId - HashedId
servicePackageId - HashedId
optimalBatteryVoltage - Float
minimalBatteryVoltage - Float
nominalBatteryVoltage - Float
parentParameterKey - AssetParentParameter
optimalRuntime - Float
workUnitsPerHour - Float
workUnits - TranslationInput
isPrivate - Boolean Listed to users outside this group hierarchy - "publicly" available. May be used for not yet released models
id - HashedId!
name - TranslationInput

Example

Query
mutation updateAssetCategory(
  $externalId: String,
  $groupId: HashedId,
  $servicePackageId: HashedId,
  $optimalBatteryVoltage: Float,
  $minimalBatteryVoltage: Float,
  $nominalBatteryVoltage: Float,
  $parentParameterKey: AssetParentParameter,
  $optimalRuntime: Float,
  $workUnitsPerHour: Float,
  $workUnits: TranslationInput,
  $isPrivate: Boolean,
  $id: HashedId!,
  $name: TranslationInput
) {
  updateAssetCategory(
    externalId: $externalId,
    groupId: $groupId,
    servicePackageId: $servicePackageId,
    optimalBatteryVoltage: $optimalBatteryVoltage,
    minimalBatteryVoltage: $minimalBatteryVoltage,
    nominalBatteryVoltage: $nominalBatteryVoltage,
    parentParameterKey: $parentParameterKey,
    optimalRuntime: $optimalRuntime,
    workUnitsPerHour: $workUnitsPerHour,
    workUnits: $workUnits,
    isPrivate: $isPrivate,
    id: $id,
    name: $name
  ) {
    id
    created
    updated
    image
    externalId
    forManufacturerId
    groupId
    servicePackageId
    isPrivate
    publicId
    nameId
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnitsPerHour
    workUnitId
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    workUnits {
      ...TranslationFragment
    }
    assetsCount
    servicePackage {
      ...ServicePackageFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{
  "externalId": "abc123",
  "groupId": HashedId,
  "servicePackageId": HashedId,
  "optimalBatteryVoltage": 987.65,
  "minimalBatteryVoltage": 987.65,
  "nominalBatteryVoltage": 987.65,
  "parentParameterKey": "runtime",
  "optimalRuntime": 987.65,
  "workUnitsPerHour": 987.65,
  "workUnits": TranslationInput,
  "isPrivate": true,
  "id": HashedId,
  "name": TranslationInput
}
Response
{
  "data": {
    "updateAssetCategory": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "image": "xyz789",
        "externalId": "abc123",
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "isPrivate": true,
        "publicId": 123,
        "nameId": HashedId,
        "minimalBatteryVoltage": 123.45,
        "nominalBatteryVoltage": 987.65,
        "optimalBatteryVoltage": 987.65,
        "optimalRuntime": 123.45,
        "parentParameterKey": "runtime",
        "workUnitsPerHour": 987.65,
        "workUnitId": HashedId,
        "name": Translation,
        "group": Group,
        "manufacturer": Manufacturer,
        "workUnits": Translation,
        "assetsCount": 987,
        "servicePackage": ServicePackage,
        "forManufacturer": Manufacturer
      }
    ]
  }
}

updateAssetCategoryImage

Description

Accepts jpg, jpeg, gif, png, webp, heic (case insensitive). Will be contained to a 500px square with white background. 3 images generated:

         - _2x for high dpi screens
                      
                               - no suffix, half of the default size, this url will be provided
                      
                               - _thumb - 100px thumbnail
                      
                               Send an empty value to remove the image.
                      
Response

Returns an AssetCategory!

Arguments
Name Description
id - HashedId!
file - Upload!

Example

Query
mutation updateAssetCategoryImage(
  $id: HashedId!,
  $file: Upload!
) {
  updateAssetCategoryImage(
    id: $id,
    file: $file
  ) {
    id
    created
    updated
    image
    externalId
    forManufacturerId
    groupId
    servicePackageId
    isPrivate
    publicId
    nameId
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnitsPerHour
    workUnitId
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    workUnits {
      ...TranslationFragment
    }
    assetsCount
    servicePackage {
      ...ServicePackageFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{"id": HashedId, "file": Upload}
Response
{
  "data": {
    "updateAssetCategoryImage": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "image": "abc123",
      "externalId": "xyz789",
      "forManufacturerId": HashedId,
      "groupId": HashedId,
      "servicePackageId": HashedId,
      "isPrivate": true,
      "publicId": 987,
      "nameId": HashedId,
      "minimalBatteryVoltage": 987.65,
      "nominalBatteryVoltage": 987.65,
      "optimalBatteryVoltage": 123.45,
      "optimalRuntime": 987.65,
      "parentParameterKey": "runtime",
      "workUnitsPerHour": 987.65,
      "workUnitId": HashedId,
      "name": Translation,
      "group": Group,
      "manufacturer": Manufacturer,
      "workUnits": Translation,
      "assetsCount": 987,
      "servicePackage": ServicePackage,
      "forManufacturer": Manufacturer
    }
  }
}

updateAssetEventView

Description

update an asset event view

Response

Returns an AssetEventView!

Arguments
Name Description
view - AssetEventViewUpdateInput!

Example

Query
mutation updateAssetEventView($view: AssetEventViewUpdateInput!) {
  updateAssetEventView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...AssetEventViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": AssetEventViewUpdateInput}
Response
{
  "data": {
    "updateAssetEventView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": AssetEventViewOptions,
      "isActive": true,
      "isSystemView": true,
      "isShared": true,
      "isEditable": true,
      "isDeletable": false,
      "isShareable": false,
      "isUnsharedByParentGroup": true,
      "title": Translation
    }
  }
}

updateAssetImage

Description

Accepts jpg, jpeg, gif, png, webp, heic (case insensitive). Will be contained to a 500px square with white background. 3 images generated:

  • _2x for high dpi screens
  • no suffix, half of the default size, this url will be provided
  • _thumb - 100px thumbnail Send an empty value to remove the image.
Response

Returns an Asset

Arguments
Name Description
id - HashedId!
file - Upload!

Example

Query
mutation updateAssetImage(
  $id: HashedId!,
  $file: Upload!
) {
  updateAssetImage(
    id: $id,
    file: $file
  ) {
    publicId
    isCommodity
    moduleId
    assignedToGroupId
    allowReservations
    assetCategoryId
    assetTypeId
    assignment
    availabilityId
    BLE
    client
    commissionDate
    costCenter
    created
    createdByGroupId
    currency
    customer
    customerEditable
    descriptionId
    externalId
    fixedAssetNumber
    floorRoom
    image
    initialValue
    inventoryNumber
    isInStationaryGateway
    isLocked
    leasingCostTermination
    leasingEnd
    leasingLevel
    leasingMonthlyCost
    leasingPartner
    leasingPartnerContractNumber
    leasingPartnerContractPositionNumber
    leasingRenewalDate
    leasingRenewalRate
    leasingStart
    manufacturerId
    optionalAssetID
    ownershipId
    partsNumber
    previousSiteId
    projectNumber
    purchaseCost
    purchaseDepriciation
    purchaseInvoiceNumber
    purchaseLowValueAsset
    purchaseStart
    purchaseWarrantyEnd
    purchaseWarrantyPeriod
    purchaseWarrantyStart
    qrAttached
    quantity
    rentalCostTermination
    rentalEnd
    rentalMonthlyCost
    rentalRenewalDate
    rentalRenewalRate
    rentalStart
    responsiblePerson
    runtimeWithOffsetInSeconds
    serial
    serviceContract
    serviceContractCostPerYear
    serviceContractEmail
    serviceContractEnd
    serviceContractFrom
    serviceContractLevel
    serviceContractPartner
    serviceContractStart
    serviceContractTo
    siteId
    assignedToSiteId
    supplier
    updated
    uuid
    id
    stateV2 {
      ...AssetStateItemFragment
    }
    state {
      ...AssetStateFragment
    }
    serviceContractDocuments {
      ...DocumentFragment
    }
    availability
    ownership
    module {
      ...ModuleFragment
    }
    scanTime
    imei
    costsSum
    costsSumBattery
    costsSumRepair
    costsSumMaintenance
    costsSumParts
    costsSumConsumables
    costsSumFuel
    costsSumLabor
    costsSumLogistics
    costsSumTaxes
    costsSumOther
    costsSumCertification
    parameterOffsetIds
    reservationIds
    moduleConnectionStatus
    relatedGroups {
      ...RelatedGroupFragment
    }
    checkScheduleRule {
      ...AssetCheckScheduleRuleFragment
    }
    tickets {
      ...TicketFragment
    }
    lastTicketDate
    totalUtilization
    totalWorkDone
    purchaseCurrentBookValue
    batteryLevel
    lastContacted
    vncTunnelUrl
    subscription
    ticketsCount
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    gatewayAsset {
      ...AssetFragment
    }
    services {
      ...ServiceFragment
    }
    primaryServicePackage {
      ...ServicePackageWithSourceTypeFragment
    }
    eventIds
    nextService
    downloadLink
    activity {
      ...AssetActivityFragment
    }
    latestAssetData
    location {
      ...LocationFragment
    }
    parameterSets {
      ...ParameterSetFragment
    }
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    status {
      ...StatusItemFragment
    }
    displayParameters {
      ...DisplayParameterFragment
    }
    latestTrip {
      ...AssetTripLatestFragment
    }
    unavailability {
      ...AssetUnavailabilityFragment
    }
    reservations {
      ...ReservationFragment
    }
    parameterOffsets {
      ...AssetParameterOffsetFragment
    }
    costs {
      ...CostFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assetType {
      ...AssetTypeFragment
    }
    assetCategory {
      ...AssetCategoryFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    site {
      ...SiteFragment
    }
    assignedToSite {
      ...SiteFragment
    }
    assignedToPreviousSite {
      ...SiteFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    description {
      ...TranslationFragment
    }
    checkSchedule {
      ...AssetCheckScheduleFragment
    }
    maintenanceSchedule {
      ...AssetMaintenanceScheduleFragment
    }
    workOrders {
      ...WorkOrderV2Fragment
    }
  }
}
Variables
{"id": HashedId, "file": Upload}
Response
{
  "data": {
    "updateAssetImage": {
      "publicId": 123,
      "isCommodity": false,
      "moduleId": HashedId,
      "assignedToGroupId": HashedId,
      "allowReservations": false,
      "assetCategoryId": HashedId,
      "assetTypeId": HashedId,
      "assignment": "xyz789",
      "availabilityId": HashedId,
      "BLE": "xyz789",
      "client": "abc123",
      "commissionDate": "2007-12-03",
      "costCenter": "abc123",
      "created": 1592577642,
      "createdByGroupId": HashedId,
      "currency": "abc123",
      "customer": "abc123",
      "customerEditable": false,
      "descriptionId": HashedId,
      "externalId": "abc123",
      "fixedAssetNumber": "xyz789",
      "floorRoom": "abc123",
      "image": "abc123",
      "initialValue": "abc123",
      "inventoryNumber": "abc123",
      "isInStationaryGateway": false,
      "isLocked": false,
      "leasingCostTermination": "xyz789",
      "leasingEnd": "2007-12-03",
      "leasingLevel": "xyz789",
      "leasingMonthlyCost": "xyz789",
      "leasingPartner": "abc123",
      "leasingPartnerContractNumber": "xyz789",
      "leasingPartnerContractPositionNumber": "abc123",
      "leasingRenewalDate": "2007-12-03",
      "leasingRenewalRate": "abc123",
      "leasingStart": "2007-12-03",
      "manufacturerId": HashedId,
      "optionalAssetID": "xyz789",
      "ownershipId": HashedId,
      "partsNumber": "xyz789",
      "previousSiteId": HashedId,
      "projectNumber": "abc123",
      "purchaseCost": "xyz789",
      "purchaseDepriciation": 123,
      "purchaseInvoiceNumber": "xyz789",
      "purchaseLowValueAsset": true,
      "purchaseStart": "2007-12-03",
      "purchaseWarrantyEnd": "2007-12-03",
      "purchaseWarrantyPeriod": 987,
      "purchaseWarrantyStart": "2007-12-03",
      "qrAttached": true,
      "quantity": 123,
      "rentalCostTermination": "abc123",
      "rentalEnd": "2007-12-03",
      "rentalMonthlyCost": "abc123",
      "rentalRenewalDate": "2007-12-03",
      "rentalRenewalRate": "abc123",
      "rentalStart": "2007-12-03",
      "responsiblePerson": "abc123",
      "runtimeWithOffsetInSeconds": 123,
      "serial": "xyz789",
      "serviceContract": true,
      "serviceContractCostPerYear": "xyz789",
      "serviceContractEmail": "abc123",
      "serviceContractEnd": "2007-12-03",
      "serviceContractFrom": 1592577642,
      "serviceContractLevel": "xyz789",
      "serviceContractPartner": "xyz789",
      "serviceContractStart": "2007-12-03",
      "serviceContractTo": 1592577642,
      "siteId": HashedId,
      "assignedToSiteId": HashedId,
      "supplier": "xyz789",
      "updated": 1592577642,
      "uuid": "abc123",
      "id": HashedId,
      "stateV2": [AssetStateItem],
      "state": AssetState,
      "serviceContractDocuments": [Document],
      "availability": "READY_TO_USE",
      "ownership": "PURCHASE",
      "module": Module,
      "scanTime": "2007-12-03",
      "imei": "xyz789",
      "costsSum": 123.45,
      "costsSumBattery": 123.45,
      "costsSumRepair": 123.45,
      "costsSumMaintenance": 123.45,
      "costsSumParts": 987.65,
      "costsSumConsumables": 987.65,
      "costsSumFuel": 123.45,
      "costsSumLabor": 123.45,
      "costsSumLogistics": 987.65,
      "costsSumTaxes": 123.45,
      "costsSumOther": 123.45,
      "costsSumCertification": 123.45,
      "parameterOffsetIds": [HashedId],
      "reservationIds": [HashedId],
      "moduleConnectionStatus": "primary",
      "relatedGroups": [RelatedGroup],
      "checkScheduleRule": AssetCheckScheduleRule,
      "tickets": [Ticket],
      "lastTicketDate": "2007-12-03T10:15:30Z",
      "totalUtilization": "xyz789",
      "totalWorkDone": "abc123",
      "purchaseCurrentBookValue": "xyz789",
      "batteryLevel": "abc123",
      "lastContacted": 1592577642,
      "vncTunnelUrl": "abc123",
      "subscription": "abc123",
      "ticketsCount": "abc123",
      "workingHoursSettings": {},
      "workingHoursNotification": [
        RuleNotificationRelation
      ],
      "gatewayAsset": Asset,
      "services": [Service],
      "primaryServicePackage": ServicePackageWithSourceType,
      "eventIds": [HashedId],
      "nextService": 123,
      "downloadLink": "xyz789",
      "activity": AssetActivity,
      "latestAssetData": {},
      "location": Location,
      "parameterSets": [ParameterSet],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "status": [StatusItem],
      "displayParameters": [DisplayParameter],
      "latestTrip": AssetTripLatest,
      "unavailability": [AssetUnavailability],
      "reservations": [Reservation],
      "parameterOffsets": [AssetParameterOffset],
      "costs": [Cost],
      "manufacturer": Manufacturer,
      "createdByGroup": Group,
      "assetType": AssetType,
      "assetCategory": AssetCategory,
      "assignedToGroup": Group,
      "site": Site,
      "assignedToSite": Site,
      "assignedToPreviousSite": Site,
      "documents": [Document],
      "events": [Event],
      "description": Translation,
      "checkSchedule": AssetCheckSchedule,
      "maintenanceSchedule": AssetMaintenanceSchedule,
      "workOrders": [WorkOrderV2]
    }
  }
}

updateAssetIntegrationById

Response

Returns an AssetIntegration!

Arguments
Name Description
id - HashedId!
input - AssetIntegrationUpdateInput!

Example

Query
mutation updateAssetIntegrationById(
  $id: HashedId!,
  $input: AssetIntegrationUpdateInput!
) {
  updateAssetIntegrationById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    name
    manufacturerId
    assetCategoryId
    assetCategory {
      ...AssetCategoryFragment
    }
    manufacturer {
      ...ManufacturerFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "input": AssetIntegrationUpdateInput
}
Response
{
  "data": {
    "updateAssetIntegrationById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "manufacturerId": HashedId,
      "assetCategoryId": HashedId,
      "assetCategory": AssetCategory,
      "manufacturer": Manufacturer
    }
  }
}

updateAssetLockStatus

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!
state - Boolean!

Example

Query
mutation updateAssetLockStatus(
  $id: HashedId!,
  $state: Boolean!
) {
  updateAssetLockStatus(
    id: $id,
    state: $state
  )
}
Variables
{"id": HashedId, "state": false}
Response
{"data": {"updateAssetLockStatus": true}}

updateAssetType

Response

Returns [AssetType]

Arguments
Name Description
optimalBatteryVoltage - Float
minimalBatteryVoltage - Float
nominalBatteryVoltage - Float
parentParameterKey - AssetParentParameter
optimalRuntime - Float
workUnitsPerHour - Float
workUnits - TranslationInput
externalId - String
groupId - HashedId
servicePackageId - HashedId
hasAssortmentList - Boolean
hasVNC - Boolean Certain assets can be accessed over a remote connection. This specifies if this type can be accessed over VNC.
image - String
inAssetIntegrationId - HashedId The asset integration that applies to this type
isApprovedAssetType - Boolean
isLockable - Boolean Certain Asset Types can be locked. This will then lock the asset
isLockedState - Boolean
isPollingAvailable - Boolean
isPrivate - Boolean Listed to users outside this group hierarchy - "publicly" available. May be used for not yet released models
isVehicle - Boolean
isRoom - Boolean
manufacturer - String
preset - Boolean
presetInitialValue - String
presetLeasingCostTermination - String
presetLeasingLevel - String
presetLeasingMonthlyCost - String
presetLeasingPartner - String
presetLeasingPartnerContractNumber - String
presetLeasingPartnerContractPositionNumber - String
presetLeasingRenewalRate - String
presetLowValueAsset - Boolean
presetMachineCheckLastCreated - Boolean
presetMachineCheckName - String
presetMachineCheckInterval - Int
presetOwnership - String
presetPurchaseCost - String
presetPurchaseDepriciation - Int
presetRentalCostTermination - String
presetRentalMonthlyCost - String
presetRentalRenewalRate - String
presetServiceContractCostPerYear - String
presetServiceContractEmail - String
presetServiceContractLevel - String
presetServiceContractPartner - String
presetSupplier - String
presetWarrantyPeriod - Int
restrictedType - Boolean
suggestedServicePartner - String
id - HashedId!
name - TranslationInput
inAssetCategoryId - HashedId

Example

Query
mutation updateAssetType(
  $optimalBatteryVoltage: Float,
  $minimalBatteryVoltage: Float,
  $nominalBatteryVoltage: Float,
  $parentParameterKey: AssetParentParameter,
  $optimalRuntime: Float,
  $workUnitsPerHour: Float,
  $workUnits: TranslationInput,
  $externalId: String,
  $groupId: HashedId,
  $servicePackageId: HashedId,
  $hasAssortmentList: Boolean,
  $hasVNC: Boolean,
  $image: String,
  $inAssetIntegrationId: HashedId,
  $isApprovedAssetType: Boolean,
  $isLockable: Boolean,
  $isLockedState: Boolean,
  $isPollingAvailable: Boolean,
  $isPrivate: Boolean,
  $isVehicle: Boolean,
  $isRoom: Boolean,
  $manufacturer: String,
  $preset: Boolean,
  $presetInitialValue: String,
  $presetLeasingCostTermination: String,
  $presetLeasingLevel: String,
  $presetLeasingMonthlyCost: String,
  $presetLeasingPartner: String,
  $presetLeasingPartnerContractNumber: String,
  $presetLeasingPartnerContractPositionNumber: String,
  $presetLeasingRenewalRate: String,
  $presetLowValueAsset: Boolean,
  $presetMachineCheckLastCreated: Boolean,
  $presetMachineCheckName: String,
  $presetMachineCheckInterval: Int,
  $presetOwnership: String,
  $presetPurchaseCost: String,
  $presetPurchaseDepriciation: Int,
  $presetRentalCostTermination: String,
  $presetRentalMonthlyCost: String,
  $presetRentalRenewalRate: String,
  $presetServiceContractCostPerYear: String,
  $presetServiceContractEmail: String,
  $presetServiceContractLevel: String,
  $presetServiceContractPartner: String,
  $presetSupplier: String,
  $presetWarrantyPeriod: Int,
  $restrictedType: Boolean,
  $suggestedServicePartner: String,
  $id: HashedId!,
  $name: TranslationInput,
  $inAssetCategoryId: HashedId
) {
  updateAssetType(
    optimalBatteryVoltage: $optimalBatteryVoltage,
    minimalBatteryVoltage: $minimalBatteryVoltage,
    nominalBatteryVoltage: $nominalBatteryVoltage,
    parentParameterKey: $parentParameterKey,
    optimalRuntime: $optimalRuntime,
    workUnitsPerHour: $workUnitsPerHour,
    workUnits: $workUnits,
    externalId: $externalId,
    groupId: $groupId,
    servicePackageId: $servicePackageId,
    hasAssortmentList: $hasAssortmentList,
    hasVNC: $hasVNC,
    image: $image,
    inAssetIntegrationId: $inAssetIntegrationId,
    isApprovedAssetType: $isApprovedAssetType,
    isLockable: $isLockable,
    isLockedState: $isLockedState,
    isPollingAvailable: $isPollingAvailable,
    isPrivate: $isPrivate,
    isVehicle: $isVehicle,
    isRoom: $isRoom,
    manufacturer: $manufacturer,
    preset: $preset,
    presetInitialValue: $presetInitialValue,
    presetLeasingCostTermination: $presetLeasingCostTermination,
    presetLeasingLevel: $presetLeasingLevel,
    presetLeasingMonthlyCost: $presetLeasingMonthlyCost,
    presetLeasingPartner: $presetLeasingPartner,
    presetLeasingPartnerContractNumber: $presetLeasingPartnerContractNumber,
    presetLeasingPartnerContractPositionNumber: $presetLeasingPartnerContractPositionNumber,
    presetLeasingRenewalRate: $presetLeasingRenewalRate,
    presetLowValueAsset: $presetLowValueAsset,
    presetMachineCheckLastCreated: $presetMachineCheckLastCreated,
    presetMachineCheckName: $presetMachineCheckName,
    presetMachineCheckInterval: $presetMachineCheckInterval,
    presetOwnership: $presetOwnership,
    presetPurchaseCost: $presetPurchaseCost,
    presetPurchaseDepriciation: $presetPurchaseDepriciation,
    presetRentalCostTermination: $presetRentalCostTermination,
    presetRentalMonthlyCost: $presetRentalMonthlyCost,
    presetRentalRenewalRate: $presetRentalRenewalRate,
    presetServiceContractCostPerYear: $presetServiceContractCostPerYear,
    presetServiceContractEmail: $presetServiceContractEmail,
    presetServiceContractLevel: $presetServiceContractLevel,
    presetServiceContractPartner: $presetServiceContractPartner,
    presetSupplier: $presetSupplier,
    presetWarrantyPeriod: $presetWarrantyPeriod,
    restrictedType: $restrictedType,
    suggestedServicePartner: $suggestedServicePartner,
    id: $id,
    name: $name,
    inAssetCategoryId: $inAssetCategoryId
  ) {
    id
    created
    updated
    forManufacturerId
    groupId
    servicePackageId
    hasAssortmentList
    externalId
    image
    inAssetCategoryId
    inAssetIntegrationId
    isApprovedAssetType
    isPrivate
    isVehicle
    isRoom
    make
    publicId
    nameId
    restrictedType
    preset
    presetInitialValue
    presetLeasingCostTermination
    presetLeasingLevel
    presetLeasingMonthlyCost
    presetLeasingPartner
    presetLeasingPartnerContractNumber
    presetLeasingPartnerContractPositionNumber
    presetLeasingRenewalRate
    presetLowValueAsset
    presetMachineCheckInterval
    presetMachineCheckLastCreated
    presetMachineCheckName
    presetOwnership
    presetPurchaseCost
    presetPurchaseDepriciation
    presetRentalCostTermination
    presetRentalMonthlyCost
    presetRentalRenewalRate
    presetServiceContractCostPerYear
    presetServiceContractEmail
    presetServiceContractLevel
    presetServiceContractPartner
    presetSupplier
    presetWarrantyPeriod
    isLockable
    isLockedState
    lockAssetTypeId
    hasVNC
    isPollingAvailable
    name {
      ...TranslationFragment
    }
    documents {
      ...DocumentFragment
    }
    minimalBatteryVoltage
    nominalBatteryVoltage
    optimalBatteryVoltage
    optimalRuntime
    parentParameterKey
    workUnits {
      ...TranslationFragment
    }
    workUnitsPerHour
    workUnitId
    inAssetCategory {
      ...AssetCategoryFragment
    }
    group {
      ...GroupFragment
    }
    inAssetIntegration {
      ...AssetIntegrationFragment
    }
    forManufacturer {
      ...ManufacturerFragment
    }
    namespace
    assetsCount
    userManual
    suggestedServicePartner
    suggestedPartner {
      ...AvailableHandlerFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    lockAssetType {
      ...AssetTypeFragment
    }
  }
}
Variables
{
  "optimalBatteryVoltage": 123.45,
  "minimalBatteryVoltage": 123.45,
  "nominalBatteryVoltage": 987.65,
  "parentParameterKey": "runtime",
  "optimalRuntime": 987.65,
  "workUnitsPerHour": 123.45,
  "workUnits": TranslationInput,
  "externalId": "abc123",
  "groupId": HashedId,
  "servicePackageId": HashedId,
  "hasAssortmentList": false,
  "hasVNC": true,
  "image": "xyz789",
  "inAssetIntegrationId": HashedId,
  "isApprovedAssetType": true,
  "isLockable": true,
  "isLockedState": true,
  "isPollingAvailable": true,
  "isPrivate": true,
  "isVehicle": true,
  "isRoom": false,
  "manufacturer": "xyz789",
  "preset": true,
  "presetInitialValue": "xyz789",
  "presetLeasingCostTermination": "abc123",
  "presetLeasingLevel": "xyz789",
  "presetLeasingMonthlyCost": "abc123",
  "presetLeasingPartner": "abc123",
  "presetLeasingPartnerContractNumber": "abc123",
  "presetLeasingPartnerContractPositionNumber": "abc123",
  "presetLeasingRenewalRate": "abc123",
  "presetLowValueAsset": false,
  "presetMachineCheckLastCreated": false,
  "presetMachineCheckName": "abc123",
  "presetMachineCheckInterval": 987,
  "presetOwnership": "abc123",
  "presetPurchaseCost": "xyz789",
  "presetPurchaseDepriciation": 123,
  "presetRentalCostTermination": "xyz789",
  "presetRentalMonthlyCost": "xyz789",
  "presetRentalRenewalRate": "xyz789",
  "presetServiceContractCostPerYear": "abc123",
  "presetServiceContractEmail": "xyz789",
  "presetServiceContractLevel": "xyz789",
  "presetServiceContractPartner": "xyz789",
  "presetSupplier": "xyz789",
  "presetWarrantyPeriod": 987,
  "restrictedType": false,
  "suggestedServicePartner": "abc123",
  "id": HashedId,
  "name": TranslationInput,
  "inAssetCategoryId": HashedId
}
Response
{
  "data": {
    "updateAssetType": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "forManufacturerId": HashedId,
        "groupId": HashedId,
        "servicePackageId": HashedId,
        "hasAssortmentList": true,
        "externalId": "abc123",
        "image": "abc123",
        "inAssetCategoryId": HashedId,
        "inAssetIntegrationId": HashedId,
        "isApprovedAssetType": true,
        "isPrivate": true,
        "isVehicle": true,
        "isRoom": true,
        "make": "xyz789",
        "publicId": 987,
        "nameId": HashedId,
        "restrictedType": false,
        "preset": false,
        "presetInitialValue": "xyz789",
        "presetLeasingCostTermination": "xyz789",
        "presetLeasingLevel": "abc123",
        "presetLeasingMonthlyCost": "xyz789",
        "presetLeasingPartner": "xyz789",
        "presetLeasingPartnerContractNumber": "xyz789",
        "presetLeasingPartnerContractPositionNumber": "abc123",
        "presetLeasingRenewalRate": "abc123",
        "presetLowValueAsset": true,
        "presetMachineCheckInterval": 123,
        "presetMachineCheckLastCreated": false,
        "presetMachineCheckName": "abc123",
        "presetOwnership": "PURCHASE",
        "presetPurchaseCost": "xyz789",
        "presetPurchaseDepriciation": 123,
        "presetRentalCostTermination": "abc123",
        "presetRentalMonthlyCost": "xyz789",
        "presetRentalRenewalRate": "abc123",
        "presetServiceContractCostPerYear": "abc123",
        "presetServiceContractEmail": "abc123",
        "presetServiceContractLevel": "xyz789",
        "presetServiceContractPartner": "xyz789",
        "presetSupplier": "abc123",
        "presetWarrantyPeriod": 123,
        "isLockable": true,
        "isLockedState": false,
        "lockAssetTypeId": HashedId,
        "hasVNC": false,
        "isPollingAvailable": true,
        "name": Translation,
        "documents": [Document],
        "minimalBatteryVoltage": 987.65,
        "nominalBatteryVoltage": 987.65,
        "optimalBatteryVoltage": 987.65,
        "optimalRuntime": 987.65,
        "parentParameterKey": "runtime",
        "workUnits": Translation,
        "workUnitsPerHour": 123.45,
        "workUnitId": HashedId,
        "inAssetCategory": AssetCategory,
        "group": Group,
        "inAssetIntegration": AssetIntegration,
        "forManufacturer": Manufacturer,
        "namespace": "abc123",
        "assetsCount": 123,
        "userManual": "xyz789",
        "suggestedServicePartner": "xyz789",
        "suggestedPartner": AvailableHandler,
        "servicePackage": ServicePackage,
        "lockAssetType": AssetType
      }
    ]
  }
}

updateAssetTypeImage

Description

Accepts jpg, jpeg, gif, png, webp, heic (case insensitive). Will be contained to a 500px square with white background. 3 images generated:

         - _2x for high dpi screens
                      
                               - no suffix, half of the default size, this url will be provided
                      
                               - _thumb - 100px thumbnail
                      
                               Send an empty value to remove the image.
                      
Response

Returns a File!

Arguments
Name Description
id - HashedId!
file - Upload!

Example

Query
mutation updateAssetTypeImage(
  $id: HashedId!,
  $file: Upload!
) {
  updateAssetTypeImage(
    id: $id,
    file: $file
  ) {
    id
    path
    filename
    mimetype
  }
}
Variables
{"id": HashedId, "file": Upload}
Response
{
  "data": {
    "updateAssetTypeImage": {
      "id": "4",
      "path": "xyz789",
      "filename": "xyz789",
      "mimetype": "xyz789"
    }
  }
}

updateAssetView

Description

update an asset view

Response

Returns an AssetView!

Arguments
Name Description
view - AssetViewUpdateInput!

Example

Query
mutation updateAssetView($view: AssetViewUpdateInput!) {
  updateAssetView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...AssetViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": AssetViewUpdateInput}
Response
{
  "data": {
    "updateAssetView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": AssetViewOptions,
      "isActive": false,
      "isSystemView": false,
      "isShared": false,
      "isEditable": false,
      "isDeletable": true,
      "isShareable": true,
      "isUnsharedByParentGroup": true,
      "title": Translation
    }
  }
}

updateBrand

Use separate methods instead: updateBrandById, updateBrandByKey
Response

Returns a Brand

Arguments
Name Description
key - String
id - HashedId
systemName - String Name of the platform for this brand
colorDark - String
colorLight - String
faviconUrl - String A url that provides the favicon image used
loginBackground - String A url that provides the background image shown on the login page
name - String Brand name
appUrlAndroid - String Login Language that should be displayed if the Users target language is not available
appUrlIos - String A url leading to the download/store page of the iOS app of the platform
logo - String An image url containing the logo for the platform
color - String Primary color associated with brand
symbol - String The image displayed when only the symbol is required. E.g. the main menu is collapsed
ownURL - String A custom URL where the application is intended to be available
supportEmail - String A support email address to be displayed across clients
activationMailVideo - String A url leading to the activation email video of the platform
logoIsSquare - Boolean Should be true if the logo image has a 1:1 aspect ratio. Helps with visual alignment.
loginLanguageFallback - HashedId A url leading to the download/store page of the Android app of the platform
projects - String Projects have been dropped completely September 2023

Example

Query
mutation updateBrand(
  $key: String,
  $id: HashedId,
  $systemName: String,
  $colorDark: String,
  $colorLight: String,
  $faviconUrl: String,
  $loginBackground: String,
  $name: String,
  $appUrlAndroid: String,
  $appUrlIos: String,
  $logo: String,
  $color: String,
  $symbol: String,
  $ownURL: String,
  $supportEmail: String,
  $activationMailVideo: String,
  $logoIsSquare: Boolean,
  $loginLanguageFallback: HashedId,
  $projects: String
) {
  updateBrand(
    key: $key,
    id: $id,
    systemName: $systemName,
    colorDark: $colorDark,
    colorLight: $colorLight,
    faviconUrl: $faviconUrl,
    loginBackground: $loginBackground,
    name: $name,
    appUrlAndroid: $appUrlAndroid,
    appUrlIos: $appUrlIos,
    logo: $logo,
    color: $color,
    symbol: $symbol,
    ownURL: $ownURL,
    supportEmail: $supportEmail,
    activationMailVideo: $activationMailVideo,
    logoIsSquare: $logoIsSquare,
    loginLanguageFallback: $loginLanguageFallback,
    projects: $projects
  ) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{
  "key": "xyz789",
  "id": HashedId,
  "systemName": "xyz789",
  "colorDark": "abc123",
  "colorLight": "abc123",
  "faviconUrl": "xyz789",
  "loginBackground": "abc123",
  "name": "xyz789",
  "appUrlAndroid": "abc123",
  "appUrlIos": "xyz789",
  "logo": "abc123",
  "color": "abc123",
  "symbol": "abc123",
  "ownURL": "abc123",
  "supportEmail": "abc123",
  "activationMailVideo": "xyz789",
  "logoIsSquare": false,
  "loginLanguageFallback": HashedId,
  "projects": "abc123"
}
Response
{
  "data": {
    "updateBrand": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "logoWidth": 987,
      "key": "abc123",
      "systemName": "xyz789",
      "colorDark": "abc123",
      "colorLight": "abc123",
      "faviconUrl": "abc123",
      "loginBackground": "abc123",
      "name": "abc123",
      "appUrlAndroid": "xyz789",
      "appUrlIos": "xyz789",
      "logo": "abc123",
      "color": "abc123",
      "symbol": "xyz789",
      "ownURL": "xyz789",
      "supportEmail": "abc123",
      "activationMailVideo": "xyz789",
      "logoIsSquare": false,
      "group": Group,
      "sso": "2007-12-03T10:15:30Z",
      "loginLanguageFallback": HashedId,
      "projects": "abc123"
    }
  }
}

updateBrandById

Response

Returns a Brand!

Arguments
Name Description
id - HashedId!
input - BrandUpdateInput!

Example

Query
mutation updateBrandById(
  $id: HashedId!,
  $input: BrandUpdateInput!
) {
  updateBrandById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{
  "id": HashedId,
  "input": BrandUpdateInput
}
Response
{
  "data": {
    "updateBrandById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "logoWidth": 123,
      "key": "xyz789",
      "systemName": "abc123",
      "colorDark": "abc123",
      "colorLight": "abc123",
      "faviconUrl": "abc123",
      "loginBackground": "abc123",
      "name": "abc123",
      "appUrlAndroid": "abc123",
      "appUrlIos": "xyz789",
      "logo": "abc123",
      "color": "abc123",
      "symbol": "abc123",
      "ownURL": "abc123",
      "supportEmail": "abc123",
      "activationMailVideo": "abc123",
      "logoIsSquare": false,
      "group": Group,
      "sso": "2007-12-03T10:15:30Z",
      "loginLanguageFallback": HashedId,
      "projects": "xyz789"
    }
  }
}

updateBrandByKey

Response

Returns a Brand!

Arguments
Name Description
key - String!
input - BrandUpdateInput!

Example

Query
mutation updateBrandByKey(
  $key: String!,
  $input: BrandUpdateInput!
) {
  updateBrandByKey(
    key: $key,
    input: $input
  ) {
    id
    created
    updated
    groupId
    logoWidth
    key
    systemName
    colorDark
    colorLight
    faviconUrl
    loginBackground
    name
    appUrlAndroid
    appUrlIos
    logo
    color
    symbol
    ownURL
    supportEmail
    activationMailVideo
    logoIsSquare
    group {
      ...GroupFragment
    }
    sso
    loginLanguageFallback
    projects
  }
}
Variables
{
  "key": "xyz789",
  "input": BrandUpdateInput
}
Response
{
  "data": {
    "updateBrandByKey": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "logoWidth": 987,
      "key": "abc123",
      "systemName": "abc123",
      "colorDark": "abc123",
      "colorLight": "abc123",
      "faviconUrl": "xyz789",
      "loginBackground": "xyz789",
      "name": "xyz789",
      "appUrlAndroid": "xyz789",
      "appUrlIos": "abc123",
      "logo": "abc123",
      "color": "xyz789",
      "symbol": "xyz789",
      "ownURL": "xyz789",
      "supportEmail": "xyz789",
      "activationMailVideo": "abc123",
      "logoIsSquare": true,
      "group": Group,
      "sso": "2007-12-03T10:15:30Z",
      "loginLanguageFallback": HashedId,
      "projects": "abc123"
    }
  }
}

updateCheckSchedule

Response

Returns an AssetCheckSchedule!

Arguments
Name Description
id - HashedId!
name - String!
interval - Int!
lastCheck - Date
nextCheck - Date!

Example

Query
mutation updateCheckSchedule(
  $id: HashedId!,
  $name: String!,
  $interval: Int!,
  $lastCheck: Date,
  $nextCheck: Date!
) {
  updateCheckSchedule(
    id: $id,
    name: $name,
    interval: $interval,
    lastCheck: $lastCheck,
    nextCheck: $nextCheck
  ) {
    id
    assetId
    name
    interval
    lastCheck
    nextCheck
    daysToNextCheck
    lastCheckLastEdited {
      ...AssetCheckScheduleEditNoteFragment
    }
    nextCheckLastEdited {
      ...AssetCheckScheduleEditNoteFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "name": "xyz789",
  "interval": 987,
  "lastCheck": "2007-12-03",
  "nextCheck": "2007-12-03"
}
Response
{
  "data": {
    "updateCheckSchedule": {
      "id": HashedId,
      "assetId": HashedId,
      "name": "xyz789",
      "interval": 123,
      "lastCheck": "2007-12-03",
      "nextCheck": "2007-12-03",
      "daysToNextCheck": 123,
      "lastCheckLastEdited": AssetCheckScheduleEditNote,
      "nextCheckLastEdited": AssetCheckScheduleEditNote
    }
  }
}

updateCost

Response

Returns a Cost

Arguments
Name Description
assetId - HashedId
costTypeId - HashedId
currency - String
originatingFromEventId - HashedId
originatingFromCommentId - HashedId
value - Float
id - HashedId!

Example

Query
mutation updateCost(
  $assetId: HashedId,
  $costTypeId: HashedId,
  $currency: String,
  $originatingFromEventId: HashedId,
  $originatingFromCommentId: HashedId,
  $value: Float,
  $id: HashedId!
) {
  updateCost(
    assetId: $assetId,
    costTypeId: $costTypeId,
    currency: $currency,
    originatingFromEventId: $originatingFromEventId,
    originatingFromCommentId: $originatingFromCommentId,
    value: $value,
    id: $id
  ) {
    id
    created
    updated
    assetId
    costTypeId
    createdByUserId
    currency
    originatingFromEventId
    originatingFromCommentId
    value
    costType {
      ...CostTypeFragment
    }
  }
}
Variables
{
  "assetId": HashedId,
  "costTypeId": HashedId,
  "currency": "abc123",
  "originatingFromEventId": HashedId,
  "originatingFromCommentId": HashedId,
  "value": 987.65,
  "id": HashedId
}
Response
{
  "data": {
    "updateCost": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "assetId": HashedId,
      "costTypeId": HashedId,
      "createdByUserId": HashedId,
      "currency": "abc123",
      "originatingFromEventId": HashedId,
      "originatingFromCommentId": HashedId,
      "value": 123.45,
      "costType": CostType
    }
  }
}

updateCustomFieldById

Response

Returns a CustomField!

Arguments
Name Description
id - HashedId!
input - CustomFieldUpdateByIdInput!

Example

Query
mutation updateCustomFieldById(
  $id: HashedId!,
  $input: CustomFieldUpdateByIdInput!
) {
  updateCustomFieldById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    nameId
    type
    isRequired
    showOnQrLandingPage
    showToNonLoggedInUsers
    groupId
    addToAllAssetsInGroupAndBelow
    customerVisibilityRights
    createdByUserId
    createdByGroupId
    availableCustomerVisibilityRights
    deleted
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    assetTypes {
      ...AssetTypeFragment
    }
    assetCategories {
      ...AssetCategoryFragment
    }
    assets {
      ...AssetFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    values {
      ...CustomFieldValueFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "input": CustomFieldUpdateByIdInput
}
Response
{
  "data": {
    "updateCustomFieldById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "nameId": HashedId,
      "type": "text",
      "isRequired": true,
      "showOnQrLandingPage": true,
      "showToNonLoggedInUsers": true,
      "groupId": HashedId,
      "addToAllAssetsInGroupAndBelow": false,
      "customerVisibilityRights": "editor",
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "availableCustomerVisibilityRights": ["editor"],
      "deleted": 1592577642,
      "name": Translation,
      "group": Group,
      "assetTypes": [AssetType],
      "assetCategories": [AssetCategory],
      "assets": [Asset],
      "createdByUser": User,
      "createdByGroup": Group,
      "values": [CustomFieldValue]
    }
  }
}

updateCustomFieldsValues

Frontend uses "set" this one is for mobile only. Should be changed there and removed here.
Response

Returns [CustomFieldValue!]!

Arguments
Name Description
values - [CustomFieldsValuesUpdateInput!]!

Example

Query
mutation updateCustomFieldsValues($values: [CustomFieldsValuesUpdateInput!]!) {
  updateCustomFieldsValues(values: $values) {
    id
    created
    updated
    customFieldId
    assetId
    textValueId
    numberValue
    dateValue
    currencyValue
    textValue {
      ...TranslationFragment
    }
  }
}
Variables
{"values": [CustomFieldsValuesUpdateInput]}
Response
{
  "data": {
    "updateCustomFieldsValues": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "customFieldId": HashedId,
        "assetId": HashedId,
        "textValueId": HashedId,
        "numberValue": 123.45,
        "dateValue": "2007-12-03",
        "currencyValue": 987.65,
        "textValue": Translation
      }
    ]
  }
}

updateDashboard

Response

Returns a Dashboard!

Arguments
Name Description
id - HashedId!
title - TranslationInput
grafanaDashboardUID - String
priority - Int
default - Boolean
filters - [DashboardMutationFilterInput!]

Example

Query
mutation updateDashboard(
  $id: HashedId!,
  $title: TranslationInput,
  $grafanaDashboardUID: String,
  $priority: Int,
  $default: Boolean,
  $filters: [DashboardMutationFilterInput!]
) {
  updateDashboard(
    id: $id,
    title: $title,
    grafanaDashboardUID: $grafanaDashboardUID,
    priority: $priority,
    default: $default,
    filters: $filters
  ) {
    id
    title {
      ...TranslationFragment
    }
    priority
    definition
    grafanaDashboardURL
    grafanaDashboardUID
    filters {
      ...DashboardFilterFragment
    }
    snapshotURL
    createdByUserId
    createdByGroupId
    default
  }
}
Variables
{
  "id": HashedId,
  "title": TranslationInput,
  "grafanaDashboardUID": "xyz789",
  "priority": 123,
  "default": false,
  "filters": [DashboardMutationFilterInput]
}
Response
{
  "data": {
    "updateDashboard": {
      "id": HashedId,
      "title": Translation,
      "priority": 987,
      "definition": {},
      "grafanaDashboardURL": "abc123",
      "grafanaDashboardUID": "abc123",
      "filters": [DashboardFilter],
      "snapshotURL": "abc123",
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "default": false
    }
  }
}

updateDocument

Response

Returns [Document!]!

Arguments
Name Description
id - HashedId!
assetId - HashedId Id of the associated asset. Mutually exclusive with other associations.
assetTypeId - HashedId Id of the associated assetType. Mutually exclusive with other associations.
partId - HashedId Id of the associated part. Mutually exclusive with other associations.
isVisibleToCustomer - Boolean Indicates whether the document is served/visible to users of customer groups.
name - String Name of the attachment
purpose - String A string 'label' to define the purpose of the document. Can only be one of the items of a predefined constant array.
uploadedByUserId - HashedId
documentLink - String
file - Upload

Example

Query
mutation updateDocument(
  $id: HashedId!,
  $assetId: HashedId,
  $assetTypeId: HashedId,
  $partId: HashedId,
  $isVisibleToCustomer: Boolean,
  $name: String,
  $purpose: String,
  $uploadedByUserId: HashedId,
  $documentLink: String,
  $file: Upload
) {
  updateDocument(
    id: $id,
    assetId: $assetId,
    assetTypeId: $assetTypeId,
    partId: $partId,
    isVisibleToCustomer: $isVisibleToCustomer,
    name: $name,
    purpose: $purpose,
    uploadedByUserId: $uploadedByUserId,
    documentLink: $documentLink,
    file: $file
  ) {
    id
    created
    updated
    assetId
    assetTypeId
    commentId
    eventId
    partId
    isExternal
    isVisibleToCustomer
    name
    purpose
    uploadedByUserId
    url
    editable
    fileSize
    isInherited
    typeKey
    uploadedByCustomer
    uploadedByUser {
      ...UserFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "assetId": HashedId,
  "assetTypeId": HashedId,
  "partId": HashedId,
  "isVisibleToCustomer": true,
  "name": "abc123",
  "purpose": "abc123",
  "uploadedByUserId": HashedId,
  "documentLink": "xyz789",
  "file": Upload
}
Response
{
  "data": {
    "updateDocument": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "assetId": HashedId,
        "assetTypeId": HashedId,
        "commentId": HashedId,
        "eventId": HashedId,
        "partId": HashedId,
        "isExternal": true,
        "isVisibleToCustomer": false,
        "name": "xyz789",
        "purpose": "xyz789",
        "uploadedByUserId": HashedId,
        "url": "xyz789",
        "editable": true,
        "fileSize": 987,
        "isInherited": true,
        "typeKey": "xyz789",
        "uploadedByCustomer": false,
        "uploadedByUser": User
      }
    ]
  }
}

updateEvent

Response

Returns an Event

Arguments
Name Description
id - HashedId!
title - TranslationInput
description - TranslationInput
assetId - HashedId
newCosts - [NewCostInput!]
changedCosts - [ChangedCostInput!]
costsIdsToDelete - [HashedId!]
newAttachments - [Upload!]
documentsIdsToDelete - [HashedId!]
startTime - Timestamp

Example

Query
mutation updateEvent(
  $id: HashedId!,
  $title: TranslationInput,
  $description: TranslationInput,
  $assetId: HashedId,
  $newCosts: [NewCostInput!],
  $changedCosts: [ChangedCostInput!],
  $costsIdsToDelete: [HashedId!],
  $newAttachments: [Upload!],
  $documentsIdsToDelete: [HashedId!],
  $startTime: Timestamp
) {
  updateEvent(
    id: $id,
    title: $title,
    description: $description,
    assetId: $assetId,
    newCosts: $newCosts,
    changedCosts: $changedCosts,
    costsIdsToDelete: $costsIdsToDelete,
    newAttachments: $newAttachments,
    documentsIdsToDelete: $documentsIdsToDelete,
    startTime: $startTime
  ) {
    id
    createdByRule {
      ...RuleFragment
    }
    createdByRuleId
    createdByTicket {
      ...TicketFragment
    }
    createdByTicketId
    createdByWorkOrder {
      ...WorkOrderSummaryFragment
    }
    createdByWorkOrderId
    createdBySiteId
    originatingFromAsset {
      ...AssetFragment
    }
    originatingFromAssetId
    originatingFromModule {
      ...ModuleFragment
    }
    createdByPartId
    originatingFromModuleId
    title {
      ...TranslationFragment
    }
    titleId
    description {
      ...TranslationFragment
    }
    descriptionId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    stoppedByUser {
      ...UserFragment
    }
    stoppedByUserId
    eventStyle {
      ...EventStyleFragment
    }
    eventStyleId
    startTime
    endTime
    isCritical
    isImmediateNotification
    shouldNotify
    manualDeactivation
    isOngoing
    created
    updated
    responseState {
      ...TicketStateFragment
    }
    eventMeta
    serviceName {
      ...TranslationFragment
    }
    ticketId
    tag
    cost {
      ...CostFragment
    }
    costs {
      ...CostFragment
    }
    documents {
      ...DocumentFragment
    }
    workOrderNotifications {
      ...WorkOrderNotificationsFragment
    }
    connectedComment {
      ...TicketCommentFragment
    }
    authorEmail
    lastEvent
    siteId
    createdByPart {
      ...PartFragment
    }
    site {
      ...SiteFragment
    }
    data {
      ...EventEntityDataDtoFragment
    }
    createdBySite {
      ...SiteFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "title": TranslationInput,
  "description": TranslationInput,
  "assetId": HashedId,
  "newCosts": [NewCostInput],
  "changedCosts": [ChangedCostInput],
  "costsIdsToDelete": [HashedId],
  "newAttachments": [Upload],
  "documentsIdsToDelete": [HashedId],
  "startTime": 1592577642
}
Response
{
  "data": {
    "updateEvent": {
      "id": HashedId,
      "createdByRule": Rule,
      "createdByRuleId": HashedId,
      "createdByTicket": Ticket,
      "createdByTicketId": HashedId,
      "createdByWorkOrder": WorkOrderSummary,
      "createdByWorkOrderId": HashedId,
      "createdBySiteId": HashedId,
      "originatingFromAsset": Asset,
      "originatingFromAssetId": HashedId,
      "originatingFromModule": Module,
      "createdByPartId": HashedId,
      "originatingFromModuleId": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "createdByUser": User,
      "createdByUserId": HashedId,
      "stoppedByUser": User,
      "stoppedByUserId": HashedId,
      "eventStyle": EventStyle,
      "eventStyleId": "xyz789",
      "startTime": 1592577642,
      "endTime": 1592577642,
      "isCritical": true,
      "isImmediateNotification": false,
      "shouldNotify": false,
      "manualDeactivation": false,
      "isOngoing": false,
      "created": 1592577642,
      "updated": 1592577642,
      "responseState": TicketState,
      "eventMeta": {},
      "serviceName": Translation,
      "ticketId": 123,
      "tag": ["asset"],
      "cost": Cost,
      "costs": [Cost],
      "documents": [Document],
      "workOrderNotifications": WorkOrderNotifications,
      "connectedComment": TicketComment,
      "authorEmail": "xyz789",
      "lastEvent": 1592577642,
      "siteId": HashedId,
      "createdByPart": Part,
      "site": Site,
      "data": EventEntityDataDto,
      "createdBySite": Site
    }
  }
}

updateEventStyle

Response

Returns an EventStyle!

Arguments
Name Description
id - HashedId!
name - TranslationInput
iconIndex - Int
color - String

Example

Query
mutation updateEventStyle(
  $id: HashedId!,
  $name: TranslationInput,
  $iconIndex: Int,
  $color: String
) {
  updateEventStyle(
    id: $id,
    name: $name,
    iconIndex: $iconIndex,
    color: $color
  ) {
    id
    key
    nameId
    name {
      ...TranslationFragment
    }
    icon
    color
    createdByGroupId
  }
}
Variables
{
  "id": HashedId,
  "name": TranslationInput,
  "iconIndex": 987,
  "color": "abc123"
}
Response
{
  "data": {
    "updateEventStyle": {
      "id": HashedId,
      "key": "ERROR",
      "nameId": HashedId,
      "name": Translation,
      "icon": "abc123",
      "color": "abc123",
      "createdByGroupId": HashedId
    }
  }
}

updateGroup

Use groups.updateById instead
Response

Returns [Group!]!

Arguments
Name Description
id - HashedId!
vatNumber - String
getRawFlow - Boolean
servicePackageId - HashedId Can only be changed by internal TS users currently
settingsPath - String
handlerAlias - String
defaultCurrency - String
userRequestNotifiers - [NotificationRelationCreateInput!] Passing empty array will remove all the relations
settings - JSON
internalSettings - JSON
hasTicketHandling - Boolean
identificationNumber - String
assetLocationsHidden - Boolean Only customer administrators can use this flag
name - String
parentGroupId - HashedId
flowMaintainers - [NotificationRelationCreateInput!]

Example

Query
mutation updateGroup(
  $id: HashedId!,
  $vatNumber: String,
  $getRawFlow: Boolean,
  $servicePackageId: HashedId,
  $settingsPath: String,
  $handlerAlias: String,
  $defaultCurrency: String,
  $userRequestNotifiers: [NotificationRelationCreateInput!],
  $settings: JSON,
  $internalSettings: JSON,
  $hasTicketHandling: Boolean,
  $identificationNumber: String,
  $assetLocationsHidden: Boolean,
  $name: String,
  $parentGroupId: HashedId,
  $flowMaintainers: [NotificationRelationCreateInput!]
) {
  updateGroup(
    id: $id,
    vatNumber: $vatNumber,
    getRawFlow: $getRawFlow,
    servicePackageId: $servicePackageId,
    settingsPath: $settingsPath,
    handlerAlias: $handlerAlias,
    defaultCurrency: $defaultCurrency,
    userRequestNotifiers: $userRequestNotifiers,
    settings: $settings,
    internalSettings: $internalSettings,
    hasTicketHandling: $hasTicketHandling,
    identificationNumber: $identificationNumber,
    assetLocationsHidden: $assetLocationsHidden,
    name: $name,
    parentGroupId: $parentGroupId,
    flowMaintainers: $flowMaintainers
  ) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "vatNumber": "abc123",
  "getRawFlow": true,
  "servicePackageId": HashedId,
  "settingsPath": "xyz789",
  "handlerAlias": "xyz789",
  "defaultCurrency": "abc123",
  "userRequestNotifiers": [
    NotificationRelationCreateInput
  ],
  "settings": {},
  "internalSettings": {},
  "hasTicketHandling": false,
  "identificationNumber": "abc123",
  "assetLocationsHidden": true,
  "name": "xyz789",
  "parentGroupId": HashedId,
  "flowMaintainers": [NotificationRelationCreateInput]
}
Response
{
  "data": {
    "updateGroup": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "name": "abc123",
        "parentGroupId": HashedId,
        "isRoot": false,
        "image": "abc123",
        "isCustomer": false,
        "identificationNumber": "abc123",
        "vatNumber": "xyz789",
        "rootGroupId": HashedId,
        "handlerAlias": "xyz789",
        "treeRootId": HashedId,
        "servicePackageId": HashedId,
        "flowId": HashedId,
        "roleIds": [HashedId],
        "activeCustomFields": [CustomField],
        "archivedCustomFields": [CustomField],
        "parentGroup": Group,
        "services": [Service],
        "servicesV2": [Service],
        "servicePackage": ServicePackage,
        "flow": ServicePackage,
        "internalSettings": {},
        "hasTicketHandling": true,
        "flowMaintainers": [NotificationRelation],
        "settings": {},
        "assetLocationsHidden": true,
        "nonCustomerParentGroup": Group,
        "childGroups": [Group],
        "childGroupIds": [HashedId],
        "belongsToCurrentGroup": true,
        "customerRootGroup": Group,
        "rootGroupName": "xyz789",
        "userRequestNotifiers": [NotificationRelation],
        "customerName": "xyz789",
        "parentName": "abc123",
        "groupTypeId": HashedId,
        "assets": [Asset],
        "assetIds": [HashedId],
        "maintainedManufacturer": [Manufacturer],
        "maintainedManufacturerId": [HashedId],
        "userIds": [HashedId],
        "users": [User],
        "servicePackageV2": ServicePackage,
        "groupType": ServicePackage
      }
    ]
  }
}

updateGroupById

Response

Returns a Group!

Arguments
Name Description
id - HashedId!
input - GroupUpdateInput!

Example

Query
mutation updateGroupById(
  $id: HashedId!,
  $input: GroupUpdateInput!
) {
  updateGroupById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "input": GroupUpdateInput
}
Response
{
  "data": {
    "updateGroupById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "xyz789",
      "parentGroupId": HashedId,
      "isRoot": true,
      "image": "xyz789",
      "isCustomer": false,
      "identificationNumber": "xyz789",
      "vatNumber": "abc123",
      "rootGroupId": HashedId,
      "handlerAlias": "xyz789",
      "treeRootId": HashedId,
      "servicePackageId": HashedId,
      "flowId": HashedId,
      "roleIds": [HashedId],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "parentGroup": Group,
      "services": [Service],
      "servicesV2": [Service],
      "servicePackage": ServicePackage,
      "flow": ServicePackage,
      "internalSettings": {},
      "hasTicketHandling": true,
      "flowMaintainers": [NotificationRelation],
      "settings": {},
      "assetLocationsHidden": true,
      "nonCustomerParentGroup": Group,
      "childGroups": [Group],
      "childGroupIds": [HashedId],
      "belongsToCurrentGroup": false,
      "customerRootGroup": Group,
      "rootGroupName": "xyz789",
      "userRequestNotifiers": [NotificationRelation],
      "customerName": "abc123",
      "parentName": "abc123",
      "groupTypeId": HashedId,
      "assets": [Asset],
      "assetIds": [HashedId],
      "maintainedManufacturer": [Manufacturer],
      "maintainedManufacturerId": [HashedId],
      "userIds": [HashedId],
      "users": [User],
      "servicePackageV2": ServicePackage,
      "groupType": ServicePackage
    }
  }
}

updateGroupImage

Description

Accepts jpg, jpeg, webp, gif, png (case insensitive). Will be contained to a 500px square with white background. 3 images generated:

  • _2x for high dpi screens
  • no suffix, half of the default size, this url will be provided
  • _thumb - 100px thumbnail Send an empty value to remove the image.
Response

Returns a Group!

Arguments
Name Description
id - HashedId!
file - Upload!

Example

Query
mutation updateGroupImage(
  $id: HashedId!,
  $file: Upload!
) {
  updateGroupImage(
    id: $id,
    file: $file
  ) {
    id
    created
    updated
    name
    parentGroupId
    isRoot
    image
    isCustomer
    identificationNumber
    vatNumber
    rootGroupId
    handlerAlias
    treeRootId
    servicePackageId
    flowId
    roleIds
    activeCustomFields {
      ...CustomFieldFragment
    }
    archivedCustomFields {
      ...CustomFieldFragment
    }
    parentGroup {
      ...GroupFragment
    }
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    flow {
      ...ServicePackageFragment
    }
    internalSettings
    hasTicketHandling
    flowMaintainers {
      ...NotificationRelationFragment
    }
    settings
    assetLocationsHidden
    nonCustomerParentGroup {
      ...GroupFragment
    }
    childGroups {
      ...GroupFragment
    }
    childGroupIds
    belongsToCurrentGroup
    customerRootGroup {
      ...GroupFragment
    }
    rootGroupName
    userRequestNotifiers {
      ...NotificationRelationFragment
    }
    customerName
    parentName
    groupTypeId
    assets {
      ...AssetFragment
    }
    assetIds
    maintainedManufacturer {
      ...ManufacturerFragment
    }
    maintainedManufacturerId
    userIds
    users {
      ...UserFragment
    }
    servicePackageV2 {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
    groupType {
      ...ServicePackageFragment
    }
  }
}
Variables
{"id": HashedId, "file": Upload}
Response
{
  "data": {
    "updateGroupImage": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "parentGroupId": HashedId,
      "isRoot": true,
      "image": "abc123",
      "isCustomer": true,
      "identificationNumber": "abc123",
      "vatNumber": "xyz789",
      "rootGroupId": HashedId,
      "handlerAlias": "xyz789",
      "treeRootId": HashedId,
      "servicePackageId": HashedId,
      "flowId": HashedId,
      "roleIds": [HashedId],
      "activeCustomFields": [CustomField],
      "archivedCustomFields": [CustomField],
      "parentGroup": Group,
      "services": [Service],
      "servicesV2": [Service],
      "servicePackage": ServicePackage,
      "flow": ServicePackage,
      "internalSettings": {},
      "hasTicketHandling": false,
      "flowMaintainers": [NotificationRelation],
      "settings": {},
      "assetLocationsHidden": false,
      "nonCustomerParentGroup": Group,
      "childGroups": [Group],
      "childGroupIds": [HashedId],
      "belongsToCurrentGroup": false,
      "customerRootGroup": Group,
      "rootGroupName": "abc123",
      "userRequestNotifiers": [NotificationRelation],
      "customerName": "xyz789",
      "parentName": "abc123",
      "groupTypeId": HashedId,
      "assets": [Asset],
      "assetIds": [HashedId],
      "maintainedManufacturer": [Manufacturer],
      "maintainedManufacturerId": [HashedId],
      "userIds": [HashedId],
      "users": [User],
      "servicePackageV2": ServicePackage,
      "groupType": ServicePackage
    }
  }
}

updateIntegrationConfig

Response

Returns an Integration!

Arguments
Name Description
name - IntegrationNamesEnum!
configInput - [IntegrationUpdateInput!]!

Example

Query
mutation updateIntegrationConfig(
  $name: IntegrationNamesEnum!,
  $configInput: [IntegrationUpdateInput!]!
) {
  updateIntegrationConfig(
    name: $name,
    configInput: $configInput
  ) {
    id
    created
    updated
    name
    config {
      ...IntegrationConfigKeyFragment
    }
  }
}
Variables
{"name": "WISAG", "configInput": [IntegrationUpdateInput]}
Response
{
  "data": {
    "updateIntegrationConfig": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "WISAG",
      "config": [IntegrationConfigKey]
    }
  }
}

updateLoginInterrupt

Response

Returns a LoginInterrupt

Arguments
Name Description
title - String!

Example

Query
mutation updateLoginInterrupt($title: String!) {
  updateLoginInterrupt(title: $title) {
    id
    title {
      ...TranslationFragment
    }
    titleId
    content {
      ...TranslationFragment
    }
    contentId
    visibleToGroupIds
    visibleToGroups {
      ...GroupFragment
    }
    created
    updated
  }
}
Variables
{"title": "abc123"}
Response
{
  "data": {
    "updateLoginInterrupt": {
      "id": HashedId,
      "title": Translation,
      "titleId": HashedId,
      "content": Translation,
      "contentId": HashedId,
      "visibleToGroupIds": [HashedId],
      "visibleToGroups": [Group],
      "created": 1592577642,
      "updated": 1592577642
    }
  }
}

updateMaintenanceSchedule

Response

Returns an AssetMaintenanceSchedule!

Arguments
Name Description
id - HashedId!
interval - Int!
lastMaintenance - Date
nextMaintenance - Date!

Example

Query
mutation updateMaintenanceSchedule(
  $id: HashedId!,
  $interval: Int!,
  $lastMaintenance: Date,
  $nextMaintenance: Date!
) {
  updateMaintenanceSchedule(
    id: $id,
    interval: $interval,
    lastMaintenance: $lastMaintenance,
    nextMaintenance: $nextMaintenance
  ) {
    id
    assetId
    interval
    lastMaintenance
    nextMaintenance
    lastMaintenanceLastEdited {
      ...AssetMaintenanceScheduleEditNoteFragment
    }
    nextMaintenanceLastEdited {
      ...AssetMaintenanceScheduleEditNoteFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "interval": 123,
  "lastMaintenance": "2007-12-03",
  "nextMaintenance": "2007-12-03"
}
Response
{
  "data": {
    "updateMaintenanceSchedule": {
      "id": HashedId,
      "assetId": HashedId,
      "interval": 123,
      "lastMaintenance": "2007-12-03",
      "nextMaintenance": "2007-12-03",
      "lastMaintenanceLastEdited": AssetMaintenanceScheduleEditNote,
      "nextMaintenanceLastEdited": AssetMaintenanceScheduleEditNote
    }
  }
}

updateManufacturerById

Response

Returns a Manufacturer!

Arguments
Name Description
id - HashedId!
input - ManufacturerUpdateInput!

Example

Query
mutation updateManufacturerById(
  $id: HashedId!,
  $input: ManufacturerUpdateInput!
) {
  updateManufacturerById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    name
    nameKey
    notificationsEnabled
    maintainedByGroupId
    maintainedByGroup {
      ...GroupFragment
    }
    assetIntegrations {
      ...AssetIntegrationFragment
    }
    assetIntegrationIds
  }
}
Variables
{
  "id": HashedId,
  "input": ManufacturerUpdateInput
}
Response
{
  "data": {
    "updateManufacturerById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "nameKey": "abc123",
      "notificationsEnabled": true,
      "maintainedByGroupId": 987,
      "maintainedByGroup": Group,
      "assetIntegrations": [AssetIntegration],
      "assetIntegrationIds": [HashedId]
    }
  }
}

updateModule

Response

Returns a Module!

Arguments
Name Description
stripeCustomerId - String Used to connect the Module to a Stripe Customer
stripePriceId - String Used to connect the Module to a Stripe Product
moduleRevision - String Some value that is specifying what kind of module this is
isFake - Boolean
id - HashedId
imei - String

Example

Query
mutation updateModule(
  $stripeCustomerId: String,
  $stripePriceId: String,
  $moduleRevision: String,
  $isFake: Boolean,
  $id: HashedId,
  $imei: String
) {
  updateModule(
    stripeCustomerId: $stripeCustomerId,
    stripePriceId: $stripePriceId,
    moduleRevision: $moduleRevision,
    isFake: $isFake,
    id: $id,
    imei: $imei
  ) {
    id
    created
    updated
    imei
    controlId
    stripeCustomerId
    stripePriceId
    moduleTypeId
    moduleRevision
    moduleVersionNr
    assetVersionNr
    assignedToAsset {
      ...AssetFragment
    }
    assignedToAssetId
    assignedToAssets {
      ...AssetFragment
    }
    assignedToAssetIds
    currentPrice
    isFake
    moduleType {
      ...ModuleTypeFragment
    }
    price {
      ...StripePriceFragment
    }
  }
}
Variables
{
  "stripeCustomerId": "abc123",
  "stripePriceId": "xyz789",
  "moduleRevision": "xyz789",
  "isFake": true,
  "id": HashedId,
  "imei": "xyz789"
}
Response
{
  "data": {
    "updateModule": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "imei": "xyz789",
      "controlId": "abc123",
      "stripeCustomerId": "xyz789",
      "stripePriceId": "xyz789",
      "moduleTypeId": HashedId,
      "moduleRevision": "abc123",
      "moduleVersionNr": "xyz789",
      "assetVersionNr": "xyz789",
      "assignedToAsset": Asset,
      "assignedToAssetId": HashedId,
      "assignedToAssets": [Asset],
      "assignedToAssetIds": [HashedId],
      "currentPrice": 123.45,
      "isFake": true,
      "moduleType": ModuleType,
      "price": StripePrice
    }
  }
}

updateNotificationByTicketId

Response

Returns a NotificationFilter!

Arguments
Name Description
id - HashedId!
input - NotificationFilterUpdateInput!

Example

Query
mutation updateNotificationByTicketId(
  $id: HashedId!,
  $input: NotificationFilterUpdateInput!
) {
  updateNotificationByTicketId(
    id: $id,
    input: $input
  ) {
    id
    state
    preferences
  }
}
Variables
{
  "id": HashedId,
  "input": NotificationFilterUpdateInput
}
Response
{
  "data": {
    "updateNotificationByTicketId": {
      "id": HashedId,
      "state": true,
      "preferences": {}
    }
  }
}

updateOTAUpdate

Response

Returns an OTAUpdate

Arguments
Name Description
assetIntegrationId - HashedId!

Example

Query
mutation updateOTAUpdate($assetIntegrationId: HashedId!) {
  updateOTAUpdate(assetIntegrationId: $assetIntegrationId) {
    id
    fileName
    versionName
    assetIntegration {
      ...AssetIntegrationFragment
    }
    assetIntegrationId
    description {
      ...TranslationFragment
    }
    descriptionId
    created
    updated
  }
}
Variables
{"assetIntegrationId": HashedId}
Response
{
  "data": {
    "updateOTAUpdate": {
      "id": HashedId,
      "fileName": "xyz789",
      "versionName": "xyz789",
      "assetIntegration": AssetIntegration,
      "assetIntegrationId": HashedId,
      "description": Translation,
      "descriptionId": HashedId,
      "created": 1592577642,
      "updated": 1592577642
    }
  }
}

updatePart

Response

Returns a Part!

Arguments
Name Description
id - HashedId!
input - PartUpdateInput!

Example

Query
mutation updatePart(
  $id: HashedId!,
  $input: PartUpdateInput!
) {
  updatePart(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    publicId
    type
    nameId
    name {
      ...TranslationFragment
    }
    descriptionId
    description {
      ...TranslationFragment
    }
    siteId
    site {
      ...SiteFragment
    }
    area
    availableQuantity
    minQuantity
    maxQuantity
    unitOfMeasure
    unitCost
    currency
    totalStockValue
    groupId
    group {
      ...GroupFragment
    }
    customerId
    customer {
      ...GroupFragment
    }
    externalId
    uuid
    qrAttached
    brand
    previousQuantity
    responsiblePerson
    vendor
    image
    shouldNotifyCriticalStockLevel
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    createdByGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByUserId
    createdByUser {
      ...UserFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "input": PartUpdateInput
}
Response
{
  "data": {
    "updatePart": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "publicId": 123,
      "type": "abc123",
      "nameId": HashedId,
      "name": Translation,
      "descriptionId": HashedId,
      "description": Translation,
      "siteId": HashedId,
      "site": Site,
      "area": "xyz789",
      "availableQuantity": 123,
      "minQuantity": 123,
      "maxQuantity": 987,
      "unitOfMeasure": "abc123",
      "unitCost": 123.45,
      "currency": "abc123",
      "totalStockValue": 123.45,
      "groupId": HashedId,
      "group": Group,
      "customerId": HashedId,
      "customer": Group,
      "externalId": "abc123",
      "uuid": "abc123",
      "qrAttached": false,
      "brand": "abc123",
      "previousQuantity": 987,
      "responsiblePerson": "xyz789",
      "vendor": "abc123",
      "image": "xyz789",
      "shouldNotifyCriticalStockLevel": false,
      "sendNotificationsTo": [RuleNotificationRelation],
      "documents": [Document],
      "events": [Event],
      "createdByGroupId": HashedId,
      "createdByGroup": Group,
      "createdByUserId": HashedId,
      "createdByUser": User
    }
  }
}

updatePartImage

Response

Returns a Part!

Arguments
Name Description
id - HashedId!
file - Upload!

Example

Query
mutation updatePartImage(
  $id: HashedId!,
  $file: Upload!
) {
  updatePartImage(
    id: $id,
    file: $file
  ) {
    id
    created
    updated
    publicId
    type
    nameId
    name {
      ...TranslationFragment
    }
    descriptionId
    description {
      ...TranslationFragment
    }
    siteId
    site {
      ...SiteFragment
    }
    area
    availableQuantity
    minQuantity
    maxQuantity
    unitOfMeasure
    unitCost
    currency
    totalStockValue
    groupId
    group {
      ...GroupFragment
    }
    customerId
    customer {
      ...GroupFragment
    }
    externalId
    uuid
    qrAttached
    brand
    previousQuantity
    responsiblePerson
    vendor
    image
    shouldNotifyCriticalStockLevel
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    documents {
      ...DocumentFragment
    }
    events {
      ...EventFragment
    }
    createdByGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByUserId
    createdByUser {
      ...UserFragment
    }
  }
}
Variables
{"id": HashedId, "file": Upload}
Response
{
  "data": {
    "updatePartImage": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "publicId": 987,
      "type": "abc123",
      "nameId": HashedId,
      "name": Translation,
      "descriptionId": HashedId,
      "description": Translation,
      "siteId": HashedId,
      "site": Site,
      "area": "xyz789",
      "availableQuantity": 123,
      "minQuantity": 987,
      "maxQuantity": 987,
      "unitOfMeasure": "abc123",
      "unitCost": 123.45,
      "currency": "xyz789",
      "totalStockValue": 987.65,
      "groupId": HashedId,
      "group": Group,
      "customerId": HashedId,
      "customer": Group,
      "externalId": "abc123",
      "uuid": "abc123",
      "qrAttached": false,
      "brand": "abc123",
      "previousQuantity": 987,
      "responsiblePerson": "xyz789",
      "vendor": "xyz789",
      "image": "xyz789",
      "shouldNotifyCriticalStockLevel": false,
      "sendNotificationsTo": [RuleNotificationRelation],
      "documents": [Document],
      "events": [Event],
      "createdByGroupId": HashedId,
      "createdByGroup": Group,
      "createdByUserId": HashedId,
      "createdByUser": User
    }
  }
}

updateReservation

Response

Returns [Reservation!]

Arguments
Name Description
id - HashedId!
from - Timestamp
until - Timestamp
assetIds - [HashedId]
reserverName - String
notes - TranslationInput
workingHoursSettings - JSON Updates a working hour setting. See Rules schema for syntax. Set to null to remove working hours.
workingHoursNotification - [RuleNotificationRelationInput] When a working hours event happens, send notifications to these entities

Example

Query
mutation updateReservation(
  $id: HashedId!,
  $from: Timestamp,
  $until: Timestamp,
  $assetIds: [HashedId],
  $reserverName: String,
  $notes: TranslationInput,
  $workingHoursSettings: JSON,
  $workingHoursNotification: [RuleNotificationRelationInput]
) {
  updateReservation(
    id: $id,
    from: $from,
    until: $until,
    assetIds: $assetIds,
    reserverName: $reserverName,
    notes: $notes,
    workingHoursSettings: $workingHoursSettings,
    workingHoursNotification: $workingHoursNotification
  ) {
    id
    from
    until
    reserverName
    assets {
      ...AssetFragment
    }
    assetIds
    workingHoursSettings
    workingHoursNotification {
      ...RuleNotificationRelationFragment
    }
    notes {
      ...TranslationFragment
    }
    notesId
    createdByUser {
      ...UserFragment
    }
    createdByUserId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    created
    updated
  }
}
Variables
{
  "id": HashedId,
  "from": 1592577642,
  "until": 1592577642,
  "assetIds": [HashedId],
  "reserverName": "abc123",
  "notes": TranslationInput,
  "workingHoursSettings": {},
  "workingHoursNotification": [
    RuleNotificationRelationInput
  ]
}
Response
{
  "data": {
    "updateReservation": [
      {
        "id": HashedId,
        "from": 1592577642,
        "until": 1592577642,
        "reserverName": "xyz789",
        "assets": [Asset],
        "assetIds": [HashedId],
        "workingHoursSettings": {},
        "workingHoursNotification": [
          RuleNotificationRelation
        ],
        "notes": Translation,
        "notesId": HashedId,
        "createdByUser": User,
        "createdByUserId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "created": 1592577642,
        "updated": 1592577642
      }
    ]
  }
}

updateRule

Response

Returns a Rule!

Arguments
Name Description
id - HashedId!
title - TranslationInput
description - TranslationInput
definition - JSON
isActive - Boolean
isOneshot - Boolean
source - RuleSource!
assetIds - [HashedId!]
assetTypeIds - [HashedId!]
assignedToGroupId - HashedId
duration - JSON
relations - RuleRelationInput!
isCritical - Boolean
isImmediateNotification - Boolean
isOnetime - Boolean
isGlobalRule - Boolean
manualDeactivation - Boolean
eventStyleId - HashedId!
assetBlacklistIds - [HashedId!]
sendNotificationsTo - [RuleNotificationRelationInput] Add entities who will be notified when this rule is triggered. See type for possibilities.
eventsConfigs - [EventConfigInput]
serviceIds - [HashedId]

Example

Query
mutation updateRule(
  $id: HashedId!,
  $title: TranslationInput,
  $description: TranslationInput,
  $definition: JSON,
  $isActive: Boolean,
  $isOneshot: Boolean,
  $source: RuleSource!,
  $assetIds: [HashedId!],
  $assetTypeIds: [HashedId!],
  $assignedToGroupId: HashedId,
  $duration: JSON,
  $relations: RuleRelationInput!,
  $isCritical: Boolean,
  $isImmediateNotification: Boolean,
  $isOnetime: Boolean,
  $isGlobalRule: Boolean,
  $manualDeactivation: Boolean,
  $eventStyleId: HashedId!,
  $assetBlacklistIds: [HashedId!],
  $sendNotificationsTo: [RuleNotificationRelationInput],
  $eventsConfigs: [EventConfigInput],
  $serviceIds: [HashedId]
) {
  updateRule(
    id: $id,
    title: $title,
    description: $description,
    definition: $definition,
    isActive: $isActive,
    isOneshot: $isOneshot,
    source: $source,
    assetIds: $assetIds,
    assetTypeIds: $assetTypeIds,
    assignedToGroupId: $assignedToGroupId,
    duration: $duration,
    relations: $relations,
    isCritical: $isCritical,
    isImmediateNotification: $isImmediateNotification,
    isOnetime: $isOnetime,
    isGlobalRule: $isGlobalRule,
    manualDeactivation: $manualDeactivation,
    eventStyleId: $eventStyleId,
    assetBlacklistIds: $assetBlacklistIds,
    sendNotificationsTo: $sendNotificationsTo,
    eventsConfigs: $eventsConfigs,
    serviceIds: $serviceIds
  ) {
    definition
    module {
      ...ModuleFragment
    }
    moduleId
    assetBlacklist {
      ...AssetFragment
    }
    assetBlacklistIds
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    duration
    relations {
      ...RuleRelationFragment
    }
    eventsConfigs {
      ...EventConfigFragment
    }
    id
    created
    updated
    title {
      ...TranslationFragment
    }
    description {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    eventStyle {
      ...EventStyleFragment
    }
    titleId
    descriptionId
    createdByGroupId
    createdByUserId
    assignedToGroupId
    eventStyleId
    isCritical
    isOnetime
    isImmediateNotification
    isGlobalRule
    manualDeactivation
    isArchived
    isOneshot
    isActive
    source
    enabled
    purpose
    publicId
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "title": TranslationInput,
  "description": TranslationInput,
  "definition": {},
  "isActive": false,
  "isOneshot": true,
  "source": "DATA",
  "assetIds": [HashedId],
  "assetTypeIds": [HashedId],
  "assignedToGroupId": HashedId,
  "duration": {},
  "relations": RuleRelationInput,
  "isCritical": false,
  "isImmediateNotification": true,
  "isOnetime": false,
  "isGlobalRule": false,
  "manualDeactivation": true,
  "eventStyleId": HashedId,
  "assetBlacklistIds": [HashedId],
  "sendNotificationsTo": [RuleNotificationRelationInput],
  "eventsConfigs": [EventConfigInput],
  "serviceIds": [HashedId]
}
Response
{
  "data": {
    "updateRule": {
      "definition": {},
      "module": [Module],
      "moduleId": [HashedId],
      "assetBlacklist": [Asset],
      "assetBlacklistIds": [HashedId],
      "sendNotificationsTo": [RuleNotificationRelation],
      "duration": {},
      "relations": [RuleRelation],
      "eventsConfigs": [EventConfig],
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "title": Translation,
      "description": Translation,
      "createdByUser": User,
      "createdByGroup": Group,
      "assignedToGroup": Group,
      "eventStyle": EventStyle,
      "titleId": HashedId,
      "descriptionId": HashedId,
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "assignedToGroupId": HashedId,
      "eventStyleId": HashedId,
      "isCritical": false,
      "isOnetime": false,
      "isImmediateNotification": true,
      "isGlobalRule": true,
      "manualDeactivation": true,
      "isArchived": true,
      "isOneshot": false,
      "isActive": true,
      "source": "DATA",
      "enabled": true,
      "purpose": "GEOFENCE",
      "publicId": "xyz789",
      "services": [Service],
      "servicesV2": [Service]
    }
  }
}

updateRuleAddCheck

Description

A light-weight rule update mutation, specifically intended to add new asset checks and avoid redundantly overwriting anything that remains unchanged

Response

Returns a Rule!

Arguments
Name Description
id - HashedId!
relations - RuleRelationInput!
eventsConfigs - [EventConfigInput]

Example

Query
mutation updateRuleAddCheck(
  $id: HashedId!,
  $relations: RuleRelationInput!,
  $eventsConfigs: [EventConfigInput]
) {
  updateRuleAddCheck(
    id: $id,
    relations: $relations,
    eventsConfigs: $eventsConfigs
  ) {
    definition
    module {
      ...ModuleFragment
    }
    moduleId
    assetBlacklist {
      ...AssetFragment
    }
    assetBlacklistIds
    sendNotificationsTo {
      ...RuleNotificationRelationFragment
    }
    duration
    relations {
      ...RuleRelationFragment
    }
    eventsConfigs {
      ...EventConfigFragment
    }
    id
    created
    updated
    title {
      ...TranslationFragment
    }
    description {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    eventStyle {
      ...EventStyleFragment
    }
    titleId
    descriptionId
    createdByGroupId
    createdByUserId
    assignedToGroupId
    eventStyleId
    isCritical
    isOnetime
    isImmediateNotification
    isGlobalRule
    manualDeactivation
    isArchived
    isOneshot
    isActive
    source
    enabled
    purpose
    publicId
    services {
      ...ServiceFragment
    }
    servicesV2 {
      ...ServiceFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "relations": RuleRelationInput,
  "eventsConfigs": [EventConfigInput]
}
Response
{
  "data": {
    "updateRuleAddCheck": {
      "definition": {},
      "module": [Module],
      "moduleId": [HashedId],
      "assetBlacklist": [Asset],
      "assetBlacklistIds": [HashedId],
      "sendNotificationsTo": [RuleNotificationRelation],
      "duration": {},
      "relations": [RuleRelation],
      "eventsConfigs": [EventConfig],
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "title": Translation,
      "description": Translation,
      "createdByUser": User,
      "createdByGroup": Group,
      "assignedToGroup": Group,
      "eventStyle": EventStyle,
      "titleId": HashedId,
      "descriptionId": HashedId,
      "createdByGroupId": HashedId,
      "createdByUserId": HashedId,
      "assignedToGroupId": HashedId,
      "eventStyleId": HashedId,
      "isCritical": true,
      "isOnetime": false,
      "isImmediateNotification": false,
      "isGlobalRule": false,
      "manualDeactivation": false,
      "isArchived": true,
      "isOneshot": false,
      "isActive": true,
      "source": "DATA",
      "enabled": true,
      "purpose": "GEOFENCE",
      "publicId": "xyz789",
      "services": [Service],
      "servicesV2": [Service]
    }
  }
}

updateServicePackageById

Response

Returns a ServicePackage!

Arguments
Name Description
id - HashedId!
input - ServicePackageUpdateInput!

Example

Query
mutation updateServicePackageById(
  $id: HashedId!,
  $input: ServicePackageUpdateInput!
) {
  updateServicePackageById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    titleId
    createdByUserId
    createdByGroupId
    assignedSitesCount
    assignedGroupsCount
    restrictionReason
    services {
      ...ServiceFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    title {
      ...TranslationFragment
    }
    createdByUser {
      ...UserFragment
    }
    canBeDeleted
  }
}
Variables
{
  "id": HashedId,
  "input": ServicePackageUpdateInput
}
Response
{
  "data": {
    "updateServicePackageById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "assignedSitesCount": 987,
      "assignedGroupsCount": 123,
      "restrictionReason": "NOT_IN_CUSTOMER_TREE",
      "services": [Service],
      "createdByGroup": Group,
      "title": Translation,
      "createdByUser": User,
      "canBeDeleted": false
    }
  }
}

updateServices

Description

This can only be used by TS platform admins for now

Response

Returns [Service!]!

Arguments
Name Description
services - [ServiceUpdateDeprecatedInput!]!

Example

Query
mutation updateServices($services: [ServiceUpdateDeprecatedInput!]!) {
  updateServices(services: $services) {
    id
    created
    updated
    titleId
    procedureTemplateId
    publicProcedureTemplateId
    keys
    contentType
    assigneeAutomation
    preset
    type
    iconUrl
    formId
    jotformId
    jotformSource
    isServiceCheck
    assigneeAutomationId
    createdByGroupId
    belongsToGroupTypeId
    suggestedServicePartner
    servicePartner {
      ...AvailableHandlerFragment
    }
    title {
      ...TranslationFragment
    }
    servicePackage {
      ...ServicePackageFragment
    }
    servicePackages {
      ...ServicePackageFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    rules {
      ...RuleFragment
    }
    canBeDeleted
  }
}
Variables
{"services": [ServiceUpdateDeprecatedInput]}
Response
{
  "data": {
    "updateServices": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "titleId": HashedId,
        "procedureTemplateId": HashedId,
        "publicProcedureTemplateId": 987,
        "keys": ["xyz789"],
        "contentType": "formHtml",
        "assigneeAutomation": "SUGGESTED_PARTNER",
        "preset": "BLE",
        "type": "JOT_FORM",
        "iconUrl": "xyz789",
        "formId": "abc123",
        "jotformId": "abc123",
        "jotformSource": "abc123",
        "isServiceCheck": true,
        "assigneeAutomationId": 123,
        "createdByGroupId": HashedId,
        "belongsToGroupTypeId": HashedId,
        "suggestedServicePartner": "abc123",
        "servicePartner": AvailableHandler,
        "title": Translation,
        "servicePackage": ServicePackage,
        "servicePackages": [ServicePackage],
        "procedureTemplate": ProcedureTemplate,
        "createdByGroup": Group,
        "rules": [Rule],
        "canBeDeleted": false
      }
    ]
  }
}

updateSite

Response

Returns [Site!]

Arguments
Name Description
id - HashedId!
externalId - String An id that is referring to some external source. Like an ERP System or another external Task/Order management system This is not a unique identifier in our system. This is technically not feasible!
name - String!

The name of the a site. This is usualy not a clear identifier. Examples of site names would be:

  • Billa
  • WeXelerate
  • Uniqa Wien 1020 This is the name that our customers are using to communicate roughly about what site they mean. To really identify a site they use some kind of contract number.
note - String
isFixed - Boolean! Specifies if the site is tied to a fixed location - like a building. Not fixed locations could be a moving vehicle or a team.
locationText - String
accountNumber - String Account number - arbitrary, for the Manufacturer to assign them their interal description
address - String Formatted address consisting of street and street number
country - String
customerNumber - String Customer number - arbitrary, for the Customer to manage their own Customers
siteManagerName - String Name of the contact person of the site
email - String Email address of the contact person of the site
postalCode - String
telephone - String Telephone number of the contact person of the site
geofenceSettings - JSON Geofence settings, if set. See Rules schema for syntax.
assignedToGroupId - HashedId
coordinates - CoordinatesInput
disableWebhooks - Boolean
geofenceNotification - [RuleNotificationRelationInput] When a geofence event happens, send notifications to these entities

Example

Query
mutation updateSite(
  $id: HashedId!,
  $externalId: String,
  $name: String!,
  $note: String,
  $isFixed: Boolean!,
  $locationText: String,
  $accountNumber: String,
  $address: String,
  $country: String,
  $customerNumber: String,
  $siteManagerName: String,
  $email: String,
  $postalCode: String,
  $telephone: String,
  $geofenceSettings: JSON,
  $assignedToGroupId: HashedId,
  $coordinates: CoordinatesInput,
  $disableWebhooks: Boolean,
  $geofenceNotification: [RuleNotificationRelationInput]
) {
  updateSite(
    id: $id,
    externalId: $externalId,
    name: $name,
    note: $note,
    isFixed: $isFixed,
    locationText: $locationText,
    accountNumber: $accountNumber,
    address: $address,
    country: $country,
    customerNumber: $customerNumber,
    siteManagerName: $siteManagerName,
    email: $email,
    postalCode: $postalCode,
    telephone: $telephone,
    geofenceSettings: $geofenceSettings,
    assignedToGroupId: $assignedToGroupId,
    coordinates: $coordinates,
    disableWebhooks: $disableWebhooks,
    geofenceNotification: $geofenceNotification
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "externalId": "abc123",
  "name": "abc123",
  "note": "abc123",
  "isFixed": false,
  "locationText": "xyz789",
  "accountNumber": "abc123",
  "address": "xyz789",
  "country": "abc123",
  "customerNumber": "abc123",
  "siteManagerName": "xyz789",
  "email": "xyz789",
  "postalCode": "abc123",
  "telephone": "xyz789",
  "geofenceSettings": {},
  "assignedToGroupId": HashedId,
  "coordinates": CoordinatesInput,
  "disableWebhooks": false,
  "geofenceNotification": [RuleNotificationRelationInput]
}
Response
{
  "data": {
    "updateSite": [
      {
        "id": HashedId,
        "externalId": "abc123",
        "name": "abc123",
        "isFixed": true,
        "locationText": "xyz789",
        "address": "abc123",
        "coordinates": Coordinates,
        "assignedToGroup": Group,
        "assignedToGroupId": HashedId,
        "createdByGroup": Group,
        "createdByGroupId": HashedId,
        "accountNumber": "xyz789",
        "customerNumber": "abc123",
        "siteManagerName": "xyz789",
        "email": "abc123",
        "telephone": "abc123",
        "postalCode": "abc123",
        "country": "xyz789",
        "geofenceSettings": {},
        "geofenceNotification": [
          RuleNotificationRelation
        ],
        "containsAssetsToModifyByGroup": false,
        "created": 1592577642,
        "assetsCount": 123,
        "updated": 1592577642,
        "note": "abc123",
        "image": "abc123",
        "parentSite": Site,
        "parentSiteId": HashedId,
        "servicePackageId": HashedId,
        "shouldInheritServicePackage": true,
        "servicePackage": ServicePackage,
        "shouldInheritGeofenceSettings": true,
        "shouldInheritManagerDetails": true,
        "groupTreeRootId": HashedId,
        "lat": "xyz789",
        "lng": "abc123",
        "siteTypeId": HashedId,
        "qrAttached": false,
        "uuid": "abc123",
        "events": [Event],
        "publicId": 987,
        "siteType": SiteType,
        "siteManagers": [SiteManager]
      }
    ]
  }
}

updateSiteImage

Response

Returns a Site!

Arguments
Name Description
siteId - HashedId!
file - Upload!

Example

Query
mutation updateSiteImage(
  $siteId: HashedId!,
  $file: Upload!
) {
  updateSiteImage(
    siteId: $siteId,
    file: $file
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{"siteId": HashedId, "file": Upload}
Response
{
  "data": {
    "updateSiteImage": {
      "id": HashedId,
      "externalId": "abc123",
      "name": "xyz789",
      "isFixed": true,
      "locationText": "abc123",
      "address": "abc123",
      "coordinates": Coordinates,
      "assignedToGroup": Group,
      "assignedToGroupId": HashedId,
      "createdByGroup": Group,
      "createdByGroupId": HashedId,
      "accountNumber": "xyz789",
      "customerNumber": "xyz789",
      "siteManagerName": "abc123",
      "email": "xyz789",
      "telephone": "xyz789",
      "postalCode": "xyz789",
      "country": "abc123",
      "geofenceSettings": {},
      "geofenceNotification": [RuleNotificationRelation],
      "containsAssetsToModifyByGroup": true,
      "created": 1592577642,
      "assetsCount": 123,
      "updated": 1592577642,
      "note": "xyz789",
      "image": "abc123",
      "parentSite": Site,
      "parentSiteId": HashedId,
      "servicePackageId": HashedId,
      "shouldInheritServicePackage": true,
      "servicePackage": ServicePackage,
      "shouldInheritGeofenceSettings": true,
      "shouldInheritManagerDetails": false,
      "groupTreeRootId": HashedId,
      "lat": "abc123",
      "lng": "xyz789",
      "siteTypeId": HashedId,
      "qrAttached": false,
      "uuid": "abc123",
      "events": [Event],
      "publicId": 123,
      "siteType": SiteType,
      "siteManagers": [SiteManager]
    }
  }
}

updateSiteV2

Response

Returns a Site

Arguments
Name Description
siteInput - SiteUpdateInput!
optionsInput - SiteUpdateOptionsInput

Example

Query
mutation updateSiteV2(
  $siteInput: SiteUpdateInput!,
  $optionsInput: SiteUpdateOptionsInput
) {
  updateSiteV2(
    siteInput: $siteInput,
    optionsInput: $optionsInput
  ) {
    id
    externalId
    name
    isFixed
    locationText
    address
    coordinates {
      ...CoordinatesFragment
    }
    assignedToGroup {
      ...GroupFragment
    }
    assignedToGroupId
    createdByGroup {
      ...GroupFragment
    }
    createdByGroupId
    accountNumber
    customerNumber
    siteManagerName
    email
    telephone
    postalCode
    country
    geofenceSettings
    geofenceNotification {
      ...RuleNotificationRelationFragment
    }
    containsAssetsToModifyByGroup
    created
    assetsCount
    updated
    note
    image
    parentSite {
      ...SiteFragment
    }
    parentSiteId
    servicePackageId
    shouldInheritServicePackage
    servicePackage {
      ...ServicePackageFragment
    }
    shouldInheritGeofenceSettings
    shouldInheritManagerDetails
    groupTreeRootId
    lat
    lng
    siteTypeId
    qrAttached
    uuid
    events {
      ...EventFragment
    }
    publicId
    siteType {
      ...SiteTypeFragment
    }
    siteManagers {
      ...SiteManagerFragment
    }
  }
}
Variables
{
  "siteInput": SiteUpdateInput,
  "optionsInput": SiteUpdateOptionsInput
}
Response
{
  "data": {
    "updateSiteV2": {
      "id": HashedId,
      "externalId": "xyz789",
      "name": "abc123",
      "isFixed": true,
      "locationText": "abc123",
      "address": "abc123",
      "coordinates": Coordinates,
      "assignedToGroup": Group,
      "assignedToGroupId": HashedId,
      "createdByGroup": Group,
      "createdByGroupId": HashedId,
      "accountNumber": "xyz789",
      "customerNumber": "abc123",
      "siteManagerName": "xyz789",
      "email": "xyz789",
      "telephone": "xyz789",
      "postalCode": "xyz789",
      "country": "abc123",
      "geofenceSettings": {},
      "geofenceNotification": [RuleNotificationRelation],
      "containsAssetsToModifyByGroup": false,
      "created": 1592577642,
      "assetsCount": 987,
      "updated": 1592577642,
      "note": "abc123",
      "image": "xyz789",
      "parentSite": Site,
      "parentSiteId": HashedId,
      "servicePackageId": HashedId,
      "shouldInheritServicePackage": true,
      "servicePackage": ServicePackage,
      "shouldInheritGeofenceSettings": true,
      "shouldInheritManagerDetails": true,
      "groupTreeRootId": HashedId,
      "lat": "xyz789",
      "lng": "xyz789",
      "siteTypeId": HashedId,
      "qrAttached": true,
      "uuid": "xyz789",
      "events": [Event],
      "publicId": 987,
      "siteType": SiteType,
      "siteManagers": [SiteManager]
    }
  }
}

updateStateByTicketId

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!
input - TicketStateUpdateInput!

Example

Query
mutation updateStateByTicketId(
  $id: HashedId!,
  $input: TicketStateUpdateInput!
) {
  updateStateByTicketId(
    id: $id,
    input: $input
  )
}
Variables
{
  "id": HashedId,
  "input": TicketStateUpdateInput
}
Response
{"data": {"updateStateByTicketId": true}}

updateTeamById

Response

Returns a Team!

Arguments
Name Description
id - HashedId!
input - TeamCreateInput!

Example

Query
mutation updateTeamById(
  $id: HashedId!,
  $input: TeamCreateInput!
) {
  updateTeamById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    nameId
    groupId
    createdByUserId
    createdByGroupId
    assignedToActiveTicketIds
    name {
      ...TranslationFragment
    }
    group {
      ...GroupFragment
    }
    createdByUser {
      ...UserFragment
    }
    createdByGroup {
      ...GroupFragment
    }
    members {
      ...TeamMemberFragment
    }
    servicePackages {
      ... on ServicePackage {
        ...ServicePackageFragment
      }
      ... on RestrictedServicePackage {
        ...RestrictedServicePackageFragment
      }
    }
  }
}
Variables
{
  "id": HashedId,
  "input": TeamCreateInput
}
Response
{
  "data": {
    "updateTeamById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "nameId": HashedId,
      "groupId": HashedId,
      "createdByUserId": HashedId,
      "createdByGroupId": HashedId,
      "assignedToActiveTicketIds": [123],
      "name": Translation,
      "group": Group,
      "createdByUser": User,
      "createdByGroup": Group,
      "members": [TeamMember],
      "servicePackages": [ServicePackage]
    }
  }
}

updateTeamServicePackages

Response

Returns [HashedId!]!

Arguments
Name Description
teamId - HashedId!
servicePackageIds - [HashedId!]!

Example

Query
mutation updateTeamServicePackages(
  $teamId: HashedId!,
  $servicePackageIds: [HashedId!]!
) {
  updateTeamServicePackages(
    teamId: $teamId,
    servicePackageIds: $servicePackageIds
  )
}
Variables
{
  "teamId": HashedId,
  "servicePackageIds": [HashedId]
}
Response
{"data": {"updateTeamServicePackages": [HashedId]}}

updateTerms

Response

Returns a Terms!

Arguments
Name Description
id - HashedId!
title - TranslationInput
content - TranslationInput

Example

Query
mutation updateTerms(
  $id: HashedId!,
  $title: TranslationInput,
  $content: TranslationInput
) {
  updateTerms(
    id: $id,
    title: $title,
    content: $content
  ) {
    id
    created
    updated
    isActive
    titleId
    title {
      ...TranslationFragment
    }
    versions {
      ...TermsHasVersionFragment
    }
    version
    contentId
    content {
      ...TranslationFragment
    }
  }
}
Variables
{
  "id": HashedId,
  "title": TranslationInput,
  "content": TranslationInput
}
Response
{
  "data": {
    "updateTerms": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "isActive": true,
      "titleId": HashedId,
      "title": Translation,
      "versions": [TermsHasVersion],
      "version": 987,
      "contentId": HashedId,
      "content": Translation
    }
  }
}

updateTicketComment

Use "updateTicketCommentById" instead
Response

Returns a TicketComment!

Arguments
Name Description
id - HashedId!
disableWebhooks - Boolean Default = false
attachments - [Upload!]
content - String
documentsIdsToDelete - [HashedId!]
event - UpdateCommentEventInput
newCosts - [NewCostInput!]
changedCosts - [ChangedCostInput!]
costsIdsToDelete - [HashedId!]

Example

Query
mutation updateTicketComment(
  $id: HashedId!,
  $disableWebhooks: Boolean,
  $attachments: [Upload!],
  $content: String,
  $documentsIdsToDelete: [HashedId!],
  $event: UpdateCommentEventInput,
  $newCosts: [NewCostInput!],
  $changedCosts: [ChangedCostInput!],
  $costsIdsToDelete: [HashedId!]
) {
  updateTicketComment(
    id: $id,
    disableWebhooks: $disableWebhooks,
    attachments: $attachments,
    content: $content,
    documentsIdsToDelete: $documentsIdsToDelete,
    event: $event,
    newCosts: $newCosts,
    changedCosts: $changedCosts,
    costsIdsToDelete: $costsIdsToDelete
  ) {
    id
    created
    updated
    createdByUserId
    authorEmail
    createdByUser {
      ...TicketUserFragment
    }
    history {
      ...TicketCommentContentFragment
    }
    content {
      ...TicketCommentContentFragment
    }
    isAutomated
    costs {
      ...CostFragment
    }
    stateEvent {
      ...TicketStateFragment
    }
    attachments {
      ...DocumentFragment
    }
    connectedEventId
    connectedEvent {
      ...EventFragment
    }
    internal
    deleted
  }
}
Variables
{
  "id": HashedId,
  "disableWebhooks": false,
  "attachments": [Upload],
  "content": "abc123",
  "documentsIdsToDelete": [HashedId],
  "event": UpdateCommentEventInput,
  "newCosts": [NewCostInput],
  "changedCosts": [ChangedCostInput],
  "costsIdsToDelete": [HashedId]
}
Response
{
  "data": {
    "updateTicketComment": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "createdByUserId": HashedId,
      "authorEmail": "xyz789",
      "createdByUser": TicketUser,
      "history": [TicketCommentContent],
      "content": TicketCommentContent,
      "isAutomated": false,
      "costs": [Cost],
      "stateEvent": TicketState,
      "attachments": [Document],
      "connectedEventId": HashedId,
      "connectedEvent": Event,
      "internal": true,
      "deleted": 1592577642
    }
  }
}

updateTicketCommentById

Response

Returns a TicketComment!

Arguments
Name Description
id - HashedId!
input - TicketCommentUpdateInput!

Example

Query
mutation updateTicketCommentById(
  $id: HashedId!,
  $input: TicketCommentUpdateInput!
) {
  updateTicketCommentById(
    id: $id,
    input: $input
  ) {
    id
    created
    updated
    createdByUserId
    authorEmail
    createdByUser {
      ...TicketUserFragment
    }
    history {
      ...TicketCommentContentFragment
    }
    content {
      ...TicketCommentContentFragment
    }
    isAutomated
    costs {
      ...CostFragment
    }
    stateEvent {
      ...TicketStateFragment
    }
    attachments {
      ...DocumentFragment
    }
    connectedEventId
    connectedEvent {
      ...EventFragment
    }
    internal
    deleted
  }
}
Variables
{
  "id": HashedId,
  "input": TicketCommentUpdateInput
}
Response
{
  "data": {
    "updateTicketCommentById": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "createdByUserId": HashedId,
      "authorEmail": "xyz789",
      "createdByUser": TicketUser,
      "history": [TicketCommentContent],
      "content": TicketCommentContent,
      "isAutomated": false,
      "costs": [Cost],
      "stateEvent": TicketState,
      "attachments": [Document],
      "connectedEventId": HashedId,
      "connectedEvent": Event,
      "internal": true,
      "deleted": 1592577642
    }
  }
}

updateTicketState

use "updateStateByTicketId" instead
Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!
disableWebhooks - Boolean Default = false
note - String
attachments - [Upload!]
event - UpdateTicketStateEventInput
costs - [NewCostInput!]
assignCurrentUser - Boolean Default = false
stateId - HashedId
stateKey - String

Example

Query
mutation updateTicketState(
  $id: HashedId!,
  $disableWebhooks: Boolean,
  $note: String,
  $attachments: [Upload!],
  $event: UpdateTicketStateEventInput,
  $costs: [NewCostInput!],
  $assignCurrentUser: Boolean,
  $stateId: HashedId,
  $stateKey: String
) {
  updateTicketState(
    id: $id,
    disableWebhooks: $disableWebhooks,
    note: $note,
    attachments: $attachments,
    event: $event,
    costs: $costs,
    assignCurrentUser: $assignCurrentUser,
    stateId: $stateId,
    stateKey: $stateKey
  )
}
Variables
{
  "id": HashedId,
  "disableWebhooks": false,
  "note": "xyz789",
  "attachments": [Upload],
  "event": UpdateTicketStateEventInput,
  "costs": [NewCostInput],
  "assignCurrentUser": false,
  "stateId": HashedId,
  "stateKey": "abc123"
}
Response
{"data": {"updateTicketState": false}}

updateTicketUrgency

Response

Returns a Boolean!

Arguments
Name Description
id - HashedId!
urgency - TicketUrgencyEnum!

Example

Query
mutation updateTicketUrgency(
  $id: HashedId!,
  $urgency: TicketUrgencyEnum!
) {
  updateTicketUrgency(
    id: $id,
    urgency: $urgency
  )
}
Variables
{"id": HashedId, "urgency": "CRITICAL"}
Response
{"data": {"updateTicketUrgency": true}}

updateTicketView

Description

update a ticket view

Response

Returns a TicketView!

Arguments
Name Description
view - TicketViewUpdateInput!

Example

Query
mutation updateTicketView($view: TicketViewUpdateInput!) {
  updateTicketView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...TicketViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": TicketViewUpdateInput}
Response
{
  "data": {
    "updateTicketView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": TicketViewOptions,
      "isActive": false,
      "isSystemView": true,
      "isShared": true,
      "isEditable": true,
      "isDeletable": false,
      "isShareable": false,
      "isUnsharedByParentGroup": false,
      "title": Translation
    }
  }
}

updateTripsView

Description

update a ticket view

Response

Returns a TripsView!

Arguments
Name Description
view - TripsViewUpdateInput!

Example

Query
mutation updateTripsView($view: TripsViewUpdateInput!) {
  updateTripsView(view: $view) {
    id
    created
    updated
    titleId
    forEntity
    displayMode
    options {
      ...TripsViewOptionsFragment
    }
    isActive
    isSystemView
    isShared
    isEditable
    isDeletable
    isShareable
    isUnsharedByParentGroup
    title {
      ...TranslationFragment
    }
  }
}
Variables
{"view": TripsViewUpdateInput}
Response
{
  "data": {
    "updateTripsView": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "titleId": HashedId,
      "forEntity": "ASSET",
      "displayMode": "LIST",
      "options": TripsViewOptions,
      "isActive": false,
      "isSystemView": false,
      "isShared": false,
      "isEditable": true,
      "isDeletable": true,
      "isShareable": false,
      "isUnsharedByParentGroup": true,
      "title": Translation
    }
  }
}

updateUser

Response

Returns [User!]

Arguments
Name Description
dashboardId - HashedId
firstname - String
isSSOEnabled - Boolean
lastname - String
locale - String
phone - String
settings - JSON
settingsPath - String
supportAdmin - Boolean
timezone - String
username - String keeping it for backward compatibility, if passed value for username it will be ignored
label - String
canShareViews - Boolean
info - JSON
id - HashedId!
apiKey - String
password - String
image - String
belongsToGroupId - HashedId
email - String
roleId - HashedId
languageId - HashedId

Example

Query
mutation updateUser(
  $dashboardId: HashedId,
  $firstname: String,
  $isSSOEnabled: Boolean,
  $lastname: String,
  $locale: String,
  $phone: String,
  $settings: JSON,
  $settingsPath: String,
  $supportAdmin: Boolean,
  $timezone: String,
  $username: String,
  $label: String,
  $canShareViews: Boolean,
  $info: JSON,
  $id: HashedId!,
  $apiKey: String,
  $password: String,
  $image: String,
  $belongsToGroupId: HashedId,
  $email: String,
  $roleId: HashedId,
  $languageId: HashedId
) {
  updateUser(
    dashboardId: $dashboardId,
    firstname: $firstname,
    isSSOEnabled: $isSSOEnabled,
    lastname: $lastname,
    locale: $locale,
    phone: $phone,
    settings: $settings,
    settingsPath: $settingsPath,
    supportAdmin: $supportAdmin,
    timezone: $timezone,
    username: $username,
    label: $label,
    canShareViews: $canShareViews,
    info: $info,
    id: $id,
    apiKey: $apiKey,
    password: $password,
    image: $image,
    belongsToGroupId: $belongsToGroupId,
    email: $email,
    roleId: $roleId,
    languageId: $languageId
  ) {
    id
    created
    updated
    publicId
    firstname
    lastname
    password
    email
    phone
    fullName
    groupId
    roleId
    isSupportAdmin
    canShareViews
    isSSOEnabled
    languageId
    language
    languageCode
    dashboardId
    locale
    timezone
    label
    apiKey
    image
    activated
    isServicing
    info
    stripeSubscriptionId
    deleted
    username
    supportAdmin
    belongsToGroupId
    lastLogin
    services
    dashboard
    notifications
    notificationIds
    checkPassword
    loginInterrupts
    loginInterruptIds
    subscription {
      ...StripeSubscriptionPlanFragment
    }
    belongsToGroup {
      ...GroupFragment
    }
    group {
      ...GroupFragment
    }
    role {
      ...RoleFragment
    }
    teams {
      ...TeamFragment
    }
    hasMultipleGroups
    groups {
      ...GroupFragment
    }
    unavailability {
      ...UserUnavailabilityFragment
    }
    settings
  }
}
Variables
{
  "dashboardId": HashedId,
  "firstname": "abc123",
  "isSSOEnabled": false,
  "lastname": "xyz789",
  "locale": "xyz789",
  "phone": "xyz789",
  "settings": {},
  "settingsPath": "abc123",
  "supportAdmin": false,
  "timezone": "abc123",
  "username": "abc123",
  "label": "abc123",
  "canShareViews": false,
  "info": {},
  "id": HashedId,
  "apiKey": "xyz789",
  "password": "xyz789",
  "image": "abc123",
  "belongsToGroupId": HashedId,
  "email": "xyz789",
  "roleId": HashedId,
  "languageId": HashedId
}
Response
{
  "data": {
    "updateUser": [
      {
        "id": HashedId,
        "created": 1592577642,
        "updated": 1592577642,
        "publicId": 987,
        "firstname": "abc123",
        "lastname": "abc123",
        "password": "abc123",
        "email": "abc123",
        "phone": "abc123",
        "fullName": "abc123",
        "groupId": HashedId,
        "roleId": HashedId,
        "isSupportAdmin": false,
        "canShareViews": false,
        "isSSOEnabled": false,
        "languageId": HashedId,
        "language": HashedId,
        "languageCode": "ENGLISH",
        "dashboardId": HashedId,
        "locale": LanguageTag,
        "timezone": "xyz789",
        "label": "xyz789",
        "apiKey": "xyz789",
        "image": "xyz789",
        "activated": 1592577642,
        "isServicing": false,
        "info": {},
        "stripeSubscriptionId": "abc123",
        "deleted": 1592577642,
        "username": "abc123",
        "supportAdmin": true,
        "belongsToGroupId": HashedId,
        "lastLogin": "2007-12-03T10:15:30Z",
        "services": [{}],
        "dashboard": {},
        "notifications": [{}],
        "notificationIds": [HashedId],
        "checkPassword": true,
        "loginInterrupts": {},
        "loginInterruptIds": [HashedId],
        "subscription": StripeSubscriptionPlan,
        "belongsToGroup": Group,
        "group": Group,
        "role": Role,
        "teams": [Team],
        "hasMultipleGroups": true,
        "groups": [Group],
        "unavailability": [UserUnavailability],
        "settings": {}
      }
    ]
  }
}

updateUserImage

Description

Accepts jpg, jpeg, webp, gif, png (case insensitive). Will be contained to a 500px square with white background. 3 images generated: - _2x for high dpi screens - no suffix, half of the default size, this url will be provided - _thumb - 100px thumbnail Send an empty value to remove the image.

Response

Returns a File!

Arguments
Name Description
id - HashedId!
file - Upload!

Example

Query
mutation updateUserImage(
  $id: HashedId!,
  $file: Upload!
) {
  updateUserImage(
    id: $id,
    file: $file
  ) {
    id
    path
    filename
    mimetype
  }
}
Variables
{"id": HashedId, "file": Upload}
Response
{
  "data": {
    "updateUserImage": {
      "id": "4",
      "path": "xyz789",
      "filename": "abc123",
      "mimetype": "abc123"
    }
  }
}

updateViewShareStatus

Description

Update whether a view is shared with the current group and return new shared status.

Response

Returns a Boolean!

Arguments
Name Description
view - IdInput!
shared - Boolean!

Example

Query
mutation updateViewShareStatus(
  $view: IdInput!,
  $shared: Boolean!
) {
  updateViewShareStatus(
    view: $view,
    shared: $shared
  )
}
Variables
{"view": IdInput, "shared": true}
Response
{"data": {"updateViewShareStatus": false}}

updateWebhook

Response

Returns a Webhook!

Arguments
Name Description
input - WebhookUpdateInput!

Example

Query
mutation updateWebhook($input: WebhookUpdateInput!) {
  updateWebhook(input: $input) {
    id
    created
    updated
    groupId
    url
    forTickets
    forSites
    forAssets
    forWorkOrders
  }
}
Variables
{"input": WebhookUpdateInput}
Response
{
  "data": {
    "updateWebhook": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "groupId": HashedId,
      "url": "abc123",
      "forTickets": true,
      "forSites": true,
      "forAssets": false,
      "forWorkOrders": true
    }
  }
}

updateWorkOrder

Response

Returns a WorkOrderV2!

Arguments
Name Description
workOrder - WorkOrderUpdateInput!

Example

Query
mutation updateWorkOrder($workOrder: WorkOrderUpdateInput!) {
  updateWorkOrder(workOrder: $workOrder) {
    id
    created
    updated
    name
    startDate
    endDate
    createdByGroupId
    procedureTemplateId
    creatorId
    creationDate
    customerName
    status
    notesId
    costCenter
    siteId
    creator {
      ...UserFragment
    }
    procedureTemplate {
      ...ProcedureTemplateFragment
    }
    site {
      ...SiteFragment
    }
    workOrderNumber
    notes {
      ...TranslationFragment
    }
    sourceTicketId
    assignee {
      ...WorkOrderPersonnelV2Fragment
    }
    followers {
      ...WorkOrderPersonnelV2Fragment
    }
    workers {
      ...WorkOrderPersonnelV2Fragment
    }
    costs {
      ...WorkOrderCostFragment
    }
    dailyRate {
      ...WorkOrderCostFragment
    }
    assetCollections {
      ...WorkOrderAssetCollectionFragment
    }
    assets {
      ...AssetFragment
    }
    locations {
      ...WorkOrderLocationFragment
    }
    history {
      ...WorkOrderHistoryEntryFragment
    }
  }
}
Variables
{"workOrder": WorkOrderUpdateInput}
Response
{
  "data": {
    "updateWorkOrder": {
      "id": HashedId,
      "created": 1592577642,
      "updated": 1592577642,
      "name": "abc123",
      "startDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "createdByGroupId": HashedId,
      "procedureTemplateId": HashedId,
      "creatorId": HashedId,
      "creationDate": "2007-12-03T10:15:30Z",
      "customerName": "abc123",
      "status": "PENDING",
      "notesId": HashedId,
      "costCenter": "abc123",
      "siteId": HashedId,
      "creator": User,
      "procedureTemplate": ProcedureTemplate,
      "site": Site,
      "workOrderNumber": 987,
      "notes": Translation,
      "sourceTicketId": HashedId,
      "assignee": WorkOrderPersonnelV2,
      "followers": [WorkOrderPersonnelV2],
      "workers": [WorkOrderPersonnelV2],
      "costs": [WorkOrderCost],
      "dailyRate": WorkOrderCost,
      "assetCollections": [WorkOrderAssetCollection],
      "assets": [Asset],
      "locations": [WorkOrderLocation],
      "history": [WorkOrderHistoryEntry]
    }
  }
}

Types

Address

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
location - String!
latitude - Float!
longitude - Float!
address - String!
translations - JSON!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "location": "abc123",
  "latitude": 123.45,
  "longitude": 987.65,
  "address": "abc123",
  "translations": {}
}

Asset

Fields
Field Name Description
publicId - Int!
isCommodity - Boolean!

Assets can be either tracked or commodity. - Tracked assets are machines that have a ToolSense module inside and thus send data (therefore they have stats like battery, runtime, error codes, etc.) Since they have a module, they have an IMEI number identifying it. - Commodity assets are any asset that has no attached module - they only exist in the system for inventory purposes. Such assets can be machines, tools, or any noteworthy work material. With commodity assets, and their assignment to other groups, the interface can be also used as a general inventory/asset management system.

This is a generated value, and reflects if this asset has an associated Module.
moduleId - HashedId
assignedToGroupId - HashedId!
allowReservations - Boolean When set, reservations are explicitly allowed for this asset.
assetCategoryId - HashedId!
assetTypeId - HashedId!
assignment - String
availabilityId - HashedId
BLE - String
client - String
commissionDate - Date
costCenter - String
created - Timestamp!
createdByGroupId - HashedId!
currency - String An optional currency string that overrides the group currency
customer - String
customerEditable - Boolean With this flag the OEM can allow end-customers to edit assets
descriptionId - HashedId
externalId - String External id should only be filled by a machine. This is used to couple an external asset with an internal asset. An external Asset is an asset that represents the same physical thing but in a different system.
fixedAssetNumber - String
floorRoom - String
image - String
initialValue - String
inventoryNumber - String
isInStationaryGateway - Boolean
isLocked - Boolean
leasingCostTermination - String
leasingEnd - Date
leasingLevel - String
leasingMonthlyCost - String
leasingPartner - String
leasingPartnerContractNumber - String
leasingPartnerContractPositionNumber - String
leasingRenewalDate - Date
leasingRenewalRate - String
leasingStart - Date
manufacturerId - HashedId!
optionalAssetID - String
ownershipId - HashedId
partsNumber - String
previousSiteId - HashedId
projectNumber - String
purchaseCost - String
purchaseDepriciation - Int
purchaseInvoiceNumber - String
purchaseLowValueAsset - Boolean
purchaseStart - Date
purchaseWarrantyEnd - Date
purchaseWarrantyPeriod - Int
purchaseWarrantyStart - Date
qrAttached - Boolean
quantity - Int
rentalCostTermination - String
rentalEnd - Date
rentalMonthlyCost - String
rentalRenewalDate - Date
rentalRenewalRate - String
rentalStart - Date
responsiblePerson - String
runtimeWithOffsetInSeconds - Int
serial - String
serviceContract - Boolean
serviceContractCostPerYear - String
serviceContractEmail - String
serviceContractEnd - Date
serviceContractFrom - Timestamp
serviceContractLevel - String
serviceContractPartner - String
serviceContractStart - Date
serviceContractTo - Timestamp
siteId - HashedId
assignedToSiteId - HashedId Use siteId instead
supplier - String
updated - Timestamp
uuid - String!
id - HashedId!
stateV2 - [AssetStateItem!]!
state - AssetState!
serviceContractDocuments - [Document!]
availability - AssetAvailability
ownership - AssetOwnership
module - Module
scanTime - Date
imei - String!
costsSum - Float!
costsSumBattery - Float!
costsSumRepair - Float!
costsSumMaintenance - Float!
costsSumParts - Float!
costsSumConsumables - Float!
costsSumFuel - Float!
costsSumLabor - Float!
costsSumLogistics - Float!
costsSumTaxes - Float!
costsSumOther - Float!
costsSumCertification - Float!
parameterOffsetIds - [HashedId!]!
reservationIds - [HashedId!]!
moduleConnectionStatus - AssetModuleConnectionStatusEnum!
relatedGroups - [RelatedGroup!]!
checkScheduleRule - AssetCheckScheduleRule
tickets - [Ticket!]!
lastTicketDate - DateTime
totalUtilization - String
totalWorkDone - String
purchaseCurrentBookValue - String
batteryLevel - String
lastContacted - Timestamp
vncTunnelUrl - String
subscription - String We don't manage subscriptions over our API anymore
ticketsCount - String Was not implemented in old schema, copied to keep backwards compatibility
workingHoursSettings - JSON
workingHoursNotification - [RuleNotificationRelation!]!
gatewayAsset - Asset
services - [Service!]! Services associated to current group's servicePackage
Arguments
primaryServicePackage - ServicePackageWithSourceType
eventIds - [HashedId!]!
Arguments
eventStyleKey - EventTypeEnum
createdByUserId - [HashedId!]
createdByRuleId - [HashedId!]
createdByWorkOrderId - [HashedId!]
createdByTicketId - [HashedId!]
currentlyActive - Boolean
startDateFilter - EventDateFilter
endDateFilter - EventDateFilter
createdDateFilter - EventDateFilter
nextService - Int
downloadLink - String!
Arguments
activity - AssetActivity!
latestAssetData - JSON
location - Location
parameterSets - [ParameterSet!]! Assets send data through parameter values - parameters are the keys in a collection of key-value pairs. This prop lists all the parameters currently sent by the module in this asset. As the list may change through module or assetIntegration versions, you can list all the parameters that was ever delivered by this module through the historicalParameters switch in the asset query. Parameters are grouped in Sets, as many of them are closely related (eg. high-low voltage param of the same value). Standalone parameters are in the virtual set called 'Standalone', with a fake 'standalone' id and a single parameters array. Sets with no or filtered parameters are not returned. - graphableParameters: only list parameters/parametersets which can be displayed on a graph (eg. hide values like imei, id, or latitude)
Arguments
graphableParameters - Boolean
activeCustomFields - [CustomField!]!
Arguments
archivedCustomFields - [CustomField!]!
Arguments
status - [StatusItem!]!
displayParameters - [DisplayParameter!]!
latestTrip - AssetTripLatest
unavailability - [AssetUnavailability!]!
Arguments
reservations - [Reservation!]!
parameterOffsets - [AssetParameterOffset!]!
costs - [Cost!]!
manufacturer - Manufacturer!
createdByGroup - Group
assetType - AssetType!
assetCategory - AssetCategory!
assignedToGroup - Group!
site - Site
assignedToSite - Site Use site instead
assignedToPreviousSite - Site
documents - [Document!]!
Arguments
purpose - String
events - [Event!]!
Arguments
eventStyleKey - EventTypeEnum
createdByUserId - [HashedId!]
createdByRuleId - [HashedId!]
createdByWorkOrderId - [HashedId!]
createdByTicketId - [HashedId!]
currentlyActive - Boolean
startDateFilter - EventDateFilter
endDateFilter - EventDateFilter
createdDateFilter - EventDateFilter
description - Translation
checkSchedule - AssetCheckSchedule
maintenanceSchedule - AssetMaintenanceSchedule
workOrders - [WorkOrderV2!]!
Arguments
from - Timestamp
to - Timestamp
Example
{
  "publicId": 123,
  "isCommodity": true,
  "moduleId": HashedId,
  "assignedToGroupId": HashedId,
  "allowReservations": true,
  "assetCategoryId": HashedId,
  "assetTypeId": HashedId,
  "assignment": "xyz789",
  "availabilityId": HashedId,
  "BLE": "abc123",
  "client": "abc123",
  "commissionDate": "2007-12-03",
  "costCenter": "xyz789",
  "created": 1592577642,
  "createdByGroupId": HashedId,
  "currency": "xyz789",
  "customer": "xyz789",
  "customerEditable": false,
  "descriptionId": HashedId,
  "externalId": "abc123",
  "fixedAssetNumber": "abc123",
  "floorRoom": "xyz789",
  "image": "abc123",
  "initialValue": "abc123",
  "inventoryNumber": "abc123",
  "isInStationaryGateway": true,
  "isLocked": false,
  "leasingCostTermination": "xyz789",
  "leasingEnd": "2007-12-03",
  "leasingLevel": "xyz789",
  "leasingMonthlyCost": "abc123",
  "leasingPartner": "xyz789",
  "leasingPartnerContractNumber": "abc123",
  "leasingPartnerContractPositionNumber": "abc123",
  "leasingRenewalDate": "2007-12-03",
  "leasingRenewalRate": "xyz789",
  "leasingStart": "2007-12-03",
  "manufacturerId": HashedId,
  "optionalAssetID": "abc123",
  "ownershipId": HashedId,
  "partsNumber": "xyz789",
  "previousSiteId": HashedId,
  "projectNumber": "abc123",
  "purchaseCost": "abc123",
  "purchaseDepriciation": 987,
  "purchaseInvoiceNumber": "abc123",
  "purchaseLowValueAsset": false,
  "purchaseStart": "2007-12-03",
  "purchaseWarrantyEnd": "2007-12-03",
  "purchaseWarrantyPeriod": 123,
  "purchaseWarrantyStart": "2007-12-03",
  "qrAttached": true,
  "quantity": 987,
  "rentalCostTermination": "xyz789",
  "rentalEnd": "2007-12-03",
  "rentalMonthlyCost": "xyz789",
  "rentalRenewalDate": "2007-12-03",
  "rentalRenewalRate": "xyz789",
  "rentalStart": "2007-12-03",
  "responsiblePerson": "xyz789",
  "runtimeWithOffsetInSeconds": 987,
  "serial": "xyz789",
  "serviceContract": true,
  "serviceContractCostPerYear": "xyz789",
  "serviceContractEmail": "xyz789",
  "serviceContractEnd": "2007-12-03",
  "serviceContractFrom": 1592577642,
  "serviceContractLevel": "xyz789",
  "serviceContractPartner": "abc123",
  "serviceContractStart": "2007-12-03",
  "serviceContractTo": 1592577642,
  "siteId": HashedId,
  "assignedToSiteId": HashedId,
  "supplier": "xyz789",
  "updated": 1592577642,
  "uuid": "abc123",
  "id": HashedId,
  "stateV2": [AssetStateItem],
  "state": AssetState,
  "serviceContractDocuments": [Document],
  "availability": "READY_TO_USE",
  "ownership": "PURCHASE",
  "module": Module,
  "scanTime": "2007-12-03",
  "imei": "abc123",
  "costsSum": 123.45,
  "costsSumBattery": 987.65,
  "costsSumRepair": 987.65,
  "costsSumMaintenance": 987.65,
  "costsSumParts": 123.45,
  "costsSumConsumables": 123.45,
  "costsSumFuel": 123.45,
  "costsSumLabor": 987.65,
  "costsSumLogistics": 123.45,
  "costsSumTaxes": 123.45,
  "costsSumOther": 123.45,
  "costsSumCertification": 123.45,
  "parameterOffsetIds": [HashedId],
  "reservationIds": [HashedId],
  "moduleConnectionStatus": "primary",
  "relatedGroups": [RelatedGroup],
  "checkScheduleRule": AssetCheckScheduleRule,
  "tickets": [Ticket],
  "lastTicketDate": "2007-12-03T10:15:30Z",
  "totalUtilization": "abc123",
  "totalWorkDone": "xyz789",
  "purchaseCurrentBookValue": "xyz789",
  "batteryLevel": "abc123",
  "lastContacted": 1592577642,
  "vncTunnelUrl": "xyz789",
  "subscription": "xyz789",
  "ticketsCount": "xyz789",
  "workingHoursSettings": {},
  "workingHoursNotification": [RuleNotificationRelation],
  "gatewayAsset": Asset,
  "services": [Service],
  "primaryServicePackage": ServicePackageWithSourceType,
  "eventIds": [HashedId],
  "nextService": 123,
  "downloadLink": "abc123",
  "activity": AssetActivity,
  "latestAssetData": {},
  "location": Location,
  "parameterSets": [ParameterSet],
  "activeCustomFields": [CustomField],
  "archivedCustomFields": [CustomField],
  "status": [StatusItem],
  "displayParameters": [DisplayParameter],
  "latestTrip": AssetTripLatest,
  "unavailability": [AssetUnavailability],
  "reservations": [Reservation],
  "parameterOffsets": [AssetParameterOffset],
  "costs": [Cost],
  "manufacturer": Manufacturer,
  "createdByGroup": Group,
  "assetType": AssetType,
  "assetCategory": AssetCategory,
  "assignedToGroup": Group,
  "site": Site,
  "assignedToSite": Site,
  "assignedToPreviousSite": Site,
  "documents": [Document],
  "events": [Event],
  "description": Translation,
  "checkSchedule": AssetCheckSchedule,
  "maintenanceSchedule": AssetMaintenanceSchedule,
  "workOrders": [WorkOrderV2]
}

AssetActivity

Fields
Field Name Description
id - HashedId!
downloadLink - String!
Arguments
locale - LocaleInput!
parameterIds - [HashedId!]!
timeFrom - Timestamp
timeTo - Timestamp
includeOverview - Boolean
includeMonthlySummary - Boolean
includeTimeLog - Boolean
title - String
Example
{
  "id": HashedId,
  "downloadLink": "abc123"
}

AssetAvailability

Values
Enum Value Description

READY_TO_USE

DAMAGED

IN_REPAIR

RETIRED

WAREHOUSE

ORDERED

NEEDS_APPROVAL

BORROWED

IN_TRANSIT

TO_BE_ASSIGNED

Example
"READY_TO_USE"

AssetBLEChecker

Fields
Field Name Description
msg - String
duplicateAsset - Asset
Example
{
  "msg": "abc123",
  "duplicateAsset": Asset
}

AssetCategory

Description

Asset category describes what the assets contained in it are - eg. wall saw, floor cleaner, hammer. Categories are specific to manufacturers.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
image - String Image (url) for this category. Should also be used for assettype or asset image if they don't have it provided
externalId - String
forManufacturerId - HashedId!
groupId - HashedId
servicePackageId - HashedId
isPrivate - Boolean! Listed to users outside this group hierarchy - 'publicly' available. May be used to contain yet unreleased models
publicId - Int!
nameId - HashedId!
minimalBatteryVoltage - Float
nominalBatteryVoltage - Float
optimalBatteryVoltage - Float
optimalRuntime - Float
parentParameterKey - AssetParentParameter
workUnitsPerHour - Float
workUnitId - HashedId
name - Translation
group - Group!
manufacturer - Manufacturer! Categories are specific for a manufacturer
workUnits - Translation
assetsCount - Int
servicePackage - ServicePackage
forManufacturer - Manufacturer
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "image": "abc123",
  "externalId": "xyz789",
  "forManufacturerId": HashedId,
  "groupId": HashedId,
  "servicePackageId": HashedId,
  "isPrivate": false,
  "publicId": 123,
  "nameId": HashedId,
  "minimalBatteryVoltage": 123.45,
  "nominalBatteryVoltage": 123.45,
  "optimalBatteryVoltage": 987.65,
  "optimalRuntime": 987.65,
  "parentParameterKey": "runtime",
  "workUnitsPerHour": 123.45,
  "workUnitId": HashedId,
  "name": Translation,
  "group": Group,
  "manufacturer": Manufacturer,
  "workUnits": Translation,
  "assetsCount": 987,
  "servicePackage": ServicePackage,
  "forManufacturer": Manufacturer
}

AssetCategoryPaginatedDto

Fields
Field Name Description
rows - [AssetCategory!]!
meta - PaginationMeta!
total - Int!
Example
{
  "rows": [AssetCategory],
  "meta": PaginationMeta,
  "total": 987
}

AssetCheckSchedule

Fields
Field Name Description
id - HashedId!
assetId - HashedId!
name - String!
interval - Int!
lastCheck - Date
nextCheck - Date!
daysToNextCheck - Int!
lastCheckLastEdited - AssetCheckScheduleEditNote
nextCheckLastEdited - AssetCheckScheduleEditNote
Example
{
  "id": HashedId,
  "assetId": HashedId,
  "name": "abc123",
  "interval": 987,
  "lastCheck": "2007-12-03",
  "nextCheck": "2007-12-03",
  "daysToNextCheck": 123,
  "lastCheckLastEdited": AssetCheckScheduleEditNote,
  "nextCheckLastEdited": AssetCheckScheduleEditNote
}

AssetCheckScheduleEditNote

Fields
Field Name Description
user - User
timestamp - Timestamp!
Example
{"user": User, "timestamp": 1592577642}

AssetCheckScheduleRule

Fields
Field Name Description
id - HashedId!
assetId - HashedId!
name - String!
interval - Int!
lastCheck - DateStringOrIsoDateTime
nextCheck - DateStringOrIsoDateTime!
daysToNextCheck - Int!
timeframe - RuleInterval!
Example
{
  "id": HashedId,
  "assetId": HashedId,
  "name": "xyz789",
  "interval": 987,
  "lastCheck": DateStringOrIsoDateTime,
  "nextCheck": DateStringOrIsoDateTime,
  "daysToNextCheck": 987,
  "timeframe": "y"
}

AssetData

Description

AssetData is the data object sent from the module attached to this asset. It contains parameters and values (either provided by the Toolsense module or manufacturer inverter) needed for statistics and analysis.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByModuleImei - String
createdByAssetId - HashedId
createdByAsset - Asset
createdByModuleId - HashedId
createdByModule - Module
data - JSON A JSON formated String including the data of the last sending
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByModuleImei": "xyz789",
  "createdByAssetId": HashedId,
  "createdByAsset": Asset,
  "createdByModuleId": HashedId,
  "createdByModule": Module,
  "data": {}
}

AssetDataDownloadLocaleInput

Fields
Input Field Description
language - LanguageLocaleEnum!
timezone - String!
headerLocal - String!
headerUTC - String!
brandColor - String
Example
{
  "language": "en_us",
  "timezone": "xyz789",
  "headerLocal": "xyz789",
  "headerUTC": "xyz789",
  "brandColor": "abc123"
}

AssetEventColumnEnum

Values
Enum Value Description

ID

ASSET_ID

ASSET_SERIAL

ASSET_CATEGORY

ASSET_TYPE

ASSET_INVENTORY_NUMBER

ASSET_VEHICLE

ASSET_EXTERNAL_ID

ASSET_FIXED_NUMBER

ASSET_BRAND

ASSET_OPTIONAL_ID

SITE_ID

SITE_NAME

SYMBOL

TITLE

TYPE

STATUS

START_TIME

END_TIME

DUE_ON

LAST_DATE

Example
"ID"

AssetEventPaginatedDto

Fields
Field Name Description
rows - [Event!]!
meta - PaginationMeta!
total - Int!
Example
{
  "rows": [Event],
  "meta": PaginationMeta,
  "total": 123
}

AssetEventView

Description

configuration for an asset event view

Fields
Field Name Description
id - HashedId! id (hashed) of the view. can be used to re-order the view, or adjust sharing etc.
created - Timestamp!
updated - Timestamp
titleId - HashedId! human-readable, user-input name that is given upon view creation. EXCEPT when isSystemView is true, then this is a string identifier for the view (e.g. "asset-gantt")
forEntity - ViewEntityEnum! type of entity that this view is for (e.g. ASSET)
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - AssetEventViewOptions! options describing pagination, filters and columns available in the view
isActive - Boolean! whether this view is enabled for this account
isSystemView - Boolean! whether this is a system view (inherited from toolsense system). System views can only be shared/unshared; they cannot be edited.
isShared - Boolean! whether this view can be seen by other members of this group, and sub-groups
isEditable - Boolean! whether this account can change this view's display mode, name or options
isDeletable - Boolean! whether this account can delete this view
isShareable - Boolean! whether this account can share or unshare this view to this group and sub-groups
isUnsharedByParentGroup - Boolean! whether this view has been unshared by a parent of this group
title - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "forEntity": "ASSET",
  "displayMode": "LIST",
  "options": AssetEventViewOptions,
  "isActive": false,
  "isSystemView": false,
  "isShared": true,
  "isEditable": false,
  "isDeletable": false,
  "isShareable": true,
  "isUnsharedByParentGroup": true,
  "title": Translation
}

AssetEventViewCreateInput

Description

input used to create a new asset event view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - AssetEventViewOptionsInput! display options to be stored with this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "options": AssetEventViewOptionsInput,
  "title": TranslationInput
}

AssetEventViewOptions

Description

options controlling how a view is displayed

Fields
Field Name Description
search - String general search string to filter the items in this view
filters - [Filters] well defined filters for this view
itemsPerPage - Int! number of items per page in this view
columns - [AssetEventColumnEnum!]! asset event columns enabled for this view
Example
{
  "search": "xyz789",
  "filters": [Filters],
  "itemsPerPage": 987,
  "columns": ["ID"]
}

AssetEventViewOptionsInput

Description

options for displaying a view

Fields
Input Field Description
filters - [FilterParamsInput]
search - String
itemsPerPage - Int! number of asset events per page in the view
columns - [AssetEventColumnEnum!]! ordered asset event columns that are to be displayed in this view
Example
{
  "filters": [FilterParamsInput],
  "search": "abc123",
  "itemsPerPage": 987,
  "columns": ["ID"]
}

AssetEventViewUpdateInput

Description

input for updating an asset view

Fields
Input Field Description
id - HashedId!
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - AssetEventViewOptionsInput! options for displaying asset events in this view
title - TranslationInput!
Example
{
  "id": HashedId,
  "displayMode": "LIST",
  "options": AssetEventViewOptionsInput,
  "title": TranslationInput
}

AssetFilter

Fields
Field Name Description
size - Int!
assets - [Asset]!
created - TemporalFilter!
sentData - TemporalFilter!
Arguments
forParameter - WellKnownParameterKey
valueSliceById - AssetFilter
Arguments
valueSliceByValue - AssetFilter
Arguments
valueSlices - [StatisticValueSlice]!
Arguments
rangeSlice - AssetFilter!
Arguments
usingPeriod - AssetFilter!
Arguments
from - Timestamp!
to - Timestamp!
withEvents - [EventFilter]!
Arguments
eventStyles - [EventStyleKey!]
nonCriticalErrorsAreWarnings - Boolean
withoutEvents - AssetFilter!
runtime - [AssetFilterRanges]! A list of ranges that include assets grouped by their runtime
Arguments
from - Timestamp
to - Timestamp
maintenancePriority - [AssetFilterRanges]!
Arguments
from - Timestamp
to - Timestamp
rangeValues - [AssetFilterRanges]!
Arguments
reservations - ReservationEnd! Filter the reservations in the range provided.
Arguments
from - Timestamp
to - Timestamp
services - AssetFilter!
Arguments
from - Timestamp
to - Timestamp
signalOnline - AssetFilter
weakSignal - AssetFilter
noSignalDay - AssetFilter
noSignalWeek - AssetFilter
spreadsheet - Boolean
Arguments
label - String!
excludeColumns - [ExportBaseColumn!]
additionalColumns - [ExportColumn!]
Example
{
  "size": 987,
  "assets": [Asset],
  "created": TemporalFilter,
  "sentData": TemporalFilter,
  "valueSliceById": AssetFilter,
  "valueSliceByValue": AssetFilter,
  "valueSlices": [StatisticValueSlice],
  "rangeSlice": AssetFilter,
  "usingPeriod": AssetFilter,
  "withEvents": [EventFilter],
  "withoutEvents": AssetFilter,
  "runtime": [AssetFilterRanges],
  "maintenancePriority": [AssetFilterRanges],
  "rangeValues": [AssetFilterRanges],
  "reservations": ReservationEnd,
  "services": AssetFilter,
  "signalOnline": AssetFilter,
  "weakSignal": AssetFilter,
  "noSignalDay": AssetFilter,
  "noSignalWeek": AssetFilter,
  "spreadsheet": false
}

AssetFilterInput

Fields
Input Field Description
searchTerm - String

can search in following fields:

  • serial
  • inventoryNumber
  • imei
  • site name
  • assetType name
  • assetCategory name
  • assignedToGroup name
  • responsiblePerson
  • siteManager name
  • siteManager email
  • assetType make = brand
relatedFilters - [FilterParamsInput!]
Example
{
  "searchTerm": "abc123",
  "relatedFilters": [FilterParamsInput]
}

AssetFilterPeriodFilter

Fields
Field Name Description
period - String
quantity - Int
Example
{"period": "xyz789", "quantity": 987}

AssetFilterRanges

Fields
Field Name Description
order - Int! The order of this range, goes from 1 to 5 where 1 means this range includes the assets from 0 to 1/5 of the max value 2 that the range is from 1/5 to 2/5 of the max value and so on
assets - [Asset]!
label - String! A string with the actual values of the range limit. ex: {min} - {max}
Example
{
  "order": 123,
  "assets": [Asset],
  "label": "abc123"
}

AssetFilterStats

Fields
Field Name Description
rentalEnd - [AssetFilterPeriodFilter]
rentalRemainingMonths - [String]
leasingRemainingMonths - [String]
leasingEnd - [AssetFilterPeriodFilter]
serviceContractRemainingMonths - [String]
Example
{
  "rentalEnd": [AssetFilterPeriodFilter],
  "rentalRemainingMonths": ["xyz789"],
  "leasingRemainingMonths": ["abc123"],
  "leasingEnd": [AssetFilterPeriodFilter],
  "serviceContractRemainingMonths": [
    "xyz789"
  ]
}

AssetInAutomationDetails

Fields
Field Name Description
asset - Asset!
newSite - Site
oldSite - Site
oldAvailability - AssetAvailability
newAvailability - AssetAvailability
Example
{
  "asset": Asset,
  "newSite": Site,
  "oldSite": Site,
  "oldAvailability": "READY_TO_USE",
  "newAvailability": "READY_TO_USE"
}

AssetIntegration

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - String!
manufacturerId - HashedId!
assetCategoryId - HashedId
assetCategory - AssetCategory
manufacturer - Manufacturer!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "xyz789",
  "manufacturerId": HashedId,
  "assetCategoryId": HashedId,
  "assetCategory": AssetCategory,
  "manufacturer": Manufacturer
}

AssetIntegrationCreateInput

Fields
Input Field Description
name - String!
manufacturerId - HashedId!
assetCategoryId - HashedId
Example
{
  "name": "abc123",
  "manufacturerId": HashedId,
  "assetCategoryId": HashedId
}

AssetIntegrationUpdateInput

Fields
Input Field Description
name - String
manufacturerId - HashedId
assetCategoryId - HashedId
Example
{
  "name": "abc123",
  "manufacturerId": HashedId,
  "assetCategoryId": HashedId
}

AssetListExport

Description

A GQL type with subfields that can be selected for filtered/specialized spreadsheet links

Each subfield supports a sheetLabel argument which allows to name the sheet explicitly instead of using an automatically generated sheet name.

Each subfield may return null, iff the root assetListExport query specifies an email timeout and the timeout elapses before the subfield's spreadsheet could be generated. In this case, an email containing the spreadsheet link will be sent to the calling user's email address once the generation is complete (NOTE: if you specify multiple subfields and they all time out, each spreadsheet will be emailed individually.)

Fields
Field Name Description
all - String A link to a spreadsheet listing all assets and a basic set of columns
Arguments
sheetLabel - String
created - String A link to a spreadsheet listing assets created during a certain timespan
Arguments
from - Timestamp
to - Timestamp
sheetLabel - String
lastContacted - String A link to a spreadsheet listing assets which last sent data during a certain timespan
Arguments
from - Timestamp
to - Timestamp
sheetLabel - String
type - String A link to a spreadsheet listing only assets of the specified type
Arguments
assetTypeId - HashedId!
sheetLabel - String
category - String A link to a spreadsheet listing only assets of the specified category
Arguments
assetCategoryId - HashedId!
sheetLabel - String
assetId - String A link to a spreadsheet listing only assets for which the specified well-known parameter falls within the specified range
Arguments
assetId - [HashedId]
sheetLabel - String
parameterRange - String
Arguments
from - Float!
to - Float
sheetLabel - String
unit - String
periodBoxedParameterRange - String
Arguments
from - Float!
to - Float
unit - String
startTime - Timestamp!
endTime - Timestamp!
sheetLabel - String!
periodLabel - String!
parameterValue - String A link to a spreadsheet listing only assets for which the specified well-known parameter has the specified value
Arguments
value - String!
sheetLabel - String
reservationsEnd - String A link to a spreadsheet listing only assets which have reservations that end in the range
Arguments
from - Timestamp
to - Timestamp
sheetLabel - String!
Example
{
  "all": "abc123",
  "created": "xyz789",
  "lastContacted": "xyz789",
  "type": "abc123",
  "category": "abc123",
  "assetId": "xyz789",
  "parameterRange": "abc123",
  "periodBoxedParameterRange": "abc123",
  "parameterValue": "abc123",
  "reservationsEnd": "abc123"
}

AssetMaintenanceSchedule

Fields
Field Name Description
id - HashedId!
assetId - HashedId!
interval - Int!
lastMaintenance - Date
nextMaintenance - Date!
lastMaintenanceLastEdited - AssetMaintenanceScheduleEditNote
nextMaintenanceLastEdited - AssetMaintenanceScheduleEditNote
Example
{
  "id": HashedId,
  "assetId": HashedId,
  "interval": 123,
  "lastMaintenance": "2007-12-03",
  "nextMaintenance": "2007-12-03",
  "lastMaintenanceLastEdited": AssetMaintenanceScheduleEditNote,
  "nextMaintenanceLastEdited": AssetMaintenanceScheduleEditNote
}

AssetMaintenanceScheduleEditNote

Fields
Field Name Description
user - User
timestamp - Timestamp!
Example
{"user": User, "timestamp": 1592577642}

AssetModuleConnectionStatusEnum

Values
Enum Value Description

primary

Primary connected and active assets are originally connected to the module, we get data from them

secondary

Secondary assets are cloned from primary assets, we get data based on primary assets

disconnected

Primary/Secondary assets where primary asset was disconnected or has not been connected to any module yet
Example
"primary"

AssetOwnership

Values
Enum Value Description

PURCHASE

LEASING

RENTAL

CUSTOMER_MACHINE

OTHER

Example
"PURCHASE"

AssetParameterOffset

Description

Parameter offsets offer a way to dynamically adjust summarized parameter values starting from a given point in time - per asset. Note the word summarized: only params with summarized calculation can be offsetted. A common use case would be runtimes: a machine has already a runtime of 34h when the ToolSense module gets built in. When not connected to an inverter, the module would report a runtime of 0h - this can be hand-adjusted to match the valid value. A customer may also want to reset an accumulated value each year or service period. In this cases, a customer can set offsets for the parameter values sent by a specific asset.

The new values offset the existing values starting from the time they're set - they can be positive or negative values. When querying current values, all existing offsets are applied.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
assetId - HashedId!
parameterId - HashedId!
offsetValue - Float! The value the parameter value is being offsetted with starting from the timestamp below.
effectiveFrom - Timestamp! The time from which the offset takes effect - any value received past this time will be offsetted
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "assetId": HashedId,
  "parameterId": HashedId,
  "offsetValue": 987.65,
  "effectiveFrom": 1592577642
}

AssetParameterOffsetInput

Fields
Input Field Description
parameterId - HashedId!
offsetValue - Float!
effectiveFrom - Timestamp!
Example
{
  "parameterId": HashedId,
  "offsetValue": 123.45,
  "effectiveFrom": 1592577642
}

AssetParentParameter

Values
Enum Value Description

runtime

input2

input3

Example
"runtime"

AssetRequest

Description

Users of platform customers can request access/assignment for the assets they use or own. These requests are handled by administrators.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
serial - String!
assetId - HashedId!
forGroupId - HashedId!
verificationDocumentId - HashedId!
isProcessed - Boolean!
byRegistrationRequestId - HashedId
requestedByUserId - HashedId
requestedByGroupId - HashedId
processedByUserId - HashedId
isDenied - Boolean!
denialMessage - String
permalinkUrl - String!
asset - Asset
forGroup - Group
verificationDocument - Document
requestedByUser - User
requestedByGroup - Group
processedByUser - User
byRegistrationRequest - RegistrationRequest
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "serial": "abc123",
  "assetId": HashedId,
  "forGroupId": HashedId,
  "verificationDocumentId": HashedId,
  "isProcessed": false,
  "byRegistrationRequestId": HashedId,
  "requestedByUserId": HashedId,
  "requestedByGroupId": HashedId,
  "processedByUserId": HashedId,
  "isDenied": true,
  "denialMessage": "xyz789",
  "permalinkUrl": "abc123",
  "asset": Asset,
  "forGroup": Group,
  "verificationDocument": Document,
  "requestedByUser": User,
  "requestedByGroup": Group,
  "processedByUser": User,
  "byRegistrationRequest": RegistrationRequest
}

AssetRequestItem

Fields
Input Field Description
id - HashedId!
isDenied - Boolean!
denialMessage - String
Example
{
  "id": HashedId,
  "isDenied": false,
  "denialMessage": "xyz789"
}

AssetServicesFilterInput

Fields
Input Field Description
isServiceCheck - Boolean if true, only services that are service checks are returned
includeBle - Boolean
includeGeneralService - Boolean
includeRegularService - Boolean
type - ServiceType
itemType - ServiceItemType
excludeQRLandingPage - Boolean
search - String
Example
{
  "isServiceCheck": true,
  "includeBle": false,
  "includeGeneralService": true,
  "includeRegularService": false,
  "type": "JOT_FORM",
  "itemType": "general",
  "excludeQRLandingPage": false,
  "search": "xyz789"
}

AssetState

Description

Representation of Asset State - summarizing/derived values for easy dashboard/widget displays

Fields
Field Name Description
id - HashedId!
error - Boolean!
priority - Int! The priority state for the asset if the user has the feature enabled, -1 otherwise.
service - Boolean!
warning - Boolean!
Example
{
  "id": HashedId,
  "error": true,
  "priority": 123,
  "service": true,
  "warning": false
}

AssetStateItem

Fields
Field Name Description
id - HashedId!
key - EventTypeEnum! A handle for this style. These fixed styles are listed in EventStyleKey type and are available to all groups.
icon - String An url to a square icon image. Can be selected from a predefined list from the eventStyleIcons query.
displayText - EventTypeEnum!
displayValue - Int!
displayName - Translation! Static data, should be translated on the frontend
Example
{
  "id": HashedId,
  "key": "ERROR",
  "icon": "abc123",
  "displayText": "ERROR",
  "displayValue": 987,
  "displayName": Translation
}

AssetSyntheticParameterEnum

Values
Enum Value Description

BATTERY

UTILIZATION

WORK_DONE

Example
"BATTERY"

AssetTripLatest

Description

Latest trip data for an asset

Fields
Field Name Description
id - String! Trip identifier
startTime - Timestamp! Trip start time
endTime - Timestamp! Trip end time
Example
{
  "id": "abc123",
  "startTime": 1592577642,
  "endTime": 1592577642
}

AssetType

Description

Types of assets are specific models in an asset category, like "AFD 1001", "Turbo 100" to the category "Pressure washer".

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
forManufacturerId - HashedId!
groupId - HashedId!
servicePackageId - HashedId
hasAssortmentList - Boolean
externalId - String
image - String Image (url) for this asset type. Should also be used for asset if it doesn't have one provided
inAssetCategoryId - HashedId!
inAssetIntegrationId - HashedId!
isApprovedAssetType - Boolean To reduce the amount of duplicate asset types, asset types need to be approved. Everyone can approve an asset type who has access rights to the asset type.
isPrivate - Boolean! Listed to users outside this group hierarchy - "publicly" available. May be used for not yet released models
isVehicle - Boolean! Denotes whether the asset type is a vehicle
isRoom - Boolean! Denotes whether the asset type is a room
make - String A manufacturer is the maker of a machine.
publicId - Int!
nameId - HashedId!
restrictedType - Boolean!
preset - Boolean
presetInitialValue - String
presetLeasingCostTermination - String
presetLeasingLevel - String
presetLeasingMonthlyCost - String
presetLeasingPartner - String
presetLeasingPartnerContractNumber - String
presetLeasingPartnerContractPositionNumber - String
presetLeasingRenewalRate - String
presetLowValueAsset - Boolean
presetMachineCheckInterval - Int
presetMachineCheckLastCreated - Boolean
presetMachineCheckName - String
presetOwnership - AssetOwnership
presetPurchaseCost - String
presetPurchaseDepriciation - Int
presetRentalCostTermination - String
presetRentalMonthlyCost - String
presetRentalRenewalRate - String
presetServiceContractCostPerYear - String
presetServiceContractEmail - String
presetServiceContractLevel - String
presetServiceContractPartner - String
presetSupplier - String
presetWarrantyPeriod - Int
isLockable - Boolean Certain asset types can be locked. This will then lock the asset Only for limited amount of asset types
isLockedState - Boolean Functionality removed
lockAssetTypeId - HashedId Functionality removed
hasVNC - Boolean Certain assets can be accessed over a remote connection. This specifies if this type can be accessed over VNC.
isPollingAvailable - Boolean
name - Translation!
documents - [Document!]!
Arguments
purpose - String
minimalBatteryVoltage - Float
nominalBatteryVoltage - Float
optimalBatteryVoltage - Float
optimalRuntime - Float
parentParameterKey - AssetParentParameter
workUnits - Translation
workUnitsPerHour - Float
workUnitId - HashedId
inAssetCategory - AssetCategory
group - Group
inAssetIntegration - AssetIntegration
forManufacturer - Manufacturer
namespace - String
assetsCount - Int
userManual - String The handbook of the AssetType. URL to a PDF File
suggestedServicePartner - String
suggestedPartner - AvailableHandler
servicePackage - ServicePackage
lockAssetType - AssetType! This field is deprecated
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "forManufacturerId": HashedId,
  "groupId": HashedId,
  "servicePackageId": HashedId,
  "hasAssortmentList": false,
  "externalId": "xyz789",
  "image": "abc123",
  "inAssetCategoryId": HashedId,
  "inAssetIntegrationId": HashedId,
  "isApprovedAssetType": true,
  "isPrivate": false,
  "isVehicle": true,
  "isRoom": false,
  "make": "abc123",
  "publicId": 987,
  "nameId": HashedId,
  "restrictedType": false,
  "preset": true,
  "presetInitialValue": "abc123",
  "presetLeasingCostTermination": "xyz789",
  "presetLeasingLevel": "xyz789",
  "presetLeasingMonthlyCost": "xyz789",
  "presetLeasingPartner": "abc123",
  "presetLeasingPartnerContractNumber": "abc123",
  "presetLeasingPartnerContractPositionNumber": "xyz789",
  "presetLeasingRenewalRate": "xyz789",
  "presetLowValueAsset": true,
  "presetMachineCheckInterval": 987,
  "presetMachineCheckLastCreated": true,
  "presetMachineCheckName": "abc123",
  "presetOwnership": "PURCHASE",
  "presetPurchaseCost": "abc123",
  "presetPurchaseDepriciation": 123,
  "presetRentalCostTermination": "abc123",
  "presetRentalMonthlyCost": "xyz789",
  "presetRentalRenewalRate": "abc123",
  "presetServiceContractCostPerYear": "xyz789",
  "presetServiceContractEmail": "abc123",
  "presetServiceContractLevel": "xyz789",
  "presetServiceContractPartner": "abc123",
  "presetSupplier": "xyz789",
  "presetWarrantyPeriod": 987,
  "isLockable": true,
  "isLockedState": false,
  "lockAssetTypeId": HashedId,
  "hasVNC": true,
  "isPollingAvailable": true,
  "name": Translation,
  "documents": [Document],
  "minimalBatteryVoltage": 987.65,
  "nominalBatteryVoltage": 123.45,
  "optimalBatteryVoltage": 987.65,
  "optimalRuntime": 123.45,
  "parentParameterKey": "runtime",
  "workUnits": Translation,
  "workUnitsPerHour": 123.45,
  "workUnitId": HashedId,
  "inAssetCategory": AssetCategory,
  "group": Group,
  "inAssetIntegration": AssetIntegration,
  "forManufacturer": Manufacturer,
  "namespace": "abc123",
  "assetsCount": 123,
  "userManual": "abc123",
  "suggestedServicePartner": "xyz789",
  "suggestedPartner": AvailableHandler,
  "servicePackage": ServicePackage,
  "lockAssetType": AssetType
}

AssetTypePaginatedDto

Fields
Field Name Description
rows - [AssetType!]!
meta - PaginationMeta!
total - Int!
Example
{
  "rows": [AssetType],
  "meta": PaginationMeta,
  "total": 987
}

AssetUnavailability

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByWorkOrderId - HashedId!
startTime - DateTime!
endTime - DateTime
assetId - HashedId!
asWorkOrderAsset - Boolean!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByWorkOrderId": HashedId,
  "startTime": "2007-12-03T10:15:30Z",
  "endTime": "2007-12-03T10:15:30Z",
  "assetId": HashedId,
  "asWorkOrderAsset": true
}

AssetUnavailabilityContext

Values
Enum Value Description

AS_WORKORDER_ASSET

Example
"AS_WORKORDER_ASSET"

AssetUnavailabilityFilterInput

Fields
Input Field Description
from - DateTime! filter unavailability records starting from this time.
to - DateTime! filter unavailability records until this time.
filterContext - AssetUnavailabilityContext filter unavailability records to only ones matching this context.
Example
{
  "from": "2007-12-03T10:15:30Z",
  "to": "2007-12-03T10:15:30Z",
  "filterContext": "AS_WORKORDER_ASSET"
}

AssetView

Description

configuration for an asset view

Fields
Field Name Description
id - HashedId! id (hashed) of the view. can be used to re-order the view, or adjust sharing etc.
created - Timestamp!
updated - Timestamp
titleId - HashedId! human-readable, user-input name that is given upon view creation. EXCEPT when isSystemView is true, then this is a string identifier for the view (e.g. "asset-gantt")
forEntity - ViewEntityEnum! type of entity that this view is for (e.g. ASSET)
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - AssetViewOptions! options describing pagination, filters and columns available in the view
isActive - Boolean! whether this view is enabled for this account
isSystemView - Boolean! whether this is a system view (inherited from toolsense system). System views can only be shared/unshared; they cannot be edited.
isShared - Boolean! whether this view can be seen by other members of this group, and sub-groups
isEditable - Boolean! whether this account can change this view's display mode, name or options
isDeletable - Boolean! whether this account can delete this view
isShareable - Boolean! whether this account can share or unshare this view to this group and sub-groups
isUnsharedByParentGroup - Boolean! whether this view has been unshared by a parent of this group
title - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "forEntity": "ASSET",
  "displayMode": "LIST",
  "options": AssetViewOptions,
  "isActive": true,
  "isSystemView": false,
  "isShared": false,
  "isEditable": true,
  "isDeletable": true,
  "isShareable": true,
  "isUnsharedByParentGroup": true,
  "title": Translation
}

AssetViewCreateInput

Description

input used to create a new asset view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - AssetViewOptionsInput! display options to be stored with this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "options": AssetViewOptionsInput,
  "title": TranslationInput
}

AssetViewOptions

Description

options controlling how a view is displayed

Fields
Field Name Description
search - String general search string to filter the items in this view
filters - [Filters] well defined filters for this view
itemsPerPage - Int! number of items per page in this view
columns - [String!]! asset columns enabled for this view
Example
{
  "search": "xyz789",
  "filters": [Filters],
  "itemsPerPage": 123,
  "columns": ["abc123"]
}

AssetViewOptionsInput

Description

options for displaying a view

Fields
Input Field Description
filters - [FilterParamsInput]
search - String
itemsPerPage - Int! number of assets per page in the view
columns - [String!]! ordered assets columns that are to be displayed in this view
Example
{
  "filters": [FilterParamsInput],
  "search": "abc123",
  "itemsPerPage": 987,
  "columns": ["xyz789"]
}

AssetViewUpdateInput

Description

input for updating an asset view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
id - HashedId!
options - AssetViewOptionsInput! options for displaying assets in this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "id": HashedId,
  "options": AssetViewOptionsInput,
  "title": TranslationInput
}

AssigneeAutomation

Values
Enum Value Description

SUGGESTED_PARTNER

AUTO_ASSIGN

NO_ASSIGNEE_AUTOMATION

Example
"SUGGESTED_PARTNER"

AvailabilityValArray

Fields
Field Name Description
data - [AssetAvailability!]!
Example
{"data": ["READY_TO_USE"]}

AvailableHandler

Fields
Field Name Description
id - String!
subLabel - String!
displayName - String!
handlerType - HandlerTypeEnum!
Example
{
  "id": "abc123",
  "subLabel": "xyz789",
  "displayName": "abc123",
  "handlerType": "EXTERNALEMAIL"
}

Boolean

Description

The Boolean scalar type represents true or false.

Example
true

Brand

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
groupId - HashedId! Group associated with the management of this brand
logoWidth - Int!
key - String! A unique identifying string key
systemName - String! Name of the platform for this brand
colorDark - String!
colorLight - String!
faviconUrl - String! A url that provides the favicon image used
loginBackground - String! A url that provides the background image shown on the login page
name - String Brand name
appUrlAndroid - String Login Language that should be displayed if the Users target language is not available
appUrlIos - String A url leading to the download/store page of the iOS app of the platform
logo - String An image url containing the logo for the platform
color - String Primary color associated with brand
symbol - String The image displayed when only the symbol is required. E.g. the main menu is collapsed
ownURL - String A custom URL where the application is intended to be available
supportEmail - String A support email address to be displayed across clients
activationMailVideo - String A url leading to the activation email video of the platform
logoIsSquare - Boolean Should be true if the logo image has a 1:1 aspect ratio. Helps with visual alignment.
group - Group
sso - DateTime
loginLanguageFallback - HashedId A url leading to the download/store page of the Android app of the platform
projects - String Projects have been dropped completely September 2023
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "groupId": HashedId,
  "logoWidth": 987,
  "key": "xyz789",
  "systemName": "abc123",
  "colorDark": "xyz789",
  "colorLight": "abc123",
  "faviconUrl": "abc123",
  "loginBackground": "abc123",
  "name": "abc123",
  "appUrlAndroid": "xyz789",
  "appUrlIos": "xyz789",
  "logo": "abc123",
  "color": "xyz789",
  "symbol": "abc123",
  "ownURL": "abc123",
  "supportEmail": "abc123",
  "activationMailVideo": "abc123",
  "logoIsSquare": true,
  "group": Group,
  "sso": "2007-12-03T10:15:30Z",
  "loginLanguageFallback": HashedId,
  "projects": "abc123"
}

BrandCreateInput

Fields
Input Field Description
key - String! A unique identifying string key
systemName - String! Name of the platform for this brand
colorDark - String!
colorLight - String!
faviconUrl - String! A url that provides the favicon image used
loginBackground - String! A url that provides the background image shown on the login page
appUrlIos - String A url leading to the download/store page of the iOS app of the platform
supportEmail - String A support email address to be displayed across clients
appUrlAndroid - String Login Language that should be displayed if the Users target language is not available
logoIsSquare - Boolean Should be true if the logo image has a 1:1 aspect ratio. Helps with visual alignment.
activationMailVideo - String A url leading to the activation email video of the platform
loginLanguageFallback - Int A url leading to the download/store page of the Android app of the platform
logo - String An image url containing the logo for the platform
name - String Brand name
color - String Primary color associated with brand
ownURL - String
symbol - String The image displayed when only the symbol is required. E.g. the main menu is collapsed
groupId - HashedId
Example
{
  "key": "abc123",
  "systemName": "abc123",
  "colorDark": "abc123",
  "colorLight": "abc123",
  "faviconUrl": "xyz789",
  "loginBackground": "abc123",
  "appUrlIos": "abc123",
  "supportEmail": "xyz789",
  "appUrlAndroid": "abc123",
  "logoIsSquare": true,
  "activationMailVideo": "xyz789",
  "loginLanguageFallback": 123,
  "logo": "xyz789",
  "name": "xyz789",
  "color": "abc123",
  "ownURL": "abc123",
  "symbol": "abc123",
  "groupId": HashedId
}

BrandUpdateInput

Fields
Input Field Description
key - String
systemName - String Name of the platform for this brand
colorDark - String
colorLight - String
faviconUrl - String A url that provides the favicon image used
loginBackground - String A url that provides the background image shown on the login page
appUrlIos - String A url leading to the download/store page of the iOS app of the platform
supportEmail - String A support email address to be displayed across clients
appUrlAndroid - String Login Language that should be displayed if the Users target language is not available
logoIsSquare - Boolean Should be true if the logo image has a 1:1 aspect ratio. Helps with visual alignment.
activationMailVideo - String A url leading to the activation email video of the platform
loginLanguageFallback - Int A url leading to the download/store page of the Android app of the platform
logo - String An image url containing the logo for the platform
name - String Brand name
color - String Primary color associated with brand
ownURL - String
symbol - String The image displayed when only the symbol is required. E.g. the main menu is collapsed
groupId - HashedId
Example
{
  "key": "abc123",
  "systemName": "abc123",
  "colorDark": "abc123",
  "colorLight": "abc123",
  "faviconUrl": "xyz789",
  "loginBackground": "xyz789",
  "appUrlIos": "xyz789",
  "supportEmail": "abc123",
  "appUrlAndroid": "xyz789",
  "logoIsSquare": false,
  "activationMailVideo": "abc123",
  "loginLanguageFallback": 123,
  "logo": "abc123",
  "name": "xyz789",
  "color": "abc123",
  "ownURL": "abc123",
  "symbol": "xyz789",
  "groupId": HashedId
}

BrandUpsertInput

Fields
Input Field Description
key - String!
id - HashedId
systemName - String Name of the platform for this brand
colorDark - String
colorLight - String
faviconUrl - String A url that provides the favicon image used
loginBackground - String A url that provides the background image shown on the login page
name - String Brand name
appUrlAndroid - String Login Language that should be displayed if the Users target language is not available
appUrlIos - String A url leading to the download/store page of the iOS app of the platform
logo - String An image url containing the logo for the platform
color - String Primary color associated with brand
symbol - String The image displayed when only the symbol is required. E.g. the main menu is collapsed
ownURL - String A custom URL where the application is intended to be available
supportEmail - String A support email address to be displayed across clients
activationMailVideo - String A url leading to the activation email video of the platform
logoIsSquare - Boolean Should be true if the logo image has a 1:1 aspect ratio. Helps with visual alignment.
loginLanguageFallback - HashedId A url leading to the download/store page of the Android app of the platform
groupId - HashedId! group id of the brand being updated
Example
{
  "key": "abc123",
  "id": HashedId,
  "systemName": "abc123",
  "colorDark": "xyz789",
  "colorLight": "abc123",
  "faviconUrl": "abc123",
  "loginBackground": "xyz789",
  "name": "xyz789",
  "appUrlAndroid": "abc123",
  "appUrlIos": "xyz789",
  "logo": "xyz789",
  "color": "abc123",
  "symbol": "abc123",
  "ownURL": "xyz789",
  "supportEmail": "abc123",
  "activationMailVideo": "xyz789",
  "logoIsSquare": true,
  "loginLanguageFallback": HashedId,
  "groupId": HashedId
}

CellStyle

Description

Styling information for spreadsheet cells

Fields
Input Field Description
fillColor - String
textColor - String
fontSize - Int
bold - Boolean
Example
{
  "fillColor": "abc123",
  "textColor": "abc123",
  "fontSize": 123,
  "bold": true
}

ChangedCostInput

Fields
Input Field Description
id - HashedId!
value - Float
currency - Currency
costTypeId - HashedId
assetId - HashedId
Example
{
  "id": HashedId,
  "value": 123.45,
  "currency": "AED",
  "costTypeId": HashedId,
  "assetId": HashedId
}

ColumnConfig

Fields
Field Name Description
columnName - String!
dataType - FilteringDataTypeEnum!
dependsOnFlags - [String]
disableFilter - Boolean
disableSort - Boolean
hashId - Boolean
isNullable - Boolean
label - String!
Example
{
  "columnName": "xyz789",
  "dataType": "TEXT",
  "dependsOnFlags": ["xyz789"],
  "disableFilter": true,
  "disableSort": true,
  "hashId": false,
  "isNullable": true,
  "label": "xyz789"
}

ColumnSchemaDropdownOption

Fields
Field Name Description
label - String!
value - String!
originalValue - String
alternativeValues - [String] Use alternativeMatches instead
alternativeMatches - [String]
type - String
metadata - JSON
Example
{
  "label": "xyz789",
  "value": "abc123",
  "originalValue": "abc123",
  "alternativeValues": ["xyz789"],
  "alternativeMatches": ["xyz789"],
  "type": "xyz789",
  "metadata": {}
}

ColumnSchemaValidations

Fields
Field Name Description
validate - String
columns - [String]
columnValues - JSON
Example
{
  "validate": "xyz789",
  "columns": ["abc123"],
  "columnValues": {}
}

ColumnsSchema

Fields
Field Name Description
key - String!
label - String!
alternativeMatches - [String]
labelSuffix - String
columnType - String
hidden - Boolean
allowCustomOptions - Boolean
description - String
example - String
type - String
validations - [ColumnSchemaValidations]
dropdownOptions - [ColumnSchemaDropdownOption]
Example
{
  "key": "xyz789",
  "label": "abc123",
  "alternativeMatches": ["xyz789"],
  "labelSuffix": "abc123",
  "columnType": "abc123",
  "hidden": false,
  "allowCustomOptions": false,
  "description": "abc123",
  "example": "xyz789",
  "type": "xyz789",
  "validations": [ColumnSchemaValidations],
  "dropdownOptions": [ColumnSchemaDropdownOption]
}

Coordinates

Description

Representing a static place on the map

Fields
Field Name Description
longitude - Float
latitude - Float
Example
{"longitude": 987.65, "latitude": 123.45}

CoordinatesInput

Fields
Input Field Description
longitude - Float
latitude - Float
Example
{"longitude": 987.65, "latitude": 987.65}

Cost

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
assetId - HashedId!
costTypeId - HashedId!
createdByUserId - HashedId
currency - String!
originatingFromEventId - HashedId
originatingFromCommentId - HashedId
value - Float!
costType - CostType!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "assetId": HashedId,
  "costTypeId": HashedId,
  "createdByUserId": HashedId,
  "currency": "xyz789",
  "originatingFromEventId": HashedId,
  "originatingFromCommentId": HashedId,
  "value": 987.65,
  "costType": CostType
}

CostType

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
key - String! key is eng trans, use keyV2 enum
keyV2 - CostTypeEnum!
translationId - HashedId!
translation - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "key": "abc123",
  "keyV2": "BATTERY",
  "translationId": HashedId,
  "translation": Translation
}

CostTypeEnum

Values
Enum Value Description

BATTERY

CERTIFICATION

CONSUMABLES

FUEL

INSURANCE_TAXES

LABOR

LOGISTICS

MAINTENANCE

OTHER

REPAIR

SPARE_PARTS

Example
"BATTERY"

CreateCommentEventInput

Fields
Input Field Description
title - TranslationInput!
assetId - HashedId!
Example
{
  "title": TranslationInput,
  "assetId": HashedId
}

CreateUserDto

Fields
Field Name Description
user - User!
passwordResetLink - String
Example
{
  "user": User,
  "passwordResetLink": "xyz789"
}

Currency

Values
Enum Value Description

AED

AFN

ALL

AMD

ANG

AOA

ARS

AUD

AWG

AZN

BAM

BBD

BDT

BGN

BHD

BIF

BMD

BND

BOB

BOV

BRL

BSD

BTN

BWP

BYN

BZD

CAD

CDF

CHE

CHF

CHW

CLF

CLP

CNY

COP

COU

CRC

CUC

CUP

CVE

CZK

DJF

DKK

DOP

DZD

EEK

EGP

ERN

ETB

EUR

FJD

FKP

GBP

GEL

GHS

GIP

GMD

GNF

GTQ

GYD

HKD

HNL

HRK

HTG

HUF

IDR

ILS

INR

IQD

IRR

ISK

JMD

JOD

JPY

KES

KGS

KHR

KMF

KPW

KRW

KWD

KYD

KZT

LAK

LBP

LKR

LRD

LSL

LTL

LVL

LYD

MAD

MDL

MGA

MKD

MMK

MNT

MOP

MRU

MUR

MVR

MWK

MXN

MXV

MYR

MZN

NAD

NGN

NIO

NOK

NPR

NZD

OMR

PAB

PEN

PGK

PHP

PKR

PLN

PYG

QAR

RON

RSD

RUB

RWF

SAR

SBD

SCR

SDG

SEK

SGD

SHP

SLE

SLL

SOS

SRD

SSP

STN

SVC

SYP

SZL

THB

TJS

TMT

TND

TOP

TRY

TTD

TWD

TZS

UAH

UGX

USD

USN

UYI

UYU

UYW

UZS

VED

VEF

VES

VND

VUV

WST

XAF

XAG

XAU

XBA

XBB

XBC

XBD

XCD

XDR

XOF

XPD

XPF

XPT

XSU

XTS

XUA

XXX

YER

ZAR

ZMK

ZMW

ZWL

Example
"AED"

CustomField

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
nameId - HashedId!
type - CustomFieldTypeEnum!
isRequired - Boolean!
showOnQrLandingPage - Boolean!
showToNonLoggedInUsers - Boolean!
groupId - HashedId!
addToAllAssetsInGroupAndBelow - Boolean!
customerVisibilityRights - CustomFieldVisibilityRightsEnum
createdByUserId - HashedId!
createdByGroupId - HashedId!
availableCustomerVisibilityRights - [CustomFieldVisibilityRightsEnum!]!
deleted - Timestamp
name - Translation!
group - Group!
assetTypes - [AssetType!]!
assetCategories - [AssetCategory!]!
assets - [Asset!]!
createdByUser - User!
createdByGroup - Group!
values - [CustomFieldValue!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "nameId": HashedId,
  "type": "text",
  "isRequired": true,
  "showOnQrLandingPage": false,
  "showToNonLoggedInUsers": false,
  "groupId": HashedId,
  "addToAllAssetsInGroupAndBelow": true,
  "customerVisibilityRights": "editor",
  "createdByUserId": HashedId,
  "createdByGroupId": HashedId,
  "availableCustomerVisibilityRights": ["editor"],
  "deleted": 1592577642,
  "name": Translation,
  "group": Group,
  "assetTypes": [AssetType],
  "assetCategories": [AssetCategory],
  "assets": [Asset],
  "createdByUser": User,
  "createdByGroup": Group,
  "values": [CustomFieldValue]
}

CustomFieldCreateInput

Fields
Input Field Description
type - CustomFieldTypeEnum!
isRequired - Boolean!
showOnQrLandingPage - Boolean!
showToNonLoggedInUsers - Boolean!
groupId - HashedId!
addToAllAssetsInGroupAndBelow - Boolean!
customerVisibilityRights - CustomFieldVisibilityRightsEnum
name - TranslationInput!
assetTypeIds - [HashedId!]!
assetCategoryIds - [HashedId!]!
assetIds - [HashedId!]!
Example
{
  "type": "text",
  "isRequired": false,
  "showOnQrLandingPage": false,
  "showToNonLoggedInUsers": false,
  "groupId": HashedId,
  "addToAllAssetsInGroupAndBelow": true,
  "customerVisibilityRights": "editor",
  "name": TranslationInput,
  "assetTypeIds": [HashedId],
  "assetCategoryIds": [HashedId],
  "assetIds": [HashedId]
}

CustomFieldFilterInput

Fields
Input Field Description
assetTypeId - HashedId
assetCategoryId - HashedId
assetId - HashedId
withValuesOnly - Boolean
Example
{
  "assetTypeId": HashedId,
  "assetCategoryId": HashedId,
  "assetId": HashedId,
  "withValuesOnly": false
}

CustomFieldPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [CustomField!]!
Example
{
  "meta": PaginationMeta,
  "rows": [CustomField]
}

CustomFieldTypeEnum

Values
Enum Value Description

text

number

date

currency

percentage

Example
"text"

CustomFieldUpdateByIdInput

Fields
Input Field Description
isRequired - Boolean
showOnQrLandingPage - Boolean
showToNonLoggedInUsers - Boolean
groupId - HashedId
addToAllAssetsInGroupAndBelow - Boolean
customerVisibilityRights - CustomFieldVisibilityRightsEnum
name - TranslationInput
assetTypeIds - [HashedId!]
assetCategoryIds - [HashedId!]
assetIds - [HashedId!]
Example
{
  "isRequired": true,
  "showOnQrLandingPage": false,
  "showToNonLoggedInUsers": false,
  "groupId": HashedId,
  "addToAllAssetsInGroupAndBelow": true,
  "customerVisibilityRights": "editor",
  "name": TranslationInput,
  "assetTypeIds": [HashedId],
  "assetCategoryIds": [HashedId],
  "assetIds": [HashedId]
}

CustomFieldValue

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
customFieldId - HashedId!
assetId - HashedId!
textValueId - HashedId
numberValue - Float
dateValue - Date
currencyValue - Float
textValue - Translation
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "customFieldId": HashedId,
  "assetId": HashedId,
  "textValueId": HashedId,
  "numberValue": 123.45,
  "dateValue": "2007-12-03",
  "currencyValue": 987.65,
  "textValue": Translation
}

CustomFieldVisibilityRightsEnum

Values
Enum Value Description

editor

viewer

hidden

Example
"editor"

CustomFieldsValuesCreateInput

Fields
Input Field Description
customFieldId - HashedId!
assetId - HashedId!
numberValue - Float
dateValue - Date
currencyValue - Float
textValue - TranslationInput
Example
{
  "customFieldId": HashedId,
  "assetId": HashedId,
  "numberValue": 123.45,
  "dateValue": "2007-12-03",
  "currencyValue": 987.65,
  "textValue": TranslationInput
}

CustomFieldsValuesSetInput

Fields
Input Field Description
customFieldId - HashedId!
assetId - HashedId!
numberValue - Float
dateValue - Date
currencyValue - Float
id - HashedId
textValue - TranslationInput
Example
{
  "customFieldId": HashedId,
  "assetId": HashedId,
  "numberValue": 987.65,
  "dateValue": "2007-12-03",
  "currencyValue": 987.65,
  "id": HashedId,
  "textValue": TranslationInput
}

CustomFieldsValuesUpdateInput

Fields
Input Field Description
customFieldId - HashedId
assetId - HashedId
numberValue - Float
dateValue - Date
currencyValue - Float
textValue - TranslationInput
id - HashedId!
Example
{
  "customFieldId": HashedId,
  "assetId": HashedId,
  "numberValue": 987.65,
  "dateValue": "2007-12-03",
  "currencyValue": 987.65,
  "textValue": TranslationInput,
  "id": HashedId
}

Dashboard

Description

A flow is a user-defined sequence tree of steps to guide a user through a specific customer support-related funnel. This can be a device service request, a tutorial, a repair guide etc. A flow is a descriptor of a UI that needs to produce a specific set of key-value pairs (with the values being either strings or files). More specifically, a flow is comprised of a JSON tree of nodes which provides instructions for a GUI of pages that the user can traverse, while producing the said output. Ask a ToolSense representative for a documentation about the definition descriptor. A client app presenting flows to the user should result a valid response flow definition, to be submitted on the FlowResponse endpoint.

Flows can be either:

  • associated with a root Group (generic flow - default)
  • associated with an asset type
Fields
Field Name Description
id - HashedId!
title - Translation
priority - Int
definition - JSON JSON. Defines the dashboard content. Ask ToolSense for a documentation on the structure. use grafana dashboards instead
grafanaDashboardURL - String
grafanaDashboardUID - String
filters - [DashboardFilter]
snapshotURL - String
Arguments
forceRefresh - Boolean
createdByUserId - HashedId!
createdByGroupId - HashedId!
default - Boolean
Example
{
  "id": HashedId,
  "title": Translation,
  "priority": 987,
  "definition": {},
  "grafanaDashboardURL": "abc123",
  "grafanaDashboardUID": "abc123",
  "filters": [DashboardFilter],
  "snapshotURL": "xyz789",
  "createdByUserId": HashedId,
  "createdByGroupId": HashedId,
  "default": true
}

DashboardFilter

Description

DashboardFilters are special filters that can be applied to a dashboard. They are defined by the dashboard creator and can be used to filter the dashboard content. For example, a dashboard can be filtered by a specific asset type, or by a specific asset.

Fields
Field Name Description
id - String!
name - Translation!
type - DashboardFilterType!
priority - Int!
defaultValue - String
defaultValueParsed - String
Example
{
  "id": "xyz789",
  "name": Translation,
  "type": "ASSET",
  "priority": 987,
  "defaultValue": "xyz789",
  "defaultValueParsed": "xyz789"
}

DashboardFilterInput

Fields
Input Field Description
id - String!
value - String
type - DashboardFilterType!
Example
{
  "id": "abc123",
  "value": "xyz789",
  "type": "ASSET"
}

DashboardFilterType

Values
Enum Value Description

ASSET

ASSET_CATEGORY

ASSET_TYPE

DATE

GROUP

SITE

Example
"ASSET"

DashboardMutationFilterInput

Fields
Input Field Description
id - String!
name - TranslationInput!
type - DashboardFilterType!
priority - Int!
defaultValue - String
Example
{
  "id": "abc123",
  "name": TranslationInput,
  "type": "ASSET",
  "priority": 987,
  "defaultValue": "abc123"
}

Datapoint

Description

Waypoints are location snapshots taken at certain intervals that also provide event and other information

Fields
Field Name Description
id - Int! Flespi location id
lat - Float Resolved location latitude
lng - Float Resolved location longitude
distance - Float! Event or point distance in km
speed - Float Vehicle speed at this waypoint
time - Float! Time
eventType - DrivingEventTypesEnum Event type
direction - Float! Direction
Example
{
  "id": 987,
  "lat": 987.65,
  "lng": 123.45,
  "distance": 987.65,
  "speed": 123.45,
  "time": 123.45,
  "eventType": "HARSH_ACCELERATION",
  "direction": 123.45
}

Date

Description

A string containing an iso-formatted date (without time portions)

Example
"2007-12-03"

DateStringOrIsoDateTime

Example
DateStringOrIsoDateTime

DateTime

Description

A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.

Example
"2007-12-03T10:15:30Z"

DeletedResponse

Fields
Field Name Description
affected_rows - Int!
Example
{"affected_rows": 987}

DisplayParameter

Description

A collection of basic asset properties collected in an uniform way to easily display them on ui like dashboard screens or overviews. Assets can have different measurements or endpoints for a lot of information like battery level or errors - this endpoint provides a simple and uniform way to query vital stats on every asset the same way.

Fields
Field Name Description
displayType - DisplayType! Denotes how a DisplayParameter should be interpreted
displayName - Translation The name of the property (like Runtime or Battery)
displayText - String! The value in a textual form (like V0.18, Very good, or 455)
displayValue - Float Raw number value for the property. For DisplayType PERCENT a value between 0-1 will be returned
visibility - DisplayParameterVisibility!
parameter - Parameter!
originalValue - Float
syntheticParameter - AssetSyntheticParameterEnum
stackedParameters - [Parameter]! Additional parameters that should displayed on top of this parameter in a bar graph. Enables DisplayType='STACKED' which is not returned by default
id - HashedId!
Example
{
  "displayType": "ERROR",
  "displayName": Translation,
  "displayText": "abc123",
  "displayValue": 987.65,
  "visibility": DisplayParameterVisibility,
  "parameter": Parameter,
  "originalValue": 987.65,
  "syntheticParameter": "BATTERY",
  "stackedParameters": [Parameter],
  "id": HashedId
}

DisplayParameterInfo

Description

The DisplayParameterInfo includes information about how an assetIntegrations parameter should be displayed in a client application. This endpoint should only be used for maintenance usecases. Although it can be used to get a list of displayParamters from a specific asset.

Fields
Field Name Description
id - HashedId!
parameterId - HashedId!
parameter - Parameter!
assetType - [AssetType!]
assetTypeId - [HashedId!]
assetIntegration - AssetIntegration!
assetIntegrationId - HashedId!
sortPosition - Int
displayUnit - String
displayType - String
domainValue - Int
parameterSetId - HashedId
key - String
title - Translation
titleId - HashedId!
Example
{
  "id": HashedId,
  "parameterId": HashedId,
  "parameter": Parameter,
  "assetType": [AssetType],
  "assetTypeId": [HashedId],
  "assetIntegration": AssetIntegration,
  "assetIntegrationId": HashedId,
  "sortPosition": 123,
  "displayUnit": "abc123",
  "displayType": "abc123",
  "domainValue": 123,
  "parameterSetId": HashedId,
  "key": "abc123",
  "title": Translation,
  "titleId": HashedId
}

DisplayParameterVisibility

Fields
Field Name Description
list - Boolean!
activityLog - Boolean!
graphMonth - Boolean!
graphWeek - Boolean!
graphDay - Boolean!
id - String!
Example
{
  "list": true,
  "activityLog": true,
  "graphMonth": false,
  "graphWeek": false,
  "graphDay": false,
  "id": "abc123"
}

DisplayType

Description

Denotes how this display value should be interpreted on an ui

Values
Enum Value Description

ERROR

Property denotes an error

SERVICE

Property denotes an information/soft warning (usually service value, like service time)

PERCENT

Property denotes a percentage value (0-1)

DEFAULT

Property is a simple textual property-value pair

STACKED

Property denotes a stacked parameter
Example
"ERROR"

Document

Description

ToolSense system allows handling documents/files attached to a specific Asset. Documents can also be inherited to the asset through assetTypes. These could be certificates, manuals, images, etc. Currently the API accepts common image and office document file types.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
assetId - HashedId Id of the associated asset. Mutually exclusive with other associations.
assetTypeId - HashedId Id of the associated assetType. Mutually exclusive with other associations.
commentId - HashedId Id of the associated TicketComment. Mutually exclusive with other associations.
eventId - HashedId
partId - HashedId Id of the associated part. Mutually exclusive with other associations.
isExternal - Boolean Defines if the document has an external web address not served by the ToolSense system
isVisibleToCustomer - Boolean Indicates whether the document is served/visible to users of customer groups.
name - String! Name of the attachment
purpose - String A string 'label' to define the purpose of the document. Can only be one of the items of a predefined constant array.
uploadedByUserId - HashedId
url - String! Direct file url
editable - Boolean! Indicates whether the document may be edited.
fileSize - Int Document size, in bytes, using header from the file uri. If the file is external or not found, this will be null.
isInherited - Boolean Is true if the document is associated with a parent category of the item, not the item itself. Documents can be associated with an item through category inheritance - eg. assets can inherit documents through its assetType.
typeKey - String! Type key for the file. One of: document, image, audio, video, weblink
uploadedByCustomer - Boolean! Indicates whether the document was uploaded by a customer
uploadedByUser - User
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "assetId": HashedId,
  "assetTypeId": HashedId,
  "commentId": HashedId,
  "eventId": HashedId,
  "partId": HashedId,
  "isExternal": true,
  "isVisibleToCustomer": true,
  "name": "abc123",
  "purpose": "xyz789",
  "uploadedByUserId": HashedId,
  "url": "abc123",
  "editable": false,
  "fileSize": 123,
  "isInherited": true,
  "typeKey": "abc123",
  "uploadedByCustomer": false,
  "uploadedByUser": User
}

DrivingEventTypesEnum

Description

Driving event types

Values
Enum Value Description

HARSH_ACCELERATION

HARSH_BRAKING

HARSH_CORNERING

CRASH

SPEEDING

Example
"HARSH_ACCELERATION"

EntityEnum

Description

Enum to specify what handler should be used. e.g. if handler is set to SUBSCRIPTION_USER path to handler will be Subscription/SubscriptionUser

Values
Enum Value Description

ASSET

ASSETTYPE

ASSETCATEGORY

PROCEDURETEMPLATE

PART

SITE

SUBSCRIPTION_MODULE

SUBSCRIPTION_USER

TICKET

USER

WORKORDER

TEAM

CUSTOMFIELD

TRIP_LATEST

EVENT

Example
"ASSET"

Event

Description

An event is a historical entry, allowing the listing of all noteworthy changes or alerts for an asset. It can be created when one of the cases below happens:

  • automatically when conditions defined in an internal or user-created Rule have been met
  • automatically when a new service request ("flow response") was sent
  • manually by users ("custom events")
Fields
Field Name Description
id - HashedId!
createdByRule - Rule The rule (and therefore conditions) which triggered the creation of this event
createdByRuleId - HashedId
createdByTicket - Ticket
createdByTicketId - HashedId
createdByWorkOrder - WorkOrderSummary
createdByWorkOrderId - HashedId
createdBySiteId - HashedId
originatingFromAsset - Asset The asset that sent the data that triggered this event
originatingFromAssetId - HashedId
originatingFromModule - Module! The module that sent the data that triggered this event
createdByPartId - HashedId
originatingFromModuleId - HashedId
title - Translation Title of the event - in case of an IoT rule, same title as the rule - in case of a Ticket event, dynamically generated
titleId - HashedId! Note that this could be a dummy in case of a dynamically generated title. Please use the "title" attribute instead Use the always available "title" attribute
description - Translation A description of the event
descriptionId - HashedId
createdByUser - User The value is present if the event was created explicitly by a user
createdByUserId - HashedId
stoppedByUser - User The value is present if the event was stopped explicitly by a user
stoppedByUserId - HashedId
eventStyle - EventStyle! Defines visual style for UIs for this event like color or icon
eventStyleId - String!
startTime - Timestamp! When this event started - when the rule first triggered in a continous streak
endTime - Timestamp When the event stopped - when the rule first didn't trigger after the start, thus breaking the continous streak
isCritical - Boolean Denotes severity. Critical events should have a different, emphasized styling on the ui.
isImmediateNotification - Boolean
shouldNotify - Boolean!
manualDeactivation - Boolean
isOngoing - Boolean Some events behind the scenes are not "one-time" occurances - they are states that are triggered, then removed. Eg. a machine may send an error code continuously for weeks - obviously triggering only one event. An "ongoing" event means that with its last sent data pack, the asset still triggered this rule (which may be one or many times since the event's creation) - therefore it's an "active" event.
created - Timestamp!
updated - Timestamp
responseState - TicketState If the event generated from a ticket update return the state this event represent
eventMeta - JSON Expose any meta information which can be utilized by requesting client
serviceName - Translation
ticketId - Int Use createdByTicketId
tag - [EventEntityTagEnum!]!
cost - Cost Use costs
costs - [Cost]
documents - [Document!]!
workOrderNotifications - WorkOrderNotifications
connectedComment - TicketComment
authorEmail - String
lastEvent - Timestamp
siteId - HashedId
createdByPart - Part
site - Site
data - EventEntityDataDto!
createdBySite - Site
Example
{
  "id": HashedId,
  "createdByRule": Rule,
  "createdByRuleId": HashedId,
  "createdByTicket": Ticket,
  "createdByTicketId": HashedId,
  "createdByWorkOrder": WorkOrderSummary,
  "createdByWorkOrderId": HashedId,
  "createdBySiteId": HashedId,
  "originatingFromAsset": Asset,
  "originatingFromAssetId": HashedId,
  "originatingFromModule": Module,
  "createdByPartId": HashedId,
  "originatingFromModuleId": HashedId,
  "title": Translation,
  "titleId": HashedId,
  "description": Translation,
  "descriptionId": HashedId,
  "createdByUser": User,
  "createdByUserId": HashedId,
  "stoppedByUser": User,
  "stoppedByUserId": HashedId,
  "eventStyle": EventStyle,
  "eventStyleId": "abc123",
  "startTime": 1592577642,
  "endTime": 1592577642,
  "isCritical": true,
  "isImmediateNotification": false,
  "shouldNotify": true,
  "manualDeactivation": true,
  "isOngoing": true,
  "created": 1592577642,
  "updated": 1592577642,
  "responseState": TicketState,
  "eventMeta": {},
  "serviceName": Translation,
  "ticketId": 987,
  "tag": ["asset"],
  "cost": Cost,
  "costs": [Cost],
  "documents": [Document],
  "workOrderNotifications": WorkOrderNotifications,
  "connectedComment": TicketComment,
  "authorEmail": "abc123",
  "lastEvent": 1592577642,
  "siteId": HashedId,
  "createdByPart": Part,
  "site": Site,
  "data": EventEntityDataDto,
  "createdBySite": Site
}

EventConfig

Fields
Field Name Description
assetId - HashedId!
lastEvent - DateTime
nextEvent - DateTime!
Example
{
  "assetId": HashedId,
  "lastEvent": "2007-12-03T10:15:30Z",
  "nextEvent": "2007-12-03T10:15:30Z"
}

EventConfigInput

Fields
Input Field Description
assetId - HashedId!
lastEvent - DateTime
nextEvent - DateTime!
Example
{
  "assetId": HashedId,
  "lastEvent": "2007-12-03T10:15:30Z",
  "nextEvent": "2007-12-03T10:15:30Z"
}

EventDateFilter

Fields
Input Field Description
from - Timestamp! The date from which to start listing events
to - Timestamp! The date until which to list events
Example
{"from": 1592577642, "to": 1592577642}

EventEntityDataDto

Fields
Field Name Description
stateId - Int
isAutomated - Boolean
initialState - Boolean
oldDate - Timestamp
newDate - Timestamp
rescheduledEventId - Int
handler - EventEntityDataHandlerDto
type - EventEntityDataTypeEnum
action - HandlerUpdateActionEnum
rescheduled - RescheduledEventDataDto
part - Part
site - Site
stockInfo - Part
machineCheck - MachineCheckEventDataDto
machineMaintenance - JSON
customFieldId - HashedId
roomStatus - RoomStatusEnum
Example
{
  "stateId": 123,
  "isAutomated": false,
  "initialState": true,
  "oldDate": 1592577642,
  "newDate": 1592577642,
  "rescheduledEventId": 987,
  "handler": EventEntityDataHandlerDto,
  "type": "RESPONSIBLE_UPDATE",
  "action": "ADD",
  "rescheduled": RescheduledEventDataDto,
  "part": Part,
  "site": Site,
  "stockInfo": Part,
  "machineCheck": MachineCheckEventDataDto,
  "machineMaintenance": {},
  "customFieldId": HashedId,
  "roomStatus": "Inspected"
}

EventEntityDataHandlerDto

Fields
Field Name Description
id - String!
handlerType - HandlerTypeEnum!
relationType - HandlerRelationTypeEnum!
Example
{
  "id": "xyz789",
  "handlerType": "EXTERNALEMAIL",
  "relationType": "ASSIGNEE"
}

EventEntityDataTypeEnum

Values
Enum Value Description

RESPONSIBLE_UPDATE

URGENCY_UPDATE

CREATED

UPDATED

DELETED

SITE_CHANGED

STOCK_LEVEL_CHANGED

STOCK_LEVEL_WARNING

GEOFENCE_ASSET_INSIDE

GEOFENCE_ASSET_OUTSIDE

IS_VEHICLE_UNPLUG

ASSET_AVAILABILITY_CHANGED_BY_AUTOMATION

ASSET_SITE_CHANGED_BY_AUTOMATION

CHECK_COMPLETED_BY_AUTOMATION

Example
"RESPONSIBLE_UPDATE"

EventEntityTagEnum

Values
Enum Value Description

asset

assetSerialChanged

assetAssetTypeChanged

assetCreated

checkRule

intervalRule

iotRule

machineCheck

machineMaintenance

servicePackage

site

part

STOCK_LEVEL_CHANGED

STOCK_LEVEL_WARNING

workOrder

rescheduled

customEvent

created

ownershipChanged

bleLinked

bleRemoved

moduleChanged

RESPONSIBLE_UPDATE

qrCodeAttached

updated

deleted

SITE_CHANGED

Example
"asset"

EventFilter

Fields
Field Name Description
styleKey - EventStyleKey!
ongoing - AssetFilter!
notOngoing - AssetFilter!
Example
{
  "styleKey": "ERROR",
  "ongoing": AssetFilter,
  "notOngoing": AssetFilter
}

EventPoint

Description

Denotes a driving event like hard braking, cornering, etc.

Fields
Field Name Description
id - Int! Flespi location id
lat - Float Resolved location latitude
lng - Float Resolved location longitude
eventStart - Float! Event start time
eventType - String! Event type
speed - Float! Point speed in kmh
distance - Float! Distance from previous point in km
Example
{
  "id": 123,
  "lat": 987.65,
  "lng": 987.65,
  "eventStart": 987.65,
  "eventType": "xyz789",
  "speed": 987.65,
  "distance": 123.45
}

EventRescheduleInput

Fields
Input Field Description
id - HashedId!
date - String!
note - TranslationInput!
Example
{
  "id": HashedId,
  "date": "xyz789",
  "note": TranslationInput
}

EventStateCounter

Fields
Field Name Description
total - Int!
assetIds - [HashedId]!
Example
{"total": 987, "assetIds": [HashedId]}

EventStatusCounter

Fields
Field Name Description
style - EventStyleKey!
ongoing - EventStateCounter!
notOngoing - EventStateCounter!
Example
{
  "style": "ERROR",
  "ongoing": EventStateCounter,
  "notOngoing": EventStateCounter
}

EventStyle

Description

Event styles are arbitrary categories for events. They define styling information for representing the events and their notifications. Examples are Error, Service or Location.

Fields
Field Name Description
id - HashedId!
key - EventTypeEnum! A handle for this style. These fixed styles are listed in EventStyleKey type and are available to all groups.
nameId - HashedId!
name - Translation
icon - String An url to a square icon image. Can be selected from a predefined list from the eventStyleIcons query.
color - String A hexadecimal color value
createdByGroupId - HashedId
Example
{
  "id": HashedId,
  "key": "ERROR",
  "nameId": HashedId,
  "name": Translation,
  "icon": "abc123",
  "color": "xyz789",
  "createdByGroupId": HashedId
}

EventStyleKey

Description

The default event styles set by Toolsense.

Values
Enum Value Description

ERROR

WARNING

INFO

SERVICE

LOCATION

MACHINE_CHECK

MACHINE_MAINTENANCE

COST

WORK_ORDER

Example
"ERROR"

EventTypeEnum

Values
Enum Value Description

ERROR

WARNING

INFO

SERVICE

LOCATION

TICKET

MACHINE_CHECK

MACHINE_MAINTENANCE

COST

WORK_ORDER

ROOM_STATUS

Example
"ERROR"

ExcelDownloadLocaleInput

Description

Information about the locale under which the spreadsheet is generated

Fields
Input Field Description
language - String! e.g. en_us or de_de
timezone - String! A Intl timezone. e.g. Europe/Vienna
Example
{
  "language": "abc123",
  "timezone": "xyz789"
}

ExcelDownloadStylesInput

Description

Styling information for different classes of spreadsheet cells

Fields
Input Field Description
normal - CellStyle Style that is used for cells that are neither headers nor highlighted
highlight - CellStyle Style that is used for non-header highlighted cells
header - CellStyle Style that is used for non-highlighted header cells
headerHighlight - CellStyle Style that is used for highlighted header cells
Example
{
  "normal": CellStyle,
  "highlight": CellStyle,
  "header": CellStyle,
  "headerHighlight": CellStyle
}

ExpectedResultType

Fields
Field Name Description
status - Boolean!
error - String
message - String
id - String
Example
{
  "status": true,
  "error": "xyz789",
  "message": "abc123",
  "id": "abc123"
}

ExportBaseColumn

Description

Describes a column in an excel export.

Values
Enum Value Description

type

serial

siteName

siteAddress

group

lastContacted

lastUsed

Example
"type"

ExportColumn

Fields
Input Field Description
title - String
key - String!
type - ExportColumnKeyType!
format - ExportColumnFormat
highlighted - Boolean
unit - String
Example
{
  "title": "abc123",
  "key": "abc123",
  "type": "parameter",
  "format": "none",
  "highlighted": true,
  "unit": "abc123"
}

ExportColumnFormat

Values
Enum Value Description

none

dateTime

translated

Example
"none"

ExportColumnKeyType

Values
Enum Value Description

parameter

assetResolver

Example
"parameter"

File

Description

Representing a static place on the map

Fields
Field Name Description
id - ID!
path - String!
filename - String!
mimetype - String!
Example
{
  "id": 4,
  "path": "xyz789",
  "filename": "abc123",
  "mimetype": "xyz789"
}

FilterCondition

Fields
Field Name Description
id - String
values - [String!]
operation - FilterOperationEnum
value - String
source - String
Example
{
  "id": "xyz789",
  "values": ["abc123"],
  "operation": "GREATER_THAN",
  "value": "xyz789",
  "source": "abc123"
}

FilterConditionInput

Fields
Input Field Description
id - String
values - [String!]
operation - FilterOperationEnum
value - String
source - String
Example
{
  "id": "xyz789",
  "values": ["abc123"],
  "operation": "GREATER_THAN",
  "value": "abc123",
  "source": "abc123"
}

FilterOperationEnum

Values
Enum Value Description

GREATER_THAN

GREATER_THAN_OR_EQUAL

LESS_THAN

LESS_THAN_OR_EQUAL

EQUALS

NOT_EQUALS

BETWEEN

HAS_VALUE

HAS_NO_VALUE

Example
"GREATER_THAN"

FilterOption

Fields
Field Name Description
value - String!
label - String!
count - Int
source - String
id - String!
Example
{
  "value": "abc123",
  "label": "abc123",
  "count": 123,
  "source": "abc123",
  "id": "xyz789"
}

FilterParamsInput

Fields
Input Field Description
columnName - String!
values - [String!]
sorting - SortDirection
name - String
conditions - [FilterConditionInput!]
presence - FilterPresenceEnum
selection - FilterTypeEnum
value - [String!]
Example
{
  "columnName": "xyz789",
  "values": ["xyz789"],
  "sorting": "ASC",
  "name": "abc123",
  "conditions": [FilterConditionInput],
  "presence": "HAS_VALUE",
  "selection": "DATETIME_QUICK_TODAY",
  "value": ["xyz789"]
}

FilterPresenceEnum

Values
Enum Value Description

HAS_VALUE

HAS_NO_VALUE

Example
"HAS_VALUE"

FilterTypeEnum

Values
Enum Value Description

DATETIME_QUICK_TODAY

DATETIME_QUICK_LAST_HOUR

DATETIME_QUICK_LAST_3_HOURS

DATETIME_QUICK_LAST_6_HOURS

DATETIME_QUICK_LAST_12_HOURS

DATETIME_QUICK_LAST_24_HOURS

DATETIME_QUICK_LAST_30_DAYS

DATETIME_QUICK_LAST_3_DAYS

DATETIME_QUICK_LAST_WEEK

DATETIME_QUICK_YESTERDAY

DATETIME_QUICK_THIS_WEEK

DATETIME_QUICK_THIS_MONTH

DATETIME_QUICK_HAS_NO_DATE

DATETIME_RELATIVE_EXACTLY

DATETIME_RELATIVE_MORE

DATETIME_RELATIVE_LESS

DATETIME_RELATIVE_BETWEEN

DATE_QUICK_NEXT_30_MIN

DATE_QUICK_NEXT_HOUR

DATE_QUICK_NEXT_HOURS

DATE_QUICK_TODAY

DATE_QUICK_TOMORROW

DATE_QUICK_NEXT_7_DAYS

DATE_QUICK_NEXT_30_DAYS

DATE_QUICK_NEXT_90_DAYS

DATE_QUICK_HAS_DATE

DATE_RELATIVE_EXACTLY

DATE_RELATIVE_MORE

DATE_RELATIVE_LESS

DATE_RELATIVE_BETWEEN

DATE_EXACT_EXACT

DATE_EXACT_BEFORE

DATE_EXACT_AFTER

DATE_EXACT_BETWEEN

NUMBER_EXACTLY

NUMBER_MORE

NUMBER_LESS

NUMBER_BETWEEN

NUMBER_HAS_VALUE

NUMBER_HAS_NO_VALUE

Example
"DATETIME_QUICK_TODAY"

FilteringDataTypeEnum

Description

Filtering data type enum

Values
Enum Value Description

TEXT

NUMBER

CURRENCY

REMAINING

BOOLEAN

DATE

YEAR_AND_MONTH

YEAR_MONTH_AND_DAY

LOCALES

ID

MONTH_LABEL

OTHER

Example
"TEXT"

Filters

Description

a well defined filter configuration

Fields
Field Name Description
columnName - String name of column
values - [String!] values to filter this column by; only records with these values are selected
value - [String!] values to filter this column by; only records with these values are selected
conditions - [FilterCondition!]
presence - FilterPresenceEnum
selection - FilterTypeEnum
sorting - SortDirection
Example
{
  "columnName": "abc123",
  "values": ["abc123"],
  "value": ["xyz789"],
  "conditions": [FilterCondition],
  "presence": "HAS_VALUE",
  "selection": "DATETIME_QUICK_TODAY",
  "sorting": "ASC"
}

Float

Description

The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.

Example
123.45

Group

Description

Groups are the basic organizational structures of the Toolsense system. They are the entities that bind together users, assets and their properties, and are the unit of visibility and authorization. Groups form independent tree hierarchies - they may have parent groups and subgroups.

Visibility of both assets and users is downwards-only.

Group hierarchies can have a relation to each other connecting any two groups between the two tree structures. The connections describe transfer and visibility to resources, currently assets. A real world example would be the hierarchy Acme Corp -> Acme West -> Acme Germany. Acme Germany sells an asset to Excel Corp, which may or may not exist in the TS System. When it does, Acme Corp would still like to supervise the asset for error events - the relation which the transfer created provides this access.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - String!
parentGroupId - HashedId
isRoot - Boolean!
image - String Image (url) for this group - eg. company logo or picture
isCustomer - Boolean!
identificationNumber - String A unique group identifier, eg. a customer number
vatNumber - String The legal VAT number for the organization represented by this group
rootGroupId - HashedId Use treeRootId instead
handlerAlias - String Groups can be set as a target for tickets and ticket assignments. In this case, it appears among possible ticket handlers. This is an optional alternative name for the group when appearing in the list of ticket handlers.
treeRootId - HashedId!
servicePackageId - HashedId! Service package contain specific pre-set configurations for groups
flowId - HashedId! only for the BC with older mobile app versions
roleIds - [HashedId!]! only for the BC with older mobile app versions
activeCustomFields - [CustomField!]!
Arguments
archivedCustomFields - [CustomField!]!
Arguments
parentGroup - Group The group above the selected group in the hierarchy
services - [Service!]! Services associated to current group's servicePackage Use "servicesV2" instead
Arguments
excludeQRLandingPage - Boolean
servicesV2 - [Service!]! Services associated to current group's servicePackage
Arguments
search - String!
limit - Int!
language - LanguageLocaleEnum!
servicePackage - ServicePackage
flow - ServicePackage only for the BC with older mobile app versions
internalSettings - JSON Platform-specific settings for the group. Can only be accessed by designated admins.
hasTicketHandling - Boolean! Toggles if this group is a target of tickets coming from users in its own group and below
flowMaintainers - [NotificationRelation!]! Users or email addresses who will receive flow notifications
settings - JSON!

Settings are configuration values for the platform. They can be used to store ad-hoc client settings. Some properties are already pre-set internally and can not be changed. They are saved and retrieved automatically.

Settings for groups are inherited - if a group doesn't have settings set, it will inherit from its parent. The inheritance is also true per each property. A null value for a property is considered valid and is inherited.

assetLocationsHidden - Boolean! Customers can obfuscate the location of their assets to the manufacturers
nonCustomerParentGroup - Group 1st rooted non-customer parent group in the hierarchy, returns top most customer, non-customer group if impersonated with a group lower in hierarchy
childGroups - [Group!]! The groups below the selected group in the hierarchy
childGroupIds - [HashedId!]!
belongsToCurrentGroup - Boolean! Expose the level of access to the group. This is used to determine if the group is directly accessible to the user. Currently only currentGroup and child groups are marked as belonging to the current group. any other group if accessible will be marked as group from other group.
customerRootGroup - Group Topmost customer group in the hierarchy. Returns the topmost customer group under the hierarchy of impersonated group. Returns null if current group or above is non-customer group
rootGroupName - String The root group's name in the group's hierarchy. Returns null if the group is a root group
userRequestNotifiers - [NotificationRelation!]! email addresses who will receive customer signup emails
customerName - String
parentName - String!
groupTypeId - HashedId! use service package id instead
assets - [Asset!]! Assets currently assigned to this group
assetIds - [HashedId!]!
maintainedManufacturer - [Manufacturer!]! Groups may maintain one or more manufacturers
maintainedManufacturerId - [HashedId!]!
userIds - [HashedId!]!
users - [User!]! Users currently assigned to this group
servicePackageV2 - ServicePackageUnion!
groupType - ServicePackage use service package instead
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "xyz789",
  "parentGroupId": HashedId,
  "isRoot": false,
  "image": "abc123",
  "isCustomer": false,
  "identificationNumber": "abc123",
  "vatNumber": "xyz789",
  "rootGroupId": HashedId,
  "handlerAlias": "xyz789",
  "treeRootId": HashedId,
  "servicePackageId": HashedId,
  "flowId": HashedId,
  "roleIds": [HashedId],
  "activeCustomFields": [CustomField],
  "archivedCustomFields": [CustomField],
  "parentGroup": Group,
  "services": [Service],
  "servicesV2": [Service],
  "servicePackage": ServicePackage,
  "flow": ServicePackage,
  "internalSettings": {},
  "hasTicketHandling": true,
  "flowMaintainers": [NotificationRelation],
  "settings": {},
  "assetLocationsHidden": true,
  "nonCustomerParentGroup": Group,
  "childGroups": [Group],
  "childGroupIds": [HashedId],
  "belongsToCurrentGroup": false,
  "customerRootGroup": Group,
  "rootGroupName": "abc123",
  "userRequestNotifiers": [NotificationRelation],
  "customerName": "xyz789",
  "parentName": "xyz789",
  "groupTypeId": HashedId,
  "assets": [Asset],
  "assetIds": [HashedId],
  "maintainedManufacturer": [Manufacturer],
  "maintainedManufacturerId": [HashedId],
  "userIds": [HashedId],
  "users": [User],
  "servicePackageV2": ServicePackage,
  "groupType": ServicePackage
}

GroupCreateInput

Fields
Input Field Description
name - String!
parentGroupId - HashedId!
isCustomer - Boolean
identificationNumber - String A unique group identifier, eg. a customer number
vatNumber - String The legal VAT number for the organization represented by this group
handlerAlias - String Groups can be set as a target for tickets and ticket assignments. In this case, it appears among possible ticket handlers. This is an optional alternative name for the group when appearing in the list of ticket handlers.
servicePackageId - HashedId Service package contain specific pre-set configurations for groups
generalSettings - GroupGeneralSettingsCreateInput
internalSettings - GroupInternalSettingsCreateInput
getRawFlow - Boolean
defaultCurrency - String
flowMaintainers - [NotificationRelationCreateInput!]
Example
{
  "name": "xyz789",
  "parentGroupId": HashedId,
  "isCustomer": false,
  "identificationNumber": "xyz789",
  "vatNumber": "abc123",
  "handlerAlias": "abc123",
  "servicePackageId": HashedId,
  "generalSettings": GroupGeneralSettingsCreateInput,
  "internalSettings": GroupInternalSettingsCreateInput,
  "getRawFlow": true,
  "defaultCurrency": "xyz789",
  "flowMaintainers": [NotificationRelationCreateInput]
}

GroupGeneralSettingsCreateInput

Fields
Input Field Description
defaultCurrency - String!
hasTicketHandling - Boolean!
flowNotifications - [NotificationRelationCreateInput!]!
customWelcomeContent - TranslationInput
paymentPlan - String!
features - GroupSettingsFeatureFlagsCreateInput
Example
{
  "defaultCurrency": "xyz789",
  "hasTicketHandling": true,
  "flowNotifications": [NotificationRelationCreateInput],
  "customWelcomeContent": TranslationInput,
  "paymentPlan": "abc123",
  "features": GroupSettingsFeatureFlagsCreateInput
}

GroupGeneralSettingsUpdateInput

Fields
Input Field Description
hasTicketHandling - Boolean
paymentPlan - Boolean
defaultCurrency - Boolean
customWelcomeContent - TranslationInput
flowNotifications - [NotificationRelationCreateInput!]
features - GroupSettingsFeatureFlagsCreateInput
Example
{
  "hasTicketHandling": false,
  "paymentPlan": false,
  "defaultCurrency": false,
  "customWelcomeContent": TranslationInput,
  "flowNotifications": [NotificationRelationCreateInput],
  "features": GroupSettingsFeatureFlagsCreateInput
}

GroupInternalSettingsCreateInput

Fields
Input Field Description
features - GroupSettingsFeatureFlagsCreateInput
stripe_settings - StripeSettingsCreateInput
oracleSettings - OracleSettingsInput
hotelSettings - HotelSettingsInput
Example
{
  "features": GroupSettingsFeatureFlagsCreateInput,
  "stripe_settings": StripeSettingsCreateInput,
  "oracleSettings": OracleSettingsInput,
  "hotelSettings": HotelSettingsInput
}

GroupInternalSettingsUpdateInput

Fields
Input Field Description
features - GroupSettingsFeatureFlagsCreateInput
stripe_settings - StripeSettingsCreateInput
oracleSettings - OracleSettingsInput
hotelSettings - HotelSettingsInput
sso - JSON
Example
{
  "features": GroupSettingsFeatureFlagsCreateInput,
  "stripe_settings": StripeSettingsCreateInput,
  "oracleSettings": OracleSettingsInput,
  "hotelSettings": HotelSettingsInput,
  "sso": {}
}

GroupServicesFilterInput

Fields
Input Field Description
isServiceCheck - Boolean if true, only services that are service checks are returned
includeBle - Boolean
includeGeneralService - Boolean
includeRegularService - Boolean
type - ServiceType
itemType - ServiceItemType
excludeQRLandingPage - Boolean
search - String
Example
{
  "isServiceCheck": false,
  "includeBle": true,
  "includeGeneralService": true,
  "includeRegularService": true,
  "type": "JOT_FORM",
  "itemType": "general",
  "excludeQRLandingPage": false,
  "search": "xyz789"
}

GroupSettingsFeatureFlagsCreateInput

Fields
Input Field Description
hideAssetTypes - Boolean
hideAssetCategories - Boolean
showReservations - Boolean
hideAssetDocuments - Boolean
qrSiteReqq - Boolean
usersSeeAllTickets - Boolean
adminsSeeAllTickets - Boolean
hasAssetsChartView - Boolean
hideWorkOrders - Boolean
hideTickets - Boolean
hideUserSubscriptionPage - Boolean
hideExternalId - Boolean
partsInventory - Boolean
hideExtraFieldsInAssetForm - Boolean
alwaysHideCustomerTypes - Boolean
hasAccessToTrips - Boolean
webhooksEnabled - Boolean
hasAccessToVehicles - Boolean
defaultCurrency - String
isGroupTypeEditor - Boolean
useOldSiteAccessRule - Boolean
sitesBatchUpdate - Boolean
costsEnabled - Boolean
assetsBatchUpdate - Boolean
uncertaintyLimit - Int
hasApprovedAssetTypeSettings - Boolean
isAssetPollingAvailable - Boolean
disableTicketUuidInEmail - Boolean
extraFields - Boolean
advancedAssetStates - Boolean
hasLanguage - [LanguageLocaleEnum!]
showMaintenanceRequiredColumn - Boolean
allowEndCustomerEditAsset - Boolean
customerIotRules - Boolean
canObfuscateLocation - Boolean
assetRequestsEnabled - Boolean
linkHelp - String
linkAbout - String
useAlternateReservationName - Boolean
canAccessInternalSettings - Boolean
hideServicePackageForCustomers - Boolean
hideModuleSubscriptionPage - Boolean
showBothSiteNumbers - Boolean
workOrderDailyRate - Boolean
subsitesDisabled - Boolean
linkTermsOfService - String
signupRequestsEnabled - Boolean
allowedBrands - [String!]
useAlternateAssetName - Boolean
allowCustomerAddGroup - Boolean
serialNumberOptional - Boolean
machineChecks - Boolean
assetsBatchUploadNuvo - Boolean
assetsBatchUpload - Boolean
sitesBatchUpload - Boolean
deleteEventsEnabled - [String!]
assetNearSiteOverridesLocation - Boolean
hasAccessToIntegrationService - Boolean
disableCustomerGroup - Boolean
hasVNC - Boolean
hideGroupSelector - Boolean
hasLockableTypes - Boolean
hubspotHidden - Boolean
showAssetIntegrations - Boolean
enableIMEIDuplicationFromOtherGroups - Boolean
enableIMEIDuplicationToOtherGroups - Boolean
assetOverviewErrorCodeDescription - Boolean
disableQRCodeGeneration - Boolean
siteManagerTodoDisabled - Boolean
hideReleaseNotes - Boolean
proceduresEnabled - Boolean
linkShopLabelProtection - String
linkShopPaper - String
linkShopPrinter - String
assortmentList - Boolean
grafanaDashboard - Boolean
assetVNCClient - Boolean
hasQRCode - Boolean
qrAttachmentOptional - Boolean
qrIMEI - Boolean
excludeWarrantyTodos - Boolean
excludeServiceContractTodos - Boolean
excludeOwnershipTodos - Boolean
restrictReservation - Boolean
showNonNullableFilterOption - Boolean
bypassPrivateCheck - Boolean
releaseUserSubscriptions - Boolean
ticketEmailNotificationsDisabled - Boolean
ticketPushNotificationsDisabled - Boolean
editEventsEnabled - [String!]
hideInternalComments - Boolean
assignCurrentUserToTicket - Boolean
hideTicketEmailActions - Boolean
Example
{
  "hideAssetTypes": false,
  "hideAssetCategories": true,
  "showReservations": true,
  "hideAssetDocuments": true,
  "qrSiteReqq": true,
  "usersSeeAllTickets": true,
  "adminsSeeAllTickets": false,
  "hasAssetsChartView": false,
  "hideWorkOrders": true,
  "hideTickets": false,
  "hideUserSubscriptionPage": false,
  "hideExternalId": true,
  "partsInventory": true,
  "hideExtraFieldsInAssetForm": false,
  "alwaysHideCustomerTypes": true,
  "hasAccessToTrips": false,
  "webhooksEnabled": true,
  "hasAccessToVehicles": true,
  "defaultCurrency": "xyz789",
  "isGroupTypeEditor": true,
  "useOldSiteAccessRule": true,
  "sitesBatchUpdate": true,
  "costsEnabled": false,
  "assetsBatchUpdate": true,
  "uncertaintyLimit": 987,
  "hasApprovedAssetTypeSettings": false,
  "isAssetPollingAvailable": true,
  "disableTicketUuidInEmail": false,
  "extraFields": false,
  "advancedAssetStates": true,
  "hasLanguage": ["en_us"],
  "showMaintenanceRequiredColumn": true,
  "allowEndCustomerEditAsset": true,
  "customerIotRules": true,
  "canObfuscateLocation": true,
  "assetRequestsEnabled": false,
  "linkHelp": "xyz789",
  "linkAbout": "abc123",
  "useAlternateReservationName": true,
  "canAccessInternalSettings": true,
  "hideServicePackageForCustomers": false,
  "hideModuleSubscriptionPage": false,
  "showBothSiteNumbers": false,
  "workOrderDailyRate": false,
  "subsitesDisabled": false,
  "linkTermsOfService": "abc123",
  "signupRequestsEnabled": false,
  "allowedBrands": ["xyz789"],
  "useAlternateAssetName": true,
  "allowCustomerAddGroup": true,
  "serialNumberOptional": false,
  "machineChecks": true,
  "assetsBatchUploadNuvo": false,
  "assetsBatchUpload": true,
  "sitesBatchUpload": false,
  "deleteEventsEnabled": ["xyz789"],
  "assetNearSiteOverridesLocation": true,
  "hasAccessToIntegrationService": false,
  "disableCustomerGroup": false,
  "hasVNC": false,
  "hideGroupSelector": false,
  "hasLockableTypes": true,
  "hubspotHidden": true,
  "showAssetIntegrations": true,
  "enableIMEIDuplicationFromOtherGroups": true,
  "enableIMEIDuplicationToOtherGroups": true,
  "assetOverviewErrorCodeDescription": true,
  "disableQRCodeGeneration": true,
  "siteManagerTodoDisabled": false,
  "hideReleaseNotes": false,
  "proceduresEnabled": true,
  "linkShopLabelProtection": "xyz789",
  "linkShopPaper": "xyz789",
  "linkShopPrinter": "abc123",
  "assortmentList": true,
  "grafanaDashboard": true,
  "assetVNCClient": false,
  "hasQRCode": false,
  "qrAttachmentOptional": true,
  "qrIMEI": false,
  "excludeWarrantyTodos": false,
  "excludeServiceContractTodos": false,
  "excludeOwnershipTodos": false,
  "restrictReservation": false,
  "showNonNullableFilterOption": true,
  "bypassPrivateCheck": true,
  "releaseUserSubscriptions": true,
  "ticketEmailNotificationsDisabled": true,
  "ticketPushNotificationsDisabled": true,
  "editEventsEnabled": ["xyz789"],
  "hideInternalComments": false,
  "assignCurrentUserToTicket": false,
  "hideTicketEmailActions": false
}

GroupUpdateInput

Fields
Input Field Description
name - String
parentGroupId - HashedId
identificationNumber - String
vatNumber - String
handlerAlias - String
servicePackageId - HashedId Can only be changed by internal TS users currently
isCustomer - Boolean
getRawFlow - Boolean
assetLocationsHidden - Boolean
userRequestNotifiers - [NotificationRelationCreateInput!] Passing empty array will remove all the relations
generalSettings - GroupGeneralSettingsUpdateInput
internalSettings - GroupInternalSettingsUpdateInput
flowMaintainers - [NotificationRelationCreateInput!]
Example
{
  "name": "xyz789",
  "parentGroupId": HashedId,
  "identificationNumber": "abc123",
  "vatNumber": "xyz789",
  "handlerAlias": "abc123",
  "servicePackageId": HashedId,
  "isCustomer": false,
  "getRawFlow": false,
  "assetLocationsHidden": false,
  "userRequestNotifiers": [
    NotificationRelationCreateInput
  ],
  "generalSettings": GroupGeneralSettingsUpdateInput,
  "internalSettings": GroupInternalSettingsUpdateInput,
  "flowMaintainers": [NotificationRelationCreateInput]
}

HandlerRelationTypeEnum

Values
Enum Value Description

ASSIGNEE

FOLLOWER

CONVERTED_TO_WORK_ORDER

SUGGESTED_PARTNER

Example
"ASSIGNEE"

HandlerTypeEnum

Values
Enum Value Description

EXTERNALEMAIL

GROUP

SITEMANAGER

USER

WORK_ORDER

TEAM

Example
"EXTERNALEMAIL"

HandlerUpdateActionEnum

Values
Enum Value Description

ADD

REMOVE

Example
"ADD"

HashedId

Description

Obfuscated id for client use

Example
HashedId

HotelSettingsInput

Fields
Input Field Description
hotelId - NonEmptyString!
activeStatuses - [RoomStatusEnum!]!
Example
{
  "hotelId": "string",
  "activeStatuses": ["Inspected"]
}

ID

Description

The ID scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.

Example
4

IdInput

Fields
Input Field Description
id - HashedId!
Example
{"id": HashedId}

Int

Description

The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

Example
123

Integration

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - IntegrationNamesEnum!
config - [IntegrationConfigKey!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "WISAG",
  "config": [IntegrationConfigKey]
}

IntegrationConfigKey

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
key - String!
value - String!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "key": "xyz789",
  "value": "xyz789"
}

IntegrationNamesEnum

Values
Enum Value Description

WISAG

BB_ASE

ISSAT_INTELLITRAIL

ISSDK_INTELLITRAIL

ISSAU_INTELLITRAIL

SYNC_ASSETS

GONDER_KAERCHER

BASE_INTELLI_TRAIL

BASE_KAERCHER

BASE_PUDU

GONDER_PUDU

STOELTING_PUDU

BASE_SAFETYTEST

SCHMEINGBAU_SAFETYTEST_ASSETS

SCHMEINGBAU_SAFETYTEST_CHECKS

BASE_RIB

SCHMEINGBAU_RIB

DORFNER_SAFETYTEST_ASSETS

DORFNER_SAFETYTEST_CHECKS

PAULSCHULTEN_SAFETYTEST_ASSETS

PAULSCHULTEN_SAFETYTEST_CHECKS

ISSUK_KAERCHER

ISSGH_KAERCHER

ISSAS_KAERCHER

UKMGG_KAERCHER

RFMG_KAERCHER

ICE_PUDU

TENNANT_SENSOLUS

Example
"WISAG"

IntegrationObservation

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
integrationId - HashedId!
lastStartDate - DateTime
lastEndDate - DateTime
duration - Float
error - String
status - IntegrationObservationStatusEnum
records - [IntegrationObservationRecord!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "integrationId": HashedId,
  "lastStartDate": "2007-12-03T10:15:30Z",
  "lastEndDate": "2007-12-03T10:15:30Z",
  "duration": 123.45,
  "error": "xyz789",
  "status": "PENDING",
  "records": [IntegrationObservationRecord]
}

IntegrationObservationPaginatedDto

Fields
Field Name Description
rows - [IntegrationObservation!]!
meta - PaginationMeta!
total - Int!
Example
{
  "rows": [IntegrationObservation],
  "meta": PaginationMeta,
  "total": 987
}

IntegrationObservationRecord

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - IntegrationObservationRecordNames!
createdCount - Float
updatedCount - Float
deletedCount - Float
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "SITE",
  "createdCount": 123.45,
  "updatedCount": 123.45,
  "deletedCount": 123.45
}

IntegrationObservationRecordNames

Values
Enum Value Description

SITE

CATEGORY

TYPE

ASSET

GROUP

MODULE

CHECK

Example
"SITE"

IntegrationObservationStatusEnum

Values
Enum Value Description

PENDING

REJECTED

COMPLETED

Example
"PENDING"

IntegrationProviderDto

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - IntegrationNamesEnum!
config - [IntegrationConfigKey!]!
isCronActive - Boolean!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "WISAG",
  "config": [IntegrationConfigKey],
  "isCronActive": false
}

IntegrationUpdateInput

Fields
Input Field Description
key - String!
value - String!
Example
{
  "key": "abc123",
  "value": "xyz789"
}

JSON

Description

The JSON scalar type represents JSON values as specified by ECMA-404.

Example
{}

JSONObject

Description

The JSONObject scalar type represents JSON objects as specified by ECMA-404.

Example
{}

LanguageLocale

Values
Enum Value Description

ENGLISH

GERMAN

FRENCH

SPANISH

ITALIAN

POLISH

HUNGARIAN

DUTCH

TURKISH

SWEDISH

PORTUGUESE

JAPANESE

CHINESE

INDONESIAN

FINNISH

GREEK

ROMANIAN

CZECH

SLOVAK

BULGARIAN

NORWEGIAN

ESTONIAN

LATVIAN

LITHUANIAN

SLOVENIAN

DANISH

KOREAN

UKRAINIAN

RUSSIAN

MALAY

THAI

HINDI

TAMIL

FILIPINO

ARABIC

BENGALI

HEBREW

LAO

PERSIAN

SWAHILI

URDU

VIETNAMESE

Example
"ENGLISH"

LanguageLocaleEnum

Values
Enum Value Description

en_us

de_de

fr_fr

es_es

it_it

pl_pl

hu_hu

nl_nl

tr_tr

sv_se

pt_pt

ja_jp

zh_cn

id_id

fi_fi

el_gr

ro_ro

cs_cz

sk_sk

bg_bg

nb_no

et_ee

lv_lv

lt_lt

sl_si

da_dk

ko_kr

uk_ua

ru_ru

ms_my

th_th

hi_in

ta_in

tl_ph

ar_ar

bn_bd

he_il

lo_la

fa_ir

sw_ke

ur_pk

vi_vn

Example
"en_us"

LanguageNameEnum

Values
Enum Value Description

English

German

French

Spanish

Italian

Polish

Hungarian

Dutch

Turkish

Swedish

Portuguese

Japanese

Chinese

Indonesian

Finnish

Greek

Romanian

Czech

Slovak

Bulgarian

Norwegian

Estonian

Latvian

Lithuanian

Slovenian

Danish

Korean

Ukrainian

Russian

Malay

Thai

Hindi

Tamil

Filipino

Arabic

Bengali

Hebrew

Lao

Persian

Swahili

Urdu

Vietnamese

Example
"English"

LanguageTag

Description

String identified representing a language in format <2l-langcode>_<2l-locale>

Example
LanguageTag

LanguageV2

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
code - LanguageLocaleEnum!
name - LanguageNameEnum!
nameNative - String!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "code": "en_us",
  "name": "English",
  "nameNative": "xyz789"
}

Locale

Description

String identified representing a language in format <2l-langcode>_<2l-locale>

Example
"zh-cmn-Hans-CN"

LocaleInput

Fields
Input Field Description
language - LanguageLocaleEnum!
timezone - String!
Example
{"language": "en_us", "timezone": "xyz789"}

Location

Description

Representing a reported location on the map

Fields
Field Name Description
id - HashedId!
longitude - String!
latitude - String!
uncertainty - Float!
timestamp - Timestamp!
status - LocationStatusEnum Depending on the status you can give an interpretation to the location data
gatewayAsset - Asset
locationSource - LocationSourceEnum
Example
{
  "id": HashedId,
  "longitude": "abc123",
  "latitude": "abc123",
  "uncertainty": 123.45,
  "timestamp": 1592577642,
  "status": "NORMAL",
  "gatewayAsset": Asset,
  "locationSource": "GPS"
}

LocationSourceEnum

Values
Enum Value Description

GPS

WIFI

TRIANGULATION

SITE

UNKNOWN

PHONE

Example
"GPS"

LocationStatusEnum

Description

Describes the state of the supplied location data

Values
Enum Value Description

NORMAL

HIDDEN

Example
"NORMAL"

LoginInterrupt

Description

Users of every Toolsense app may get a message on each login, most often containing product updates.

Fields
Field Name Description
id - HashedId!
title - Translation
titleId - HashedId
content - Translation The message body in HTML
contentId - HashedId!
visibleToGroupIds - [HashedId!]
visibleToGroups - [Group!]
created - Timestamp
updated - Timestamp
Example
{
  "id": HashedId,
  "title": Translation,
  "titleId": HashedId,
  "content": Translation,
  "contentId": HashedId,
  "visibleToGroupIds": [HashedId],
  "visibleToGroups": [Group],
  "created": 1592577642,
  "updated": 1592577642
}

MachineCheckEventDataDto

Fields
Field Name Description
lastCheckLastEditedByUserId - Int
nextCheckLastEditedByUserId - Int
lastCheckLastEditedOn - Timestamp
nextCheckLastEditedOn - Timestamp
id - Int!
name - String!
dueOn - Timestamp!
autoScheduled - Boolean
completedOn - Timestamp!
completedByUserId - Int
rescheduled - RescheduledEventDataDto!
reason - String!
Example
{
  "lastCheckLastEditedByUserId": 123,
  "nextCheckLastEditedByUserId": 987,
  "lastCheckLastEditedOn": 1592577642,
  "nextCheckLastEditedOn": 1592577642,
  "id": 987,
  "name": "xyz789",
  "dueOn": 1592577642,
  "autoScheduled": true,
  "completedOn": 1592577642,
  "completedByUserId": 123,
  "rescheduled": RescheduledEventDataDto,
  "reason": "xyz789"
}

MachineCheckStat

Fields
Field Name Description
period - String!
quantity - Int!
Example
{"period": "abc123", "quantity": 123}

Manufacturer

Description

Manufacturer in the TS system is an entity/brand that (may or may not be) materialising as a group (maintainer), that actually creates assets and manages manufacturer properties.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - String!
nameKey - String!
notificationsEnabled - Boolean!
maintainedByGroupId - Int!
maintainedByGroup - Group! The group that can create assetTypes and assetCategories as this manufacturer, and can manage this manufacturer's properties.
assetIntegrations - [AssetIntegration!]! Loads assetIntegrations connected to this manufacturer. Note that assets could use other integrations as well, eg. default ones provided by ToolSense.
assetIntegrationIds - [HashedId!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "abc123",
  "nameKey": "xyz789",
  "notificationsEnabled": false,
  "maintainedByGroupId": 987,
  "maintainedByGroup": Group,
  "assetIntegrations": [AssetIntegration],
  "assetIntegrationIds": [HashedId]
}

ManufacturerCreateInput

Fields
Input Field Description
name - String!
nameKey - String!
notificationsEnabled - Boolean!
Example
{
  "name": "xyz789",
  "nameKey": "xyz789",
  "notificationsEnabled": true
}

ManufacturerUpdateInput

Fields
Input Field Description
name - String
nameKey - String
notificationsEnabled - Boolean
Example
{
  "name": "abc123",
  "nameKey": "abc123",
  "notificationsEnabled": true
}

Module

Description
    Representation of the TS Module that is integrated in an asset. Modules are the entities sending data packets
    to the system, triggering events. To provide data, modules have to be attached to an asset. How module data is
    interpreted is determined by the AssetIntegration in effect and thus values of Parameter/ParameterValue
Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
imei - String! IMEI of the module
controlId - String Used to connect the Module to a Control
stripeCustomerId - String Used to connect the Module to a Stripe Customer
stripePriceId - String Used to connect the Module to a Stripe Product
moduleTypeId - HashedId can be ignored
moduleRevision - String Some value that is specifying what kind of module this is
moduleVersionNr - String Some value that is specifying what kind of module this is
assetVersionNr - String Some value that is specifying what kind of module this is
assignedToAsset - Asset The assets this module is currently built into/registered to Use assignedToAssets instead
assignedToAssetId - HashedId The assets this module is currently built into/registered to use assignedToAssetsIds instead
assignedToAssets - [Asset!]! The assets this module is currently built into/registered to Not needed and not implemented, returns empty array
assignedToAssetIds - [HashedId!]! The assets this module is currently built into/registered to Not needed and not implemented, returns empty array
currentPrice - Float
isFake - Boolean! specifying if this is a real ToolSense module or not (also usually true if the imei is fake but the module is real, e.g. Hako Module)
moduleType - ModuleType
price - StripePrice
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "imei": "xyz789",
  "controlId": "abc123",
  "stripeCustomerId": "abc123",
  "stripePriceId": "abc123",
  "moduleTypeId": HashedId,
  "moduleRevision": "xyz789",
  "moduleVersionNr": "abc123",
  "assetVersionNr": "xyz789",
  "assignedToAsset": Asset,
  "assignedToAssetId": HashedId,
  "assignedToAssets": [Asset],
  "assignedToAssetIds": [HashedId],
  "currentPrice": 987.65,
  "isFake": false,
  "moduleType": ModuleType,
  "price": StripePrice
}

ModuleSubscription

Fields
Field Name Description
id - HashedId!
renewalMonth - Int!
groupId - HashedId
customer - String
moduleId - HashedId!
assetId - HashedId!
startTime - DateTime!
endTime - DateTime
module - Module!
asset - Asset
group - Group
subscription - StripeSubscriptionPlan
Example
{
  "id": HashedId,
  "renewalMonth": 987,
  "groupId": HashedId,
  "customer": "abc123",
  "moduleId": HashedId,
  "assetId": HashedId,
  "startTime": "2007-12-03T10:15:30Z",
  "endTime": "2007-12-03T10:15:30Z",
  "module": Module,
  "asset": Asset,
  "group": Group,
  "subscription": StripeSubscriptionPlan
}

ModuleSubscriptionsPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [ModuleSubscription!]!
Example
{
  "meta": PaginationMeta,
  "rows": [ModuleSubscription]
}

ModuleType

Description

Model/Type of a TS Module

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - String
specification - String Specification for this model
sensors - String
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "xyz789",
  "specification": "xyz789",
  "sensors": "xyz789"
}

ModuleUsageInfo

Fields
Field Name Description
id - HashedId!
hasConnectedAssets - Boolean!
canBeReused - Boolean!
canBeTransferred - Boolean!
primarySerial - String
Example
{
  "id": HashedId,
  "hasConnectedAssets": true,
  "canBeReused": false,
  "canBeTransferred": false,
  "primarySerial": "abc123"
}

MqttMessageType

Values
Enum Value Description

LOCK

UNLOCK

POLL

Example
"LOCK"

NewCostInput

Fields
Input Field Description
assetId - HashedId!
costTypeId - HashedId!
currency - String!
originatingFromEventId - HashedId
originatingFromCommentId - HashedId
value - Float!
Example
{
  "assetId": HashedId,
  "costTypeId": HashedId,
  "currency": "xyz789",
  "originatingFromEventId": HashedId,
  "originatingFromCommentId": HashedId,
  "value": 123.45
}

NonEmptyString

Description

A string that cannot be passed as an empty value

Example
"string"

NotificationConfigDto

Fields
Field Name Description
ticketPush - Boolean!
ticketEmail - Boolean!
Example
{"ticketPush": false, "ticketEmail": false}

NotificationConfigInput

Fields
Input Field Description
ticketPush - Boolean
ticketEmail - Boolean
Example
{"ticketPush": true, "ticketEmail": false}

NotificationFilter

Fields
Field Name Description
id - HashedId!
state - Boolean!
preferences - JSON Not used
Example
{"id": HashedId, "state": false, "preferences": {}}

NotificationFilterUpdateInput

Fields
Input Field Description
state - Boolean!
Example
{"state": true}

NotificationRelation

Description

Makes possible to specify entities who receive Notification, it can be users (userIds) from system or emails (which could be external)

Fields
Field Name Description
relation - NotificationRelationType! Defines the type of entity
relationValue - String Optionally required per type - specifies entity property
relationId - HashedId Optionally required per type - specifies entity id
Example
{
  "relation": "EXTERNALEMAIL",
  "relationValue": "xyz789",
  "relationId": HashedId
}

NotificationRelationCreateInput

Fields
Input Field Description
relationValue - String
relationId - HashedId
relation - NotificationRelationType!
Example
{
  "relationValue": "xyz789",
  "relationId": HashedId,
  "relation": "EXTERNALEMAIL"
}

NotificationRelationType

Values
Enum Value Description

EXTERNALEMAIL

Arbitrary email address, email provided in relationValue is required

SITEMANAGER

USERID

A user in the TS platform. Id provided in relationId is required

GROUP

USER

TEAM

Example
"EXTERNALEMAIL"

OTAUpdate

Description

An Over-the-air update to the TS module.

Fields
Field Name Description
id - HashedId!
fileName - String
versionName - String
assetIntegration - AssetIntegration
assetIntegrationId - HashedId!
description - Translation
descriptionId - HashedId!
created - Timestamp
updated - Timestamp
Example
{
  "id": HashedId,
  "fileName": "xyz789",
  "versionName": "xyz789",
  "assetIntegration": AssetIntegration,
  "assetIntegrationId": HashedId,
  "description": Translation,
  "descriptionId": HashedId,
  "created": 1592577642,
  "updated": 1592577642
}

OracleSettingsInput

Fields
Input Field Description
ohipApiUrl - NonEmptyString!
ohipClientId - NonEmptyString!
ohipClientSecret - NonEmptyString!
ohipAppKey - NonEmptyString!
ohipUsername - NonEmptyString For non-production usage
ohipPassword - NonEmptyString For non-production usage
ohipEnterpriseId - NonEmptyString For production usage
Example
{
  "ohipApiUrl": "string",
  "ohipClientId": "string",
  "ohipClientSecret": "string",
  "ohipAppKey": "string",
  "ohipUsername": "string",
  "ohipPassword": "string",
  "ohipEnterpriseId": "string"
}

OwnershipValArray

Fields
Field Name Description
data - [AssetOwnership!]!
Example
{"data": ["PURCHASE"]}

PaginatedAssets

Fields
Field Name Description
meta - PaginationMeta!
rows - [Asset!]
total - Int!
assets - [Asset!]
Example
{
  "meta": PaginationMeta,
  "rows": [Asset],
  "total": 123,
  "assets": [Asset]
}

PaginationMeta

Fields
Field Name Description
count - Int
offset - Int
limit - Int
orderBy - String
order - String
Example
{
  "count": 123,
  "offset": 123,
  "limit": 123,
  "orderBy": "xyz789",
  "order": "abc123"
}

PaginationParams

Fields
Input Field Description
additionalItemId - HashedId if provided the result will also include this item (offset+1)
first - Int Only return the first [n] results
limit - Int! The number of items to return
offset - Int! The number of items to skip before starting to collect the result set
Example
{
  "additionalItemId": HashedId,
  "first": 123,
  "limit": 123,
  "offset": 987
}

Parameter

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
savedName - String
title - Translation
unit - UnitEnum
customUnit - String
receivedName - String
shortDescription - String
receivedDescriptionId - HashedId
receivedDescription - Translation
descriptionId - HashedId
description - Translation
minValue - String Minimum possible value for this parameter
maxValue - String Maximum possible value for this parameter
visualisationGroup - String
visualisationMinRange - String
visualisationMaxRange - String
visualisationScale - String
visualisationRangeStepSize - String
interpolationMethod - String
interpolationFrequency - String
interpolationMaxGap - String
parameterSetId - HashedId
isSummedValue - Boolean! Parameter is a summarized value
isAverageValue - Boolean!
isLastValue - Boolean!
isCalculatedValue - Boolean
isNoGraphValue - Boolean! False for parameters which can be displayed on a graph (eg. values like imei, id, or latitude)
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "savedName": "xyz789",
  "title": Translation,
  "unit": "AH",
  "customUnit": "xyz789",
  "receivedName": "abc123",
  "shortDescription": "abc123",
  "receivedDescriptionId": HashedId,
  "receivedDescription": Translation,
  "descriptionId": HashedId,
  "description": Translation,
  "minValue": "xyz789",
  "maxValue": "xyz789",
  "visualisationGroup": "abc123",
  "visualisationMinRange": "xyz789",
  "visualisationMaxRange": "xyz789",
  "visualisationScale": "abc123",
  "visualisationRangeStepSize": "abc123",
  "interpolationMethod": "abc123",
  "interpolationFrequency": "xyz789",
  "interpolationMaxGap": "xyz789",
  "parameterSetId": HashedId,
  "isSummedValue": false,
  "isAverageValue": false,
  "isLastValue": true,
  "isCalculatedValue": false,
  "isNoGraphValue": false
}

ParameterResult

Fields
Field Name Description
assetId - HashedId
parameter - [Parameter!]
Example
{
  "assetId": HashedId,
  "parameter": [Parameter]
}

ParameterSet

Description

Parameters that "belong together", are thematically similar or dependent can be grouped as Sets. For example params wich represent stacked/separated values of the same value - like a high/low usage runtime, or battery load (with separate parameters for 0-5A, 5-10A, etc). Sets may have no parameters returned.

Fields
Field Name Description
id - HashedId!
title - Translation
titleId - HashedId
description - Translation
descriptionId - HashedId
parameters - [Parameter!]!
Example
{
  "id": HashedId,
  "title": Translation,
  "titleId": HashedId,
  "description": Translation,
  "descriptionId": HashedId,
  "parameters": [Parameter]
}

Part

Description

The Part entity represents spare parts that you can buy separately to replace old or broken parts in a piece of equipment. They are usually parts that are designed to be easily removed or fitted.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
publicId - Int!
type - String!
nameId - HashedId!
name - Translation!
descriptionId - HashedId
description - Translation
siteId - HashedId!
site - Site!
area - String
availableQuantity - Int!
minQuantity - Int!
maxQuantity - Int!
unitOfMeasure - String!
unitCost - Float!
currency - String!
totalStockValue - Float!
groupId - HashedId!
group - Group!
customerId - HashedId
customer - Group
externalId - String
uuid - String!
qrAttached - Boolean!
brand - String
previousQuantity - Int!
responsiblePerson - String
vendor - String
image - String
shouldNotifyCriticalStockLevel - Boolean!
sendNotificationsTo - [RuleNotificationRelation!]! Add entities who will be notified when stock level is changed.
documents - [Document!]!
events - [Event!]!
createdByGroupId - HashedId!
createdByGroup - Group!
createdByUserId - HashedId!
createdByUser - User
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "publicId": 987,
  "type": "xyz789",
  "nameId": HashedId,
  "name": Translation,
  "descriptionId": HashedId,
  "description": Translation,
  "siteId": HashedId,
  "site": Site,
  "area": "abc123",
  "availableQuantity": 123,
  "minQuantity": 987,
  "maxQuantity": 987,
  "unitOfMeasure": "abc123",
  "unitCost": 123.45,
  "currency": "abc123",
  "totalStockValue": 123.45,
  "groupId": HashedId,
  "group": Group,
  "customerId": HashedId,
  "customer": Group,
  "externalId": "abc123",
  "uuid": "xyz789",
  "qrAttached": true,
  "brand": "abc123",
  "previousQuantity": 123,
  "responsiblePerson": "xyz789",
  "vendor": "xyz789",
  "image": "abc123",
  "shouldNotifyCriticalStockLevel": true,
  "sendNotificationsTo": [RuleNotificationRelation],
  "documents": [Document],
  "events": [Event],
  "createdByGroupId": HashedId,
  "createdByGroup": Group,
  "createdByUserId": HashedId,
  "createdByUser": User
}

PartCreateInput

Fields
Input Field Description
type - String!
siteId - HashedId!
area - String
unitOfMeasure - String!
groupId - HashedId!
customerId - HashedId
externalId - String
qrAttached - Boolean!
brand - String
responsiblePerson - String
vendor - String
shouldNotifyCriticalStockLevel - Boolean!
availableQuantity - Int
minQuantity - Int
maxQuantity - Int
unitCost - Float
currency - String
totalStockValue - Float
uuid - String
name - TranslationInput!
description - TranslationInput
sendNotificationsTo - [RuleNotificationRelationInput!]!
Example
{
  "type": "xyz789",
  "siteId": HashedId,
  "area": "xyz789",
  "unitOfMeasure": "xyz789",
  "groupId": HashedId,
  "customerId": HashedId,
  "externalId": "xyz789",
  "qrAttached": false,
  "brand": "xyz789",
  "responsiblePerson": "abc123",
  "vendor": "xyz789",
  "shouldNotifyCriticalStockLevel": false,
  "availableQuantity": 123,
  "minQuantity": 123,
  "maxQuantity": 987,
  "unitCost": 987.65,
  "currency": "abc123",
  "totalStockValue": 987.65,
  "uuid": "abc123",
  "name": TranslationInput,
  "description": TranslationInput,
  "sendNotificationsTo": [RuleNotificationRelationInput]
}

PartMoving

Description

Part Moving collects the history of changes: quantity, contentQuantity, unitCost, totalValue. All records store those parameters in context of part, site and operationDate.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
partId - HashedId!
part - Part!
siteId - HashedId!
site - Site!
operationDate - DateTime
unitCost - Float!
quantity - Float!
contentQuantity - Float!
totalValue - Float!
createdByUserId - HashedId!
createdByUser - User!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "partId": HashedId,
  "part": Part,
  "siteId": HashedId,
  "site": Site,
  "operationDate": "2007-12-03T10:15:30Z",
  "unitCost": 987.65,
  "quantity": 987.65,
  "contentQuantity": 123.45,
  "totalValue": 123.45,
  "createdByUserId": HashedId,
  "createdByUser": User
}

PartMovingCreateInput

Fields
Input Field Description
partId - HashedId!
siteId - HashedId!
operationDate - DateTime!
unitCost - Float!
quantity - Float!
contentQuantity - Float!
quantityStock - Float!
contentQuantityStock - Float!
notificationsListChanged - Boolean
shouldSkipPartMoving - Boolean
Example
{
  "partId": HashedId,
  "siteId": HashedId,
  "operationDate": "2007-12-03T10:15:30Z",
  "unitCost": 987.65,
  "quantity": 987.65,
  "contentQuantity": 123.45,
  "quantityStock": 123.45,
  "contentQuantityStock": 123.45,
  "notificationsListChanged": false,
  "shouldSkipPartMoving": true
}

PartPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [Part!]!
Example
{
  "meta": PaginationMeta,
  "rows": [Part]
}

PartParameter

Fields
Field Name Description
id - HashedId!
savedName - String
title - Translation
unit - String
minValue - String
maxValue - String
visualisationGroup - String
visualisationMinRange - String
visualisationMaxRange - String
visualisationScale - String
visualisationRangeStepSize - String
interpolationMethod - String
interpolationFrequency - String
interpolationMaxGap - String
parameterSetId - HashedId
isSummedValue - Boolean!
isAverageValue - Boolean!
isLastValue - Boolean!
isCalculatedValue - Boolean
isNoGraphValue - Boolean!
Example
{
  "id": HashedId,
  "savedName": "abc123",
  "title": Translation,
  "unit": "xyz789",
  "minValue": "abc123",
  "maxValue": "xyz789",
  "visualisationGroup": "abc123",
  "visualisationMinRange": "xyz789",
  "visualisationMaxRange": "xyz789",
  "visualisationScale": "xyz789",
  "visualisationRangeStepSize": "xyz789",
  "interpolationMethod": "xyz789",
  "interpolationFrequency": "abc123",
  "interpolationMaxGap": "abc123",
  "parameterSetId": HashedId,
  "isSummedValue": true,
  "isAverageValue": true,
  "isLastValue": false,
  "isCalculatedValue": true,
  "isNoGraphValue": false
}

PartStatisticData

Fields
Field Name Description
part - Part!
parameters - [PartParameter!]!
timestamps - [Timestamp!]!
values - [Float!]!
Example
{
  "part": Part,
  "parameters": [PartParameter],
  "timestamps": [1592577642],
  "values": [987.65]
}

PartUpdateInput

Fields
Input Field Description
type - String
siteId - HashedId
area - String
unitOfMeasure - String
groupId - HashedId
customerId - HashedId
externalId - String
qrAttached - Boolean
brand - String
responsiblePerson - String
vendor - String
shouldNotifyCriticalStockLevel - Boolean
availableQuantity - Int
minQuantity - Int
maxQuantity - Int
unitCost - Float
currency - String
totalStockValue - Float
uuid - String
name - TranslationInput!
description - TranslationInput
sendNotificationsTo - [RuleNotificationRelationInput!]!
Example
{
  "type": "abc123",
  "siteId": HashedId,
  "area": "xyz789",
  "unitOfMeasure": "abc123",
  "groupId": HashedId,
  "customerId": HashedId,
  "externalId": "xyz789",
  "qrAttached": false,
  "brand": "xyz789",
  "responsiblePerson": "abc123",
  "vendor": "abc123",
  "shouldNotifyCriticalStockLevel": true,
  "availableQuantity": 123,
  "minQuantity": 123,
  "maxQuantity": 123,
  "unitCost": 123.45,
  "currency": "xyz789",
  "totalStockValue": 123.45,
  "uuid": "abc123",
  "name": TranslationInput,
  "description": TranslationInput,
  "sendNotificationsTo": [RuleNotificationRelationInput]
}

ProcedureComponentChoice

Values
Enum Value Description

na

good

notGood

needsAttention

Example
"na"

ProcedureComponentContentType

Values
Enum Value Description

text

date

site

asset

number

section

heading

scanned

dropdown

checkbox

assignee

signature

asset_type

attachment

multi_choice

single_select

ticket_status

single_choice

yes_no_choice

asset_category

ticket_urgency

check_last_date

check_next_date

asset_availability

Example
"text"

ProcedureComponentYesNo

Values
Enum Value Description

na

no

yes

Example
"na"

ProcedureInstance

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
templateId - HashedId!
serviceId - HashedId!
createdByGroupId - HashedId!
createdByUserId - HashedId!
scannedAssetId - HashedId use assetIds field for the scanned component
checkEventId - HashedId
scannedSiteId - HashedId use siteIds field for the scanned component
scannedSite - Site
ticket - Ticket!
scannedAsset - Asset
service - Service!
createdByUser - User
createdByGroup - Group!
template - ProcedureTemplate!
components - [ProcedureInstanceComponent!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "templateId": HashedId,
  "serviceId": HashedId,
  "createdByGroupId": HashedId,
  "createdByUserId": HashedId,
  "scannedAssetId": HashedId,
  "checkEventId": HashedId,
  "scannedSiteId": HashedId,
  "scannedSite": Site,
  "ticket": Ticket,
  "scannedAsset": Asset,
  "service": Service,
  "createdByUser": User,
  "createdByGroup": Group,
  "template": ProcedureTemplate,
  "components": [ProcedureInstanceComponent]
}

ProcedureInstanceComponent

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
dateValue - DateTime
comment - String
textValue - String
numberValue - Int
checkedValue - Boolean
yesNoValue - ProcedureComponentYesNo
choiceValue - ProcedureComponentChoice
instanceId - HashedId!
parentId - HashedId
templateComponentId - HashedId!
choiceOptionId - HashedId
children - [ProcedureInstanceComponent!]!
assets - [Asset!]!
sites - [Site!]!
assignees - [AvailableHandler!]!
templateComponent - ProcedureTemplateComponent!
choiceOptions - [ProcedureInstanceComponentChoiceOption!]!
choiceOption - ProcedureInstanceComponentChoiceOption
assetCategories - [AssetCategory!]!
assetTypes - [AssetType!]!
documents - [Document!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "dateValue": "2007-12-03T10:15:30Z",
  "comment": "abc123",
  "textValue": "xyz789",
  "numberValue": 987,
  "checkedValue": false,
  "yesNoValue": "na",
  "choiceValue": "na",
  "instanceId": HashedId,
  "parentId": HashedId,
  "templateComponentId": HashedId,
  "choiceOptionId": HashedId,
  "children": [ProcedureInstanceComponent],
  "assets": [Asset],
  "sites": [Site],
  "assignees": [AvailableHandler],
  "templateComponent": ProcedureTemplateComponent,
  "choiceOptions": [
    ProcedureInstanceComponentChoiceOption
  ],
  "choiceOption": ProcedureInstanceComponentChoiceOption,
  "assetCategories": [AssetCategory],
  "assetTypes": [AssetType],
  "documents": [Document]
}

ProcedureInstanceComponentChoiceOption

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
componentId - HashedId!
choiceOptionId - HashedId!
choiceOption - ProcedureTemplateComponentChoiceOption!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "componentId": HashedId,
  "choiceOptionId": HashedId,
  "choiceOption": ProcedureTemplateComponentChoiceOption
}

ProcedureInstanceComponentCreateInput

Fields
Input Field Description
dateValue - DateTime
comment - String
textValue - String
numberValue - Int
checkedValue - Boolean
yesNoValue - ProcedureComponentYesNo
choiceValue - ProcedureComponentChoice
templateComponentId - HashedId!
choiceOptionId - HashedId
documents - [Upload!]
assetIds - [HashedId!]
userIds - [HashedId!]
groupIds - [HashedId!]
suggestedGroupIds - [HashedId!]
suggestedTeamIds - [HashedId!]
suggestedUserIds - [HashedId!]
teamIds - [HashedId!]
assetCategoryIds - [HashedId!]
assetTypeIds - [HashedId!]
siteIds - [HashedId!]
choiceOptionIds - [HashedId!]
children - [ProcedureInstanceComponentCreateInput!]
Example
{
  "dateValue": "2007-12-03T10:15:30Z",
  "comment": "abc123",
  "textValue": "abc123",
  "numberValue": 123,
  "checkedValue": true,
  "yesNoValue": "na",
  "choiceValue": "na",
  "templateComponentId": HashedId,
  "choiceOptionId": HashedId,
  "documents": [Upload],
  "assetIds": [HashedId],
  "userIds": [HashedId],
  "groupIds": [HashedId],
  "suggestedGroupIds": [HashedId],
  "suggestedTeamIds": [HashedId],
  "suggestedUserIds": [HashedId],
  "teamIds": [HashedId],
  "assetCategoryIds": [HashedId],
  "assetTypeIds": [HashedId],
  "siteIds": [HashedId],
  "choiceOptionIds": [HashedId],
  "children": [ProcedureInstanceComponentCreateInput]
}

ProcedureInstanceCreateInput

Fields
Input Field Description
templateId - HashedId!
serviceId - HashedId!
scannedAssetId - HashedId
checkEventId - HashedId
scannedSiteId - HashedId
components - [ProcedureInstanceComponentCreateInput!]!
Example
{
  "templateId": HashedId,
  "serviceId": HashedId,
  "scannedAssetId": HashedId,
  "checkEventId": HashedId,
  "scannedSiteId": HashedId,
  "components": [ProcedureInstanceComponentCreateInput]
}

ProcedureTemplate

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
type - ProcedureTemplateType!
itemType - ProcedureTemplateItemType!
preset - ProcedureTemplatePreset!
accessLevel - ProcedureTemplateAccessLevel!
iconUrl - String
createdByGroupId - HashedId!
createdByUserId - HashedId!
titleId - HashedId!
descriptionId - HashedId
rootId - HashedId
parentId - HashedId
publicId - Int!
publicRootId - Int
servicePackages - [ServicePackage!]!
title - Translation
createdByUser - User!
createdByGroup - Group!
description - Translation
components - [ProcedureTemplateComponent!]!
automations - [ProcedureTemplateAutomation!]!
parent - ProcedureTemplate
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "type": "tickets",
  "itemType": "general",
  "preset": "check",
  "accessLevel": "tree",
  "iconUrl": "xyz789",
  "createdByGroupId": HashedId,
  "createdByUserId": HashedId,
  "titleId": HashedId,
  "descriptionId": HashedId,
  "rootId": HashedId,
  "parentId": HashedId,
  "publicId": 987,
  "publicRootId": 123,
  "servicePackages": [ServicePackage],
  "title": Translation,
  "createdByUser": User,
  "createdByGroup": Group,
  "description": Translation,
  "components": [ProcedureTemplateComponent],
  "automations": [ProcedureTemplateAutomation],
  "parent": ProcedureTemplate
}

ProcedureTemplateAccessLevel

Values
Enum Value Description

tree

local

branch

Example
"tree"

ProcedureTemplateAutomation

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
templateId - HashedId!
type - TicketAutomationEnum!
runOnTicketStatus - TicketStateEnum
components - [ProcedureTemplateComponent!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "templateId": HashedId,
  "type": "ble",
  "runOnTicketStatus": "open",
  "components": [ProcedureTemplateComponent]
}

ProcedureTemplateAutomationCreateInput

Fields
Input Field Description
type - TicketAutomationEnum!
runOnTicketStatus - TicketStateEnum
Example
{"type": "ble", "runOnTicketStatus": "open"}

ProcedureTemplateComponent

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
order - Int!
parentId - HashedId
automations - Int!
templateId - HashedId!
titleId - HashedId!
descriptionId - HashedId
clientId - Int!
isRequired - Boolean!
isTemplate - Boolean!
isMultiple - Boolean!
isQrScanner - Boolean!
enabled - Boolean!
isNfcScanner - Boolean!
contentType - ProcedureComponentContentType!
isHiddenInTicket - Boolean!
isHiddenInResult - Boolean! used only in mobile. use isHiddenInTicket instead
isHiddenInForm - Boolean!
includeTime - Boolean!
isOnlyAssortmentTypes - Boolean!
title - Translation
description - Translation
documents - [Document!]!
children - [ProcedureTemplateComponent!]!
choiceOptions - [ProcedureTemplateComponentChoiceOption!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "order": 987,
  "parentId": HashedId,
  "automations": 987,
  "templateId": HashedId,
  "titleId": HashedId,
  "descriptionId": HashedId,
  "clientId": 987,
  "isRequired": true,
  "isTemplate": false,
  "isMultiple": false,
  "isQrScanner": false,
  "enabled": true,
  "isNfcScanner": true,
  "contentType": "text",
  "isHiddenInTicket": false,
  "isHiddenInResult": true,
  "isHiddenInForm": false,
  "includeTime": true,
  "isOnlyAssortmentTypes": false,
  "title": Translation,
  "description": Translation,
  "documents": [Document],
  "children": [ProcedureTemplateComponent],
  "choiceOptions": [
    ProcedureTemplateComponentChoiceOption
  ]
}

ProcedureTemplateComponentChoiceOption

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
componentId - HashedId!
nameId - HashedId!
order - Int!
isSelectedByDefault - Boolean!
code - String
name - Translation
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "componentId": HashedId,
  "nameId": HashedId,
  "order": 123,
  "isSelectedByDefault": false,
  "code": "xyz789",
  "name": Translation
}

ProcedureTemplateComponentChoiceOptionCreateInput

Fields
Input Field Description
name - TranslationInput!
isSelectedByDefault - Boolean!
code - String
Example
{
  "name": TranslationInput,
  "isSelectedByDefault": false,
  "code": "xyz789"
}

ProcedureTemplateComponentCreateInput

Fields
Input Field Description
automations - Int!
clientId - Int!
isRequired - Boolean!
isTemplate - Boolean!
isMultiple - Boolean!
isQrScanner - Boolean!
enabled - Boolean!
isNfcScanner - Boolean!
contentType - ProcedureComponentContentType!
isHiddenInTicket - Boolean!
isHiddenInForm - Boolean!
includeTime - Boolean!
isOnlyAssortmentTypes - Boolean!
title - TranslationInput!
description - TranslationInput
documents - [Upload!]!
children - [ProcedureTemplateComponentCreateInput!]
choiceOptions - [ProcedureTemplateComponentChoiceOptionCreateInput!]!
Example
{
  "automations": 123,
  "clientId": 987,
  "isRequired": true,
  "isTemplate": true,
  "isMultiple": true,
  "isQrScanner": false,
  "enabled": true,
  "isNfcScanner": true,
  "contentType": "text",
  "isHiddenInTicket": true,
  "isHiddenInForm": true,
  "includeTime": false,
  "isOnlyAssortmentTypes": false,
  "title": TranslationInput,
  "description": TranslationInput,
  "documents": [Upload],
  "children": [ProcedureTemplateComponentCreateInput],
  "choiceOptions": [
    ProcedureTemplateComponentChoiceOptionCreateInput
  ]
}

ProcedureTemplateCreateInput

Example
{
  "type": "tickets",
  "itemType": "general",
  "preset": "check",
  "accessLevel": "tree",
  "iconUrl": "xyz789",
  "parentId": HashedId,
  "title": TranslationInput,
  "description": TranslationInput,
  "components": [ProcedureTemplateComponentCreateInput],
  "automations": [ProcedureTemplateAutomationCreateInput]
}

ProcedureTemplateItemType

Values
Enum Value Description

general

asset

site

Example
"general"

ProcedureTemplatePaginatedDto

Fields
Field Name Description
rows - [ProcedureTemplate!]!
meta - PaginationMeta!
total - Int!
Example
{
  "rows": [ProcedureTemplate],
  "meta": PaginationMeta,
  "total": 123
}

ProcedureTemplatePreset

Values
Enum Value Description

check

general

service

landing

Example
"check"

ProcedureTemplateType

Values
Enum Value Description

tickets

work_orders

Example
"tickets"

ProcessHandler

Fields
Field Name Description
id - HashedId!
displayName - String!
relationValue - String
relationType - HandlerRelationTypeEnum!
handlerType - HandlerTypeEnum!
isDeletable - Boolean!
Example
{
  "id": HashedId,
  "displayName": "xyz789",
  "relationValue": "xyz789",
  "relationType": "ASSIGNEE",
  "handlerType": "EXTERNALEMAIL",
  "isDeletable": true
}

ProcessedAssetData

Description

The result of the processedAssetData query Contains a list of parameters A list values for each requested parameter in the same order as the parameters A list of timestamps in the same order and amount as the values. example query and result could be: processedAssetData (assetId: [], parameterId: [], from: 1539077400000, to: 1539586800000) [{ asset: { id: , ...}, parameters: [{ id: 1 savedName: bat, ... }], values: [["","","",""]], timestamps: [1539077400000,1539583200000,1539585000000,1539586800000] }]

Fields
Field Name Description
asset - Asset!
parameters - [Parameter!]!
values - [Float]
timestamps - [Timestamp!]!
Example
{
  "asset": Asset,
  "parameters": [Parameter],
  "values": [123.45],
  "timestamps": [1592577642]
}

PushPlatformTypeEnum

Values
Enum Value Description

ANDROID

IOS

WEB

Example
"ANDROID"

RegistrationRequest

Description

Registration requests provide a way for the users of ToolSense platform's first-party customers to request their registration. Through the clients, the users are able to provide necessary information for the creation of their own (sub)group, and the first user in this group. The request is processed by a customer administrator who actually creates these items.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
forGroupId - HashedId!
firstname - String
lastname - String
email - String!
phone - String
companyAddress - String!
customerNumber - String
dealerName - String
groupName - String!
acceptedTermsVersionId - HashedId
salesRepresentative - String
vatNumber - String
languageId - HashedId!
isProcessed - Boolean!
isActive - Boolean!
resultingUserId - HashedId
isDenied - Boolean!
denialMessage - String
processedByUserId - HashedId
resultingGroupId - HashedId
assetsCount - Int!
forGroup - Group!
resultingUser - User
processedByUser - User
resultingGroup - Group
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "forGroupId": HashedId,
  "firstname": "abc123",
  "lastname": "abc123",
  "email": "abc123",
  "phone": "xyz789",
  "companyAddress": "xyz789",
  "customerNumber": "abc123",
  "dealerName": "xyz789",
  "groupName": "xyz789",
  "acceptedTermsVersionId": HashedId,
  "salesRepresentative": "abc123",
  "vatNumber": "abc123",
  "languageId": HashedId,
  "isProcessed": true,
  "isActive": true,
  "resultingUserId": HashedId,
  "isDenied": true,
  "denialMessage": "abc123",
  "processedByUserId": HashedId,
  "resultingGroupId": HashedId,
  "assetsCount": 123,
  "forGroup": Group,
  "resultingUser": User,
  "processedByUser": User,
  "resultingGroup": Group
}

RelatedGroup

Fields
Field Name Description
id - HashedId!
name - String!
depth - Int!
Example
{
  "id": HashedId,
  "name": "xyz789",
  "depth": 123
}

RequestForAsset

Fields
Input Field Description
serial - String!
permalink - String!
document - Upload!
Example
{
  "serial": "xyz789",
  "permalink": "xyz789",
  "document": Upload
}

RequestGroupInput

Fields
Input Field Description
id - HashedId
name - String
isCustomer - Boolean
parentGroupId - HashedId
customerNumber - String
vatNumber - String
Example
{
  "id": HashedId,
  "name": "xyz789",
  "isCustomer": false,
  "parentGroupId": HashedId,
  "customerNumber": "xyz789",
  "vatNumber": "abc123"
}

RescheduledEventDataDto

Fields
Field Name Description
noteId - Int
byUserId - Int
newDate - Timestamp!
oldDate - Timestamp!
created - Timestamp!
Example
{
  "noteId": 987,
  "byUserId": 123,
  "newDate": 1592577642,
  "oldDate": 1592577642,
  "created": 1592577642
}

Reservation

Description

Assets can be reserved for certain time periods. During their durations, reservations are exclusive and can not overlap for the same asset.

Fields
Field Name Description
id - HashedId!
from - Timestamp! Starting time of reservation
until - Timestamp! Ending time of reservation
reserverName - String! Name of the reserver
assets - [Asset!]! Assets assigned to this reservation
assetIds - [HashedId]!
workingHoursSettings - JSON Working hours settings, if set. See Rules schema for syntax.
workingHoursNotification - [RuleNotificationRelation] When a working hours event happens, send notifications to these entities
notes - Translation Arbitrary notes for storing info about the reservation
notesId - HashedId
createdByUser - User!
createdByUserId - HashedId!
createdByGroup - Group!
createdByGroupId - HashedId!
created - Timestamp!
updated - Timestamp
Example
{
  "id": HashedId,
  "from": 1592577642,
  "until": 1592577642,
  "reserverName": "abc123",
  "assets": [Asset],
  "assetIds": [HashedId],
  "workingHoursSettings": {},
  "workingHoursNotification": [RuleNotificationRelation],
  "notes": Translation,
  "notesId": HashedId,
  "createdByUser": User,
  "createdByUserId": HashedId,
  "createdByGroup": Group,
  "createdByGroupId": HashedId,
  "created": 1592577642,
  "updated": 1592577642
}

ReservationEnd

Fields
Field Name Description
size - Int! The number of the reservations
reservations - [Reservation]!
assets - [Asset]! The list of the assets. Note it may have a different length from size because one asset can have more than 1 reservation Use filtered.assets.
percentage - Int! The percentage of the assets (0 - 100) that have reservations in the range
filtered - AssetFilter
Example
{
  "size": 123,
  "reservations": [Reservation],
  "assets": [Asset],
  "percentage": 987,
  "filtered": AssetFilter
}

RestrictedServicePackage

Description

Place holder for a service package that the user is not allowed to see, but still needs to be acknowledged by front end

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
restrictionReason - ServicePackageRestrictionReason!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "restrictionReason": "NOT_IN_CUSTOMER_TREE"
}

Role

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
groupId - HashedId
key - RoleKey!
nameId - HashedId
name - Translation
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "groupId": HashedId,
  "key": "SuperUser",
  "nameId": HashedId,
  "name": Translation
}

RoleKey

Values
Enum Value Description

SuperUser

EditorUser

User

ToolSenseUser

Example
"SuperUser"

RoomStatusEnum

Values
Enum Value Description

Inspected

Clean

Pickup

Dirty

OutOfOrder

OutOfService

Example
"Inspected"

RoutePoint

Description

Waypoints are location snapshots taken at certain intervals that also provide event and other information

Fields
Field Name Description
id - Int! Flespi location id
lat - Float Resolved location latitude
lng - Float Resolved location longitude
distance - Float! Event or point distance in km
speed - Float Vehicle speed at this waypoint
time - Float! Time
Example
{
  "id": 123,
  "lat": 987.65,
  "lng": 123.45,
  "distance": 123.45,
  "speed": 987.65,
  "time": 987.65
}

Rule

Description

A Rule contains a set of conditions that is evaluated either at the receiving of a new data package from the module installed in an Asset, or on specified time intervals.

When all conditions are met, an Event is created, and the actions defined in the rule (like sending of notifications, emails...) occur.

Conditions are represented by blocks (RuleBlock) - one or more can be chained together with operational logic to form the definition property of a Rule.

The logic tree can contain blocks or operations (containing further blocks). Operations currently supported: and, or, not.

Rules are differentiated between from which source their evaluation stems from them within the platform. See RuleSources enum.

Rules are assigned to AssetTypes - through them, to a single AssetIntegration. This defines which RuleBlocks are available when building the Definition.

Fields
Field Name Description
definition - JSON!

The definition is a logic tree containing operations and RuleBlock instances. It's evaluated according to the tree and the end result is a boolean value, which, if true, will trigger this rule and create events and notifications. It is a JSON object, containing either operator with nested blocks (op: 'and', 'or', 'not'), or a standalone block (op: 'block'). See RuleBlock type for more info. Note that the available valid ruleBlocks are dependent on the source of the rule.

{ op: 'or', items: [ {op: 'block', settings: },{ op: 'block', settings: }, {op: 'or',blocks: [ {op: 'block', settings: },{op: 'block', settings: }]} ] }

module - [Module!] Module for which this rule is checked for
moduleId - [HashedId!]
assetBlacklist - [Asset!] List of assets for which this Rule will not trigger.
assetBlacklistIds - [HashedId!]
sendNotificationsTo - [RuleNotificationRelation] Add entities who will be notified when this rule is triggered. See type for possibilities.
duration - JSON

A collection of from-to timestamps, that, if set, defines timespans during which time this rule is considered active. Any data sent outside the set timeframes will be ignored by the rule. If isActive is false, this setting is ignored. Each duration timespan has to be at least 1 minute long. Durations can overlap.

[{from:1576675434, to: 1576676662 }]

relations - [RuleRelation!] rule relations - for instance associated asset, assettypes
eventsConfigs - [EventConfig]
id - HashedId!
created - Timestamp!
updated - Timestamp
title - Translation
description - Translation
createdByUser - User
createdByGroup - Group
assignedToGroup - Group
eventStyle - EventStyle! Visual style for the event created by this rule. Defines custom ui display like color, icon url.
titleId - HashedId
descriptionId - HashedId
createdByGroupId - HashedId
createdByUserId - HashedId
assignedToGroupId - HashedId!
eventStyleId - HashedId!
isCritical - Boolean! Denotes severity. This rule will create 'critical' notifications that are styled differently.
isOnetime - Boolean! One time rules trigger only once per asset. Once a rule is triggered, the asset emitting it is set on a blacklist for this rule.
isImmediateNotification - Boolean!
isGlobalRule - Boolean! Apply rule for custom assets
manualDeactivation - Boolean! Events created by manualDeactivation rules can only be deactivated (=not ongoing) "manually" through explicit request. They can not be deactivated by incoming module data.
isArchived - Boolean! Archived rules are 'deleted', they can't be edited anymore. Either they were directly deleted, or their definition changed. Whenever a definition changes, a new rule is created and the old is archived. By default archived rules are not retrieved, use the isArchived parameter to also access those.
isOneshot - Boolean! One-shot rules are only triggered once. After this, they are deactivated (isActive is false)
isActive - Boolean! Rules can be temporarily disabled. Disabled rules are not evaluated.
source - RuleSource! Source of evaluation. This defines WHEN the rule is evaluated internally, and what RuleBlocks can be used.
enabled - Boolean! This property shows if the Rule details are updateable to the requesting user. Take note on the group hierarchy of the currently assigned group for this Rule in regards to this.
purpose - RulePurpose System-set flag, denoting automatically created rules through associated functions, like asset working hours
publicId - String!
services - [Service!]!
servicesV2 - [Service!]!
Arguments
search - String!
limit - Int!
language - LanguageLocaleEnum!
Example
{
  "definition": {},
  "module": [Module],
  "moduleId": [HashedId],
  "assetBlacklist": [Asset],
  "assetBlacklistIds": [HashedId],
  "sendNotificationsTo": [RuleNotificationRelation],
  "duration": {},
  "relations": [RuleRelation],
  "eventsConfigs": [EventConfig],
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "title": Translation,
  "description": Translation,
  "createdByUser": User,
  "createdByGroup": Group,
  "assignedToGroup": Group,
  "eventStyle": EventStyle,
  "titleId": HashedId,
  "descriptionId": HashedId,
  "createdByGroupId": HashedId,
  "createdByUserId": HashedId,
  "assignedToGroupId": HashedId,
  "eventStyleId": HashedId,
  "isCritical": false,
  "isOnetime": true,
  "isImmediateNotification": false,
  "isGlobalRule": true,
  "manualDeactivation": false,
  "isArchived": true,
  "isOneshot": false,
  "isActive": false,
  "source": "DATA",
  "enabled": false,
  "purpose": "GEOFENCE",
  "publicId": "abc123",
  "services": [Service],
  "servicesV2": [Service]
}

RuleBlock

Description

A RuleBlock defines a single condition (within a logical tree) to evaluate when the asset sends data.

The types of rule block is queryable per asset integration. Values and settings within a block are always customizeable.

Note that except for values of type, and within the settings, parameterId, valuePreset, title, all values will be null and are listed here for reference only.

The client is expected to fill these values and save it as a part of a Rule definition. Evaluation of the different blocks and how these properties are used depend on the Rules Engine, documented in the RuleBlockType.

All the above settings can be inserted in logical trees like this. An item can either be a 'block', or another logical element with items. Supported logical op-s are: and, or, not

{ op: 'or', items: [ { op: 'block', type: 'parameter_math', settings: }, { op: 'block', type: 'parameter_math', locked: true, settings: } ] }

Fields
Field Name Description
id - HashedId!
title - Translation
titleId - HashedId
type - RuleBlockType! The type defines the format of the block settings. See the types to get a description
parameterIdPreset - HashedId The parameterId to be used for this ruleBlock, either in compareSource or compareTo part
op - String! Will always yield 'block', only here for syntax correctness
settings - JSON! Depends on the type. Yields example settings for given type.
Example
{
  "id": HashedId,
  "title": Translation,
  "titleId": HashedId,
  "type": "parameter_math",
  "parameterIdPreset": HashedId,
  "op": "xyz789",
  "settings": {}
}

RuleBlockType

Description

A fixed list defining the types of Blocks possible within a Rule. Each trigger different equation functions as described below.

Values
Enum Value Description

parameter_math

For all parameter* types:

{compareSource: { target: self parameterId: ''}, compareTo: {target: '4d,5s', parameterId:'', value: 45}, comparison: '=',matchCount: 3,matchCountComparison: '='}

compareSource describes the data object being evaluated. compareTo describes the data object or value that the source is being compared to. Value of target property can be:

  • 'self' to use only the parameters of the single latest incoming data pack (optional - this is the default),

  • timespan, like '4d,5h' a timespan to define a range of time to inspect. The format of this is one or two time string divided by acomma, like '4d' or '5d,5h'. Supported postfixes: d,h,m,s - day, hour, minutes, seconds, Divided by a | character, two timestamps can also be added. In this case, the time amount of the second part is is counted back from the time of the first element. All data packs within this timeframe will be inspected, block will be true if there is a positive equation for any. Note that either compareSource/compareTo has to be 'self'/non-timeframe, two date ranges can't be compared.

  • parameterId: An id for a parameter name to be used on either side of the equation (compareSource, compareTo). Can only be set in compareSource. It refers to a parameter, for which a name property is searched as a field in the last received data pack. If the value is prefilled by this query, it has to be used - this is the case eg. for differing error params per AssetIntegration.

  • Otherwise get the possible list of parameter names by querying the Parameter endpoint with the assetIntegrationId defined by one of the assetTypeIds assigned to the Rule (they have to be of the same). To display for the user, use the title property of the parameter. To save it in a block, use the id property of the parameter.

  • matchCount - Can be used if source or value is timespan-referenced (multiple packs inspected). By default a single match will trigger true, you can change this here for a higher number (> 1). With this, you can set rules like "parameter 'unc' = 50 on 3 occassions in the last 30 days.

  • value - User input - a raw value used for comparison in compareTo. ParameterId, if set, is ignored in this case.


Math equation. Supported comparisons: = > < <= >= != An optional 'difference' property can be used to compare difference between source and target values instead of the values themselves.

parameter_stringequality

Simple string comparison. Supported comparisons: =, !=. See parameter_math for full description.

parameter_isnull

Existence of a the source parameter in the target data pack - true if the parameter is not defined, or its a null/0 value. compareTo part is ignored/not necessary. See parameter_math for full description.

parameter_binaryvalue

Checks summarized binary error values against pow2 hex codes - an error format often used in electronics. Compares binary values on the left side and hex target numbers that have to be a power of 2 (converted to binary) on the left side. Eg. an asset data value of 111010100 will trigger a ruleBlock which defines (0x) 40 (= 64 = 1000000) as a value to check for. As this is a summarized property, the same data value will also trigger blocks defining binary equivalents of 16 (10000) and 4 100 on the same property. See parameter_math for full description. Note: this mode is just for comparing a raw value to asset data! To compare two data params, use math mode.

workinghours

Checks whether the asset reported activity on a given logged parameter within an "allowed", pre-set timeframe - based on a weekly schedule. Results in true if asset activity log shows activity that is is NOT within the given timespan boundaries. For example, an asset is only allowed to work between each monday and tuesday between 6:00 to 18:00. Any activity reported outside this timespans will result in true for this block.

{activityParameterId: 123, weekdays:{0:[[21600000, 64800000]],1:[[21600000, 64800000]],2:[],3:[],4:[],5:[],6:[]}}

geofence

If the sent data object contains a location, this rule inspects whether this location is within a static boundary. Supported comparisons: '=', '!=' { shape: { type: 'circle', radius: 1000, coordinates: [ { latitude: 50.106549, longitude: 8.634346 } ] }, comparison: '='}

contractInterval_service

Checks if the service start is older than a certain frequency time amount, on the same interval Usable date keywords: m, h, d, w, M, y - minute, hour, day, week, month, year { frequency: '2m' }

contractInterval_creation

See contractInterval_service - difference that this checks creation date

contractInterval_serviceOrCreation

See contractInterval_service - difference that this checks creation date OR service start date
Example
"parameter_math"

RuleInterval

Values
Enum Value Description

y

M

d

Example
"y"

RuleNotificationRelation

Description

Makes possible to specify entities who receive rule notifications - like emails or push messages - when the rule is triggered.

Fields
Field Name Description
relation - RuleNotificationRelationType! Defines the type of entity
relationValue - String Optionally required per type - specifies entity property
relationId - HashedId Optionally required per type - specifies entity id
Example
{
  "relation": "EXTERNALEMAIL",
  "relationValue": "xyz789",
  "relationId": HashedId
}

RuleNotificationRelationInput

Fields
Input Field Description
relation - RuleNotificationRelationType! Defines the type of entity
relationValue - String Optionally required per type - specifies entity property
relationId - HashedId Optionally required per type - specifies entity id
Example
{
  "relation": "EXTERNALEMAIL",
  "relationValue": "abc123",
  "relationId": HashedId
}

RuleNotificationRelationType

Values
Enum Value Description

EXTERNALEMAIL

Arbitrary email address, email provided in relationValue is required

SITEMANAGER

Specified site manager, if the asset is assigned to a site and the site has a site manager specified. No value or id required.

USERID

A user in the TS platform. Id provided in relationId is required
Example
"EXTERNALEMAIL"

RulePurpose

Values
Enum Value Description

GEOFENCE

WORKINGHOURS

Example
"GEOFENCE"

RuleRelation

Fields
Field Name Description
relation - RuleRelationType!
allAssets - Boolean Denotes if rule is associated with all assets assigned to its group, regardless of other asset related relations
asset - Asset Associated asset if current relation is ASSETID
assetType - AssetType Associated assetType if current relation is ASSETTYPEID
reservationWorkinghours - Reservation Associated reservation if current relation is RESERVATIONWORKINGHOURS
siteGeofence - Site Associated site if current relation is SITEGEOFENCE
assetWorkinghours - Asset Associated asset for ASSETWORKINGHOURS relation
Example
{
  "relation": "ASSETID",
  "allAssets": false,
  "asset": Asset,
  "assetType": AssetType,
  "reservationWorkinghours": Reservation,
  "siteGeofence": Site,
  "assetWorkinghours": Asset
}

RuleRelationInput

Fields
Input Field Description
assetTypeIds - [HashedId!]
assetIds - [HashedId!]
allAssets - Boolean
Example
{
  "assetTypeIds": [HashedId],
  "assetIds": [HashedId],
  "allAssets": false
}

RuleRelationType

Values
Enum Value Description

ASSETID

ASSETTYPEID

ALLASSETS

RESERVATIONWORKINGHOURS

ASSETWORKINGHOURS

SITEGEOFENCE

Example
"ASSETID"

RuleServicesFilterArgs

Fields
Input Field Description
isServiceCheck - Boolean if true, only services that are service checks are returned
includeBle - Boolean
includeGeneralService - Boolean
includeRegularService - Boolean
type - ServiceType
itemType - ServiceItemType
search - String
Example
{
  "isServiceCheck": true,
  "includeBle": true,
  "includeGeneralService": true,
  "includeRegularService": true,
  "type": "JOT_FORM",
  "itemType": "general",
  "search": "abc123"
}

RuleSource

Values
Enum Value Description

DATA

will get evaluated whenever an associated asset submits module data - can be used for rules inspecting
the submitted data

CHECK

Check like INTERVAL but with asset relation

INTERVAL

Will get evaluated on a scheduled, fixed internal time interval - can be used for rules that are evaluating
asset properties based on a certain time or in time periods
Example
"DATA"

Service

Description

A Service is essentially a form, used to submit data or make requests to the group. It is a standard multipart form which can contain various input fields like text input, multi-choice selection, geolocation or file upload. It's the functional successor of Flows.

Services are associated with the servicePackage of the group of the requesting user. The service is presented based on ServiceContentType, this defines how it should be rendered to the user.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
titleId - HashedId!
procedureTemplateId - HashedId
publicProcedureTemplateId - Int
keys - [String!] Keys are special keywords that can point to how the service is used on the platform. Eg. if a service is used as a QR code landing page, or is highlighted in the mobile app menu. use preset instead
contentType - ServiceContentType Defines how to render the service, when requested. See ServiceContentType.
assigneeAutomation - AssigneeAutomation!
preset - ServicePreset!
type - ServiceType!
iconUrl - String
formId - String This is displayed for CRUD reference only. Do not utilize this id in any other way.
jotformId - String
jotformSource - String
isServiceCheck - Boolean!
assigneeAutomationId - Int use assigneeAutomation field instead
createdByGroupId - HashedId!
belongsToGroupTypeId - HashedId
suggestedServicePartner - String
servicePartner - AvailableHandler
title - Translation
servicePackage - ServicePackage!
servicePackages - [ServicePackage!]!
procedureTemplate - ProcedureTemplate
createdByGroup - Group!
rules - [Rule!]!
canBeDeleted - Boolean!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "procedureTemplateId": HashedId,
  "publicProcedureTemplateId": 987,
  "keys": ["xyz789"],
  "contentType": "formHtml",
  "assigneeAutomation": "SUGGESTED_PARTNER",
  "preset": "BLE",
  "type": "JOT_FORM",
  "iconUrl": "xyz789",
  "formId": "xyz789",
  "jotformId": "abc123",
  "jotformSource": "xyz789",
  "isServiceCheck": false,
  "assigneeAutomationId": 123,
  "createdByGroupId": HashedId,
  "belongsToGroupTypeId": HashedId,
  "suggestedServicePartner": "xyz789",
  "servicePartner": AvailableHandler,
  "title": Translation,
  "servicePackage": ServicePackage,
  "servicePackages": [ServicePackage],
  "procedureTemplate": ProcedureTemplate,
  "createdByGroup": Group,
  "rules": [Rule],
  "canBeDeleted": false
}

ServiceContent

Fields
Field Name Description
contentType - String!
content - String
Example
{
  "contentType": "abc123",
  "content": "xyz789"
}

ServiceContentType

Values
Enum Value Description

formHtml

HTML source code for a service. Client needs to render this and present this to the user, who to then completes the request using the form UI provided by it.
Example
"formHtml"

ServiceCreateInput

Fields
Input Field Description
assigneeAutomation - AssigneeAutomation!
preset - ServicePreset!
type - ServiceType!
jotformId - String
suggestedServicePartner - String
procedureTemplateId - HashedId
iconUrl - String
jotformSource - String
isServiceCheck - Boolean
title - TranslationInput!
Example
{
  "assigneeAutomation": "SUGGESTED_PARTNER",
  "preset": "BLE",
  "type": "JOT_FORM",
  "jotformId": "abc123",
  "suggestedServicePartner": "xyz789",
  "procedureTemplateId": HashedId,
  "iconUrl": "abc123",
  "jotformSource": "xyz789",
  "isServiceCheck": true,
  "title": TranslationInput
}

ServiceItemType

Values
Enum Value Description

general

asset

site

Example
"general"

ServicePackage

Description

ServicePackage defines overall properties for a Group - it eases setting up a new group. A Group can have a single ServicePackage defined.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
titleId - HashedId!
createdByUserId - HashedId!
createdByGroupId - HashedId!
assignedSitesCount - Int! Total number of sites this service package is assigned to
assignedGroupsCount - Int! Total number of groups this service package is assigned to
restrictionReason - ServicePackageRestrictionReason
services - [Service!]! A list of services this servicePackage is attached to. See Services for more.
Arguments
search - String!
limit - Int!
language - LanguageLocaleEnum!
createdByGroup - Group!
title - Translation
createdByUser - User
canBeDeleted - Boolean! Checks if the service package can be deleted
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "createdByUserId": HashedId,
  "createdByGroupId": HashedId,
  "assignedSitesCount": 987,
  "assignedGroupsCount": 123,
  "restrictionReason": "NOT_IN_CUSTOMER_TREE",
  "services": [Service],
  "createdByGroup": Group,
  "title": Translation,
  "createdByUser": User,
  "canBeDeleted": true
}

ServicePackageCreateInput

Fields
Input Field Description
title - TranslationInput!
Example
{"title": TranslationInput}

ServicePackageRestrictionReason

Values
Enum Value Description

NOT_IN_CUSTOMER_TREE

NOT_IN_MANUFACTURER_TREE

Example
"NOT_IN_CUSTOMER_TREE"

ServicePackageServicesFilterInput

Fields
Input Field Description
isServiceCheck - Boolean if true, only services that are service checks are returned
includeBle - Boolean
includeGeneralService - Boolean
includeRegularService - Boolean
type - ServiceType
itemType - ServiceItemType
excludeQRLandingPage - Boolean
search - String
Example
{
  "isServiceCheck": true,
  "includeBle": true,
  "includeGeneralService": true,
  "includeRegularService": false,
  "type": "JOT_FORM",
  "itemType": "general",
  "excludeQRLandingPage": true,
  "search": "xyz789"
}

ServicePackageSourceTypeEnum

Values
Enum Value Description

GROUP

ASSET_TYPE

ASSET_CATEGORY

SITE

Example
"GROUP"

ServicePackageUnion

Example
ServicePackage

ServicePackageUpdateInput

Fields
Input Field Description
title - TranslationInput
Example
{"title": TranslationInput}

ServicePackageWithSourceType

Description

A container for service package and its sourceType - entity to which it is bound

Fields
Field Name Description
sourceType - ServicePackageSourceTypeEnum!
servicePackage - ServicePackage!
Example
{"sourceType": "GROUP", "servicePackage": ServicePackage}

ServicePreset

Values
Enum Value Description

BLE

REGULAR

QR_LANDING

Example
"BLE"

ServiceType

Values
Enum Value Description

JOT_FORM

PROCEDURE

Example
"JOT_FORM"

ServiceUpdateDeprecatedInput

Fields
Input Field Description
assigneeAutomation - AssigneeAutomation
preset - ServicePreset
type - ServiceType
jotformId - String
suggestedServicePartner - String
procedureTemplateId - HashedId
iconUrl - String
jotformSource - String
isServiceCheck - Boolean
title - TranslationInput
id - HashedId!
Example
{
  "assigneeAutomation": "SUGGESTED_PARTNER",
  "preset": "BLE",
  "type": "JOT_FORM",
  "jotformId": "abc123",
  "suggestedServicePartner": "abc123",
  "procedureTemplateId": HashedId,
  "iconUrl": "xyz789",
  "jotformSource": "xyz789",
  "isServiceCheck": false,
  "title": TranslationInput,
  "id": HashedId
}

ServicesFilterInput

Fields
Input Field Description
isServiceCheck - Boolean if true, only services that are service checks are returned
includeBle - Boolean
includeGeneralService - Boolean
includeRegularService - Boolean
type - ServiceType
itemType - ServiceItemType
excludeQRLandingPage - Boolean
search - String
Example
{
  "isServiceCheck": true,
  "includeBle": true,
  "includeGeneralService": false,
  "includeRegularService": true,
  "type": "JOT_FORM",
  "itemType": "general",
  "excludeQRLandingPage": true,
  "search": "xyz789"
}

Site

Description

Sites are objects where Assets are used/stored/assigned to. They can be either fixed - typically workplaces - warehouses, buildings, construction sites - or not fixed, meaning not tied to a specific location - crews, teams or a moving site like a bus or a ship.

Fields
Field Name Description
id - HashedId!
externalId - String An id that is referring to some external source. Like an ERP System or another external Task/Order management system This is not a unique identifier in our system. This is technically not feasible!
name - String!

The name of the a site. This is usualy not a clear identifier. Examples of site names would be:

  • Billa
  • WeXelerate
  • Uniqa Wien 1020 This is the name that our customers are using to communicate roughly about what site they mean. To really identify a site they use some kind of contract number.
isFixed - Boolean! Specifies if the site is tied to a fixed location - like a building. Not fixed locations could be a moving vehicle or a team.
locationText - String
address - String Formatted address consisting of street and street number
coordinates - Coordinates
assignedToGroup - Group Is not provided for customer groups, since this value is equal to the requesting user's group
assignedToGroupId - HashedId Use assignedToGroup property
createdByGroup - Group!
createdByGroupId - HashedId!
accountNumber - String Account number - arbitrary, for the Manufacturer to assign them their interal description
customerNumber - String Customer number - arbitrary, for the Customer to manage their own Customers
siteManagerName - String Name of the contact person of the site
email - String Email address of the contact person of the site
telephone - String Telephone number of the contact person of the site
postalCode - String
country - String
geofenceSettings - JSON Geofence settings, if set. See Rules schema for syntax.
geofenceNotification - [RuleNotificationRelation] When a geofence event happens, send notifications to these entities
containsAssetsToModifyByGroup - Boolean If it has associated assets which group needs to be updated to the new one The logic was refactored to CQRS, this field is not needed anymore
created - Timestamp!
assetsCount - Int!
updated - Timestamp
note - String
image - String
parentSite - Site
parentSiteId - HashedId
servicePackageId - HashedId
shouldInheritServicePackage - Boolean!
servicePackage - ServicePackage
shouldInheritGeofenceSettings - Boolean!
shouldInheritManagerDetails - Boolean!
groupTreeRootId - HashedId!
lat - String
lng - String
siteTypeId - HashedId
qrAttached - Boolean!
uuid - String!
events - [Event!]!
publicId - Int!
siteType - SiteType
siteManagers - [SiteManager!]!
Arguments
isPrimary - Boolean
Example
{
  "id": HashedId,
  "externalId": "xyz789",
  "name": "abc123",
  "isFixed": false,
  "locationText": "xyz789",
  "address": "abc123",
  "coordinates": Coordinates,
  "assignedToGroup": Group,
  "assignedToGroupId": HashedId,
  "createdByGroup": Group,
  "createdByGroupId": HashedId,
  "accountNumber": "xyz789",
  "customerNumber": "xyz789",
  "siteManagerName": "abc123",
  "email": "xyz789",
  "telephone": "abc123",
  "postalCode": "xyz789",
  "country": "xyz789",
  "geofenceSettings": {},
  "geofenceNotification": [RuleNotificationRelation],
  "containsAssetsToModifyByGroup": true,
  "created": 1592577642,
  "assetsCount": 987,
  "updated": 1592577642,
  "note": "xyz789",
  "image": "abc123",
  "parentSite": Site,
  "parentSiteId": HashedId,
  "servicePackageId": HashedId,
  "shouldInheritServicePackage": false,
  "servicePackage": ServicePackage,
  "shouldInheritGeofenceSettings": false,
  "shouldInheritManagerDetails": true,
  "groupTreeRootId": HashedId,
  "lat": "xyz789",
  "lng": "xyz789",
  "siteTypeId": HashedId,
  "qrAttached": true,
  "uuid": "abc123",
  "events": [Event],
  "publicId": 987,
  "siteType": SiteType,
  "siteManagers": [SiteManager]
}

SiteAttachQrCodeInput

Fields
Input Field Description
scannedUuid - String!
Example
{"scannedUuid": "abc123"}

SiteCreateInput

Fields
Input Field Description
externalId - String An id that is referring to some external source. Like an ERP System or another external Task/Order management system This is not a unique identifier in our system. This is technically not feasible!
name - String!

The name of the a site. This is usualy not a clear identifier. Examples of site names would be:

  • Billa
  • WeXelerate
  • Uniqa Wien 1020 This is the name that our customers are using to communicate roughly about what site they mean. To really identify a site they use some kind of contract number.
note - String
isFixed - Boolean!
locationText - String
accountNumber - String Account number - arbitrary, for the Manufacturer to assign them their interal description
address - String Formatted address consisting of street and street number
country - String
parentSiteId - HashedId
servicePackageId - HashedId
shouldInheritServicePackage - Boolean!
shouldInheritGeofenceSettings - Boolean!
shouldInheritManagerDetails - Boolean!
customerNumber - String Customer number - arbitrary, for the Customer to manage their own Customers
postalCode - String
lat - Float
lng - Float
siteManagerName - String
email - String
telephone - String
Example
{
  "externalId": "abc123",
  "name": "xyz789",
  "note": "abc123",
  "isFixed": false,
  "locationText": "xyz789",
  "accountNumber": "xyz789",
  "address": "xyz789",
  "country": "xyz789",
  "parentSiteId": HashedId,
  "servicePackageId": HashedId,
  "shouldInheritServicePackage": false,
  "shouldInheritGeofenceSettings": false,
  "shouldInheritManagerDetails": true,
  "customerNumber": "abc123",
  "postalCode": "abc123",
  "lat": 123.45,
  "lng": 987.65,
  "siteManagerName": "xyz789",
  "email": "xyz789",
  "telephone": "xyz789"
}

SiteCreateOptionsInput

Fields
Input Field Description
assignedToGroupId - HashedId
geofenceSettings - JSON Geofence settings, if set. See Rules schema for syntax.
disableWebhooks - Boolean
geofenceNotification - [RuleNotificationRelationInput!]
siteType - SiteTypeInput
siteManagers - [SiteManagerCreateInput!]
Example
{
  "assignedToGroupId": HashedId,
  "geofenceSettings": {},
  "disableWebhooks": true,
  "geofenceNotification": [RuleNotificationRelationInput],
  "siteType": SiteTypeInput,
  "siteManagers": [SiteManagerCreateInput]
}

SiteManager

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
userId - HashedId
siteId - HashedId!
fullname - String
email - String
phone - String
isPrimary - Boolean!
user - User
site - Site!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "userId": HashedId,
  "siteId": HashedId,
  "fullname": "abc123",
  "email": "abc123",
  "phone": "xyz789",
  "isPrimary": true,
  "user": User,
  "site": Site
}

SiteManagerCreateInput

Fields
Input Field Description
userId - HashedId
fullname - String
email - String
phone - String
isPrimary - Boolean!
Example
{
  "userId": HashedId,
  "fullname": "abc123",
  "email": "xyz789",
  "phone": "abc123",
  "isPrimary": false
}

SiteManagerTodos

Fields
Field Name Description
checkRequired - [Asset!]
checkRequiredCount - Int!
checkRequiredFilterLink - String!
checkThisMonth - [Asset!]
checkThisMonthCount - Int!
checkThisMonthFilterLink - String!
checkThisWeek - [Asset!]
checkThisWeekCount - Int!
checkThisWeekFilterLink - String!
checkUpcoming - [Asset!]
checkUpcomingCount - Int!
checkUpcomingFilterLink - String!
damaged - [Asset!]
damagedCount - Int!
damagedFilterLink - String!
inRepair - [Asset!]
inRepairCount - Int!
inRepairFilterLink - String!
leasingEndExceeded - [Asset!]
leasingEndExceededCount - Int!
leasingEndExceededFilterLink - String!
leasingEndThisMonth - [Asset!]
leasingEndThisMonthCount - Int!
leasingEndThisMonthFilterLink - String!
leasingEndThisWeek - [Asset!]
leasingEndThisWeekCount - Int!
leasingEndThisWeekFilterLink - String!
leasingEndUpcoming - [Asset!]
leasingEndUpcomingCount - Int!
leasingEndUpcomingFilterLink - String!
maintenanceRequired - [Asset!]
maintenanceRequiredCount - Int!
maintenanceRequiredFilterLink - String!
maintenanceThisMonth - [Asset!]
maintenanceThisMonthCount - Int!
maintenanceThisMonthFilterLink - String!
maintenanceThisWeek - [Asset!]
maintenanceThisWeekCount - Int!
maintenanceThisWeekFilterLink - String!
maintenanceUpcoming - [Asset!]
maintenanceUpcomingCount - Int!
maintenanceUpcomingFilterLink - String!
noAction - [Asset!]
noActionCount - Int!
noActionFilterLink - String!
noCheckPlanned - [Asset!]
noCheckPlannedCount - Int!
noCheckPlannedFilterLink - String!
noLeasingEnd - [Asset!]
noLeasingEndCount - Int!
noLeasingEndFilterLink - String!
noMaintenancePlanned - [Asset!]
noMaintenancePlannedCount - Int!
noMaintenancePlannedFilterLink - String!
noRentalEnd - [Asset!]
noRentalEndCount - Int!
noRentalEndFilterLink - String!
noServiceContractEnd - [Asset!]
noServiceContractEndCount - Int!
noServiceContractEndFilterLink - String!
noWarrantyEnd - [Asset!]
noWarrantyEndCount - Int!
noWarrantyEndFilterLink - String!
ordered - [Asset!]
orderedCount - Int!
orderedFilterLink - String!
readyToUse - [Asset!]
readyToUseCount - Int!
readyToUseFilterLink - String!
rentalEndExceeded - [Asset!]
rentalEndExceededCount - Int!
rentalEndExceededFilterLink - String!
rentalEndThisMonth - [Asset!]
rentalEndThisMonthCount - Int!
rentalEndThisMonthFilterLink - String!
rentalEndThisWeek - [Asset!]
rentalEndThisWeekCount - Int!
rentalEndThisWeekFilterLink - String!
rentalEndUpcoming - [Asset!]
rentalEndUpcomingCount - Int!
rentalEndUpcomingFilterLink - String!
retired - [Asset!]
retiredCount - Int!
retiredFilterLink - String!
serviceContractEndExceeded - [Asset!]
serviceContractEndExceededCount - Int!
serviceContractEndExceededFilterLink - String!
serviceContractEndThisMonth - [Asset!]
serviceContractEndThisMonthCount - Int!
serviceContractEndThisMonthFilterLink - String!
serviceContractEndThisWeek - [Asset!]
serviceContractEndThisWeekCount - Int!
serviceContractEndThisWeekFilterLink - String!
serviceContractEndUpcoming - [Asset!]
serviceContractEndUpcomingCount - Int!
serviceContractEndUpcomingFilterLink - String!
siteManagerEmail - String!
warehouse - [Asset!]
warehouseCount - Int!
warehouseFilterLink - String!
warrantyEndExceeded - [Asset!]
warrantyEndExceededCount - Int!
warrantyEndExceededFilterLink - String!
warrantyEndThisMonth - [Asset!]
warrantyEndThisMonthCount - Int!
warrantyEndThisMonthFilterLink - String!
warrantyEndThisWeek - [Asset!]
warrantyEndThisWeekCount - Int!
warrantyEndThisWeekFilterLink - String!
warrantyEndUpcoming - [Asset!]
warrantyEndUpcomingCount - Int!
warrantyEndUpcomingFilterLink - String!
Example
{
  "checkRequired": [Asset],
  "checkRequiredCount": 987,
  "checkRequiredFilterLink": "xyz789",
  "checkThisMonth": [Asset],
  "checkThisMonthCount": 123,
  "checkThisMonthFilterLink": "xyz789",
  "checkThisWeek": [Asset],
  "checkThisWeekCount": 987,
  "checkThisWeekFilterLink": "abc123",
  "checkUpcoming": [Asset],
  "checkUpcomingCount": 123,
  "checkUpcomingFilterLink": "abc123",
  "damaged": [Asset],
  "damagedCount": 123,
  "damagedFilterLink": "xyz789",
  "inRepair": [Asset],
  "inRepairCount": 123,
  "inRepairFilterLink": "abc123",
  "leasingEndExceeded": [Asset],
  "leasingEndExceededCount": 123,
  "leasingEndExceededFilterLink": "abc123",
  "leasingEndThisMonth": [Asset],
  "leasingEndThisMonthCount": 123,
  "leasingEndThisMonthFilterLink": "xyz789",
  "leasingEndThisWeek": [Asset],
  "leasingEndThisWeekCount": 987,
  "leasingEndThisWeekFilterLink": "abc123",
  "leasingEndUpcoming": [Asset],
  "leasingEndUpcomingCount": 123,
  "leasingEndUpcomingFilterLink": "abc123",
  "maintenanceRequired": [Asset],
  "maintenanceRequiredCount": 987,
  "maintenanceRequiredFilterLink": "abc123",
  "maintenanceThisMonth": [Asset],
  "maintenanceThisMonthCount": 123,
  "maintenanceThisMonthFilterLink": "abc123",
  "maintenanceThisWeek": [Asset],
  "maintenanceThisWeekCount": 987,
  "maintenanceThisWeekFilterLink": "abc123",
  "maintenanceUpcoming": [Asset],
  "maintenanceUpcomingCount": 123,
  "maintenanceUpcomingFilterLink": "xyz789",
  "noAction": [Asset],
  "noActionCount": 123,
  "noActionFilterLink": "abc123",
  "noCheckPlanned": [Asset],
  "noCheckPlannedCount": 123,
  "noCheckPlannedFilterLink": "xyz789",
  "noLeasingEnd": [Asset],
  "noLeasingEndCount": 987,
  "noLeasingEndFilterLink": "xyz789",
  "noMaintenancePlanned": [Asset],
  "noMaintenancePlannedCount": 987,
  "noMaintenancePlannedFilterLink": "abc123",
  "noRentalEnd": [Asset],
  "noRentalEndCount": 123,
  "noRentalEndFilterLink": "xyz789",
  "noServiceContractEnd": [Asset],
  "noServiceContractEndCount": 123,
  "noServiceContractEndFilterLink": "xyz789",
  "noWarrantyEnd": [Asset],
  "noWarrantyEndCount": 123,
  "noWarrantyEndFilterLink": "abc123",
  "ordered": [Asset],
  "orderedCount": 987,
  "orderedFilterLink": "xyz789",
  "readyToUse": [Asset],
  "readyToUseCount": 987,
  "readyToUseFilterLink": "xyz789",
  "rentalEndExceeded": [Asset],
  "rentalEndExceededCount": 123,
  "rentalEndExceededFilterLink": "abc123",
  "rentalEndThisMonth": [Asset],
  "rentalEndThisMonthCount": 123,
  "rentalEndThisMonthFilterLink": "xyz789",
  "rentalEndThisWeek": [Asset],
  "rentalEndThisWeekCount": 123,
  "rentalEndThisWeekFilterLink": "abc123",
  "rentalEndUpcoming": [Asset],
  "rentalEndUpcomingCount": 123,
  "rentalEndUpcomingFilterLink": "abc123",
  "retired": [Asset],
  "retiredCount": 987,
  "retiredFilterLink": "abc123",
  "serviceContractEndExceeded": [Asset],
  "serviceContractEndExceededCount": 987,
  "serviceContractEndExceededFilterLink": "abc123",
  "serviceContractEndThisMonth": [Asset],
  "serviceContractEndThisMonthCount": 123,
  "serviceContractEndThisMonthFilterLink": "xyz789",
  "serviceContractEndThisWeek": [Asset],
  "serviceContractEndThisWeekCount": 123,
  "serviceContractEndThisWeekFilterLink": "abc123",
  "serviceContractEndUpcoming": [Asset],
  "serviceContractEndUpcomingCount": 987,
  "serviceContractEndUpcomingFilterLink": "xyz789",
  "siteManagerEmail": "xyz789",
  "warehouse": [Asset],
  "warehouseCount": 123,
  "warehouseFilterLink": "abc123",
  "warrantyEndExceeded": [Asset],
  "warrantyEndExceededCount": 987,
  "warrantyEndExceededFilterLink": "xyz789",
  "warrantyEndThisMonth": [Asset],
  "warrantyEndThisMonthCount": 987,
  "warrantyEndThisMonthFilterLink": "abc123",
  "warrantyEndThisWeek": [Asset],
  "warrantyEndThisWeekCount": 123,
  "warrantyEndThisWeekFilterLink": "abc123",
  "warrantyEndUpcoming": [Asset],
  "warrantyEndUpcomingCount": 987,
  "warrantyEndUpcomingFilterLink": "xyz789"
}

SiteManagerUpdateInput

Fields
Input Field Description
userId - HashedId
fullname - String
email - String
phone - String
isPrimary - Boolean!
id - HashedId
Example
{
  "userId": HashedId,
  "fullname": "abc123",
  "email": "xyz789",
  "phone": "abc123",
  "isPrimary": true,
  "id": HashedId
}

SiteSectionEnum

Values
Enum Value Description

GEOFENCE_SETTINGS

SITE_MANAGER_DETAILS

SERVICE_PACKAGE

Example
"GEOFENCE_SETTINGS"

SiteType

Fields
Field Name Description
id - HashedId!
key - String!
Example
{
  "id": HashedId,
  "key": "abc123"
}

SiteTypeInput

Fields
Input Field Description
key - String!
id - HashedId
Example
{
  "key": "abc123",
  "id": HashedId
}

SiteUpdateInput

Fields
Input Field Description
id - HashedId!
externalId - String An id that is referring to some external source. Like an ERP System or another external Task/Order management system This is not a unique identifier in our system. This is technically not feasible!
name - String!

The name of the a site. This is usualy not a clear identifier. Examples of site names would be:

  • Billa
  • WeXelerate
  • Uniqa Wien 1020 This is the name that our customers are using to communicate roughly about what site they mean. To really identify a site they use some kind of contract number.
note - String
isFixed - Boolean! Specifies if the site is tied to a fixed location - like a building. Not fixed locations could be a moving vehicle or a team.
locationText - String
accountNumber - String Account number - arbitrary, for the Manufacturer to assign them their interal description
address - String Formatted address consisting of street and street number
country - String
parentSiteId - HashedId
servicePackageId - HashedId
shouldInheritServicePackage - Boolean!
shouldInheritGeofenceSettings - Boolean!
shouldInheritManagerDetails - Boolean!
customerNumber - String Customer number - arbitrary, for the Customer to manage their own Customers
postalCode - String
lat - Float
lng - Float
siteManagerName - String
email - String
telephone - String
Example
{
  "id": HashedId,
  "externalId": "xyz789",
  "name": "abc123",
  "note": "xyz789",
  "isFixed": true,
  "locationText": "abc123",
  "accountNumber": "abc123",
  "address": "abc123",
  "country": "xyz789",
  "parentSiteId": HashedId,
  "servicePackageId": HashedId,
  "shouldInheritServicePackage": false,
  "shouldInheritGeofenceSettings": true,
  "shouldInheritManagerDetails": false,
  "customerNumber": "abc123",
  "postalCode": "xyz789",
  "lat": 987.65,
  "lng": 123.45,
  "siteManagerName": "abc123",
  "email": "xyz789",
  "telephone": "abc123"
}

SiteUpdateOptionsInput

Fields
Input Field Description
assignedToGroupId - HashedId
geofenceSettings - JSON Geofence settings, if set. See Rules schema for syntax.
containsAssetsToModifyByGroup - Boolean If it has associated assets which group needs to be updated to the new one
disableWebhooks - Boolean
geofenceNotification - [RuleNotificationRelationInput!]
siteType - SiteTypeInput
shouldSkipGeofenceUpdate - Boolean
siteManagers - [SiteManagerUpdateInput!]
Example
{
  "assignedToGroupId": HashedId,
  "geofenceSettings": {},
  "containsAssetsToModifyByGroup": false,
  "disableWebhooks": false,
  "geofenceNotification": [RuleNotificationRelationInput],
  "siteType": SiteTypeInput,
  "shouldSkipGeofenceUpdate": true,
  "siteManagers": [SiteManagerUpdateInput]
}

SitesPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [Site!]
Example
{
  "meta": PaginationMeta,
  "rows": [Site]
}

SortDirection

Values
Enum Value Description

ASC

DESC

Example
"ASC"

StatisticRangeSliceKey

Values
Enum Value Description

battery

signal

runtime

chargingCycle

Example
"battery"

StatisticRangeSliceUnit

Values
Enum Value Description

hours

minutes

seconds

milliseconds

percentage

rssi

Example
"hours"

StatisticValueSlice

Fields
Field Name Description
value - Translation This is the value of the statitistic
result - AssetFilter! The number of times that this value occurs
associatedId - HashedId If the value for this slice is associated with another type (e.g. AssetType), this will be its id
Example
{
  "value": Translation,
  "result": AssetFilter,
  "associatedId": HashedId
}

StatisticValueSliceKey

Values
Enum Value Description

type

category

version

Example
"type"

StatusItem

Fields
Field Name Description
id - HashedId!
key - String!
displayText - String!
displayValue - String
displayName - Translation
icon - String
Example
{
  "id": HashedId,
  "key": "abc123",
  "displayText": "xyz789",
  "displayValue": "abc123",
  "displayName": Translation,
  "icon": "xyz789"
}

String

Description

The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

Example
"xyz789"

StripePrice

Description

StripePrice entity it`s payed amount for subscription directly from stripe.

Fields
Field Name Description
id - String!
amount - Float
currency - String!
updated - DateTime!
Example
{
  "id": "abc123",
  "amount": 123.45,
  "currency": "abc123",
  "updated": "2007-12-03T10:15:30Z"
}

StripeSettingsCreateInput

Fields
Input Field Description
stripeCustomerId - String
stripeCustomerIds - [String!]
groupForIOTActivation - String
gracePeriodIOT - Int
stripeUserPriceId - StripeUserPriceIdCreateInput
Example
{
  "stripeCustomerId": "abc123",
  "stripeCustomerIds": ["abc123"],
  "groupForIOTActivation": "abc123",
  "gracePeriodIOT": 123,
  "stripeUserPriceId": StripeUserPriceIdCreateInput
}

StripeSubscriptionPlan

Description

StripePrice entity it`s payed amount for subscription directly from stripe.

Fields
Field Name Description
id - String! The id of the subscription.
subKey - String The id of the customer.
type - String The type of the subscription.
lastInvoiceId - String The id of the last invoice.
lastInvoiceDate - DateTime The date of the last invoice.
nextInvoiceDate - DateTime The date of the next invoice.
created - DateTime The date of the subscription start.
updated - DateTime The date of the subscription update.
Example
{
  "id": "abc123",
  "subKey": "abc123",
  "type": "abc123",
  "lastInvoiceId": "abc123",
  "lastInvoiceDate": "2007-12-03T10:15:30Z",
  "nextInvoiceDate": "2007-12-03T10:15:30Z",
  "created": "2007-12-03T10:15:30Z",
  "updated": "2007-12-03T10:15:30Z"
}

StripeUserPriceIdCreateInput

Fields
Input Field Description
ALL - String
EditorUser - String
SuperUser - String
User - String
Example
{
  "ALL": "abc123",
  "EditorUser": "xyz789",
  "SuperUser": "xyz789",
  "User": "abc123"
}

SubscriptionPlan

Description

The ToolSense platform is providing different level of service tiers (currently mostly tied to frequency and content of asset data being sent) that is dependent on the manufacturer / service providing customer / root group. The service tier can be set and changed anytime per Asset.

Fields
Field Name Description
key - String!
name - String!
Example
{
  "key": "abc123",
  "name": "abc123"
}

Team

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
nameId - HashedId!
groupId - HashedId!
createdByUserId - HashedId!
createdByGroupId - HashedId!
assignedToActiveTicketIds - [Int!]!
name - Translation!
group - Group!
createdByUser - User!
createdByGroup - Group!
members - [TeamMember!]!
servicePackages - [ServicePackageUnion!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "nameId": HashedId,
  "groupId": HashedId,
  "createdByUserId": HashedId,
  "createdByGroupId": HashedId,
  "assignedToActiveTicketIds": [987],
  "name": Translation,
  "group": Group,
  "createdByUser": User,
  "createdByGroup": Group,
  "members": [TeamMember],
  "servicePackages": [ServicePackage]
}

TeamCreateInput

Fields
Input Field Description
groupId - HashedId!
name - TranslationInput!
memberEmails - [String!]!
Example
{
  "groupId": HashedId,
  "name": TranslationInput,
  "memberEmails": ["abc123"]
}

TeamFilterInput

Fields
Input Field Description
withServicePackagesOnly - Boolean if true, only teams that have at least one service package are returned
Example
{"withServicePackagesOnly": true}

TeamMember

Fields
Field Name Description
userId - HashedId
firstname - String
lastname - String
email - String!
Example
{
  "userId": HashedId,
  "firstname": "xyz789",
  "lastname": "xyz789",
  "email": "abc123"
}

TeamPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [Team!]!
Example
{
  "meta": PaginationMeta,
  "rows": [Team]
}

TemporalFilter

Fields
Field Name Description
never - AssetFilter!
Arguments
from - Timestamp
to - Timestamp
withinPeriod - AssetFilter!
Arguments
from - Timestamp!
to - Timestamp!
Example
{
  "never": AssetFilter,
  "withinPeriod": AssetFilter
}

Terms

Description
A Terms document is a legal listing that the user has to accept.

It can currently be associated with a root group - once associated, all members of the root group or one of its subgroups must fetch and accept these terms (through the terms endpoint) before being legally able to use the platform. After creating a Terms document, only the title or the content is updateable. When changing the content, a new version of the terms is created, which all related users need to accept again. Types and types handling is fixed within the platform.

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
isActive - Boolean!
titleId - HashedId!
title - Translation!
versions - [TermsHasVersion!]!
version - Int!
contentId - HashedId!
content - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "isActive": true,
  "titleId": HashedId,
  "title": Translation,
  "versions": [TermsHasVersion],
  "version": 123,
  "contentId": HashedId,
  "content": Translation
}

TermsHasVersion

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
version - Int!
contentId - HashedId!
content - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "version": 987,
  "contentId": HashedId,
  "content": Translation
}

TermsQueryFiltersInput

Fields
Input Field Description
withInactive - Boolean
Example
{"withInactive": false}

Ticket

Description
Tickets can be seen as traditional support tickets, reacting to service requests.
They are created by Services or Flows.
Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
content - JSON The full response from the submitting user or entity, that the ticket is about, and tries to resolve. use ticketContent instead
uuid - String!
serviceResponseId - HashedId
createdByUserId - HashedId
createdByGroupId - HashedId!
procedureInstanceId - HashedId
titleId - HashedId
serviceId - HashedId
ticketId - Int! id of the ticket in the database.
assignee - ProcessHandler
responsibles - [ProcessHandler!]!
createdByUser - User
createdByGroup - Group
currentState - TicketCurrentState
ticketComments - [TicketComment!]!
associatedAssets - [Asset!]!
documents - [Document!]!
pdfCertificateLink - Document In May 2023 we switched to on-demand generated (and directly transmitted) PDF documents.
service - Service
title - Translation
lastStatusChange - Timestamp
notifications - NotificationFilter
batteryCosts - String!
certificationCosts - String!
consumablesCosts - String!
fuelCosts - String!
insuranceTaxesCosts - String!
laborCosts - String!
logisticsCosts - String!
otherCosts - String!
repairCosts - String!
sparePartsCosts - String!
ticketTimeline - TicketTimeline!
totalCosts - String!
urgency - TicketUrgencyEnum!
procedureInstance - ProcedureInstance will be removed after full ticket-content migration
associatedSites - [Site!]!
associatedAssetCategories - [AssetCategory!]!
associatedAssetTypes - [AssetType!]!
ticketContent - [TicketContentField!]!
activityEvents - [TicketActivityLogEntry!]!
automationDetails - TicketAutomationDetails!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "content": {},
  "uuid": "xyz789",
  "serviceResponseId": HashedId,
  "createdByUserId": HashedId,
  "createdByGroupId": HashedId,
  "procedureInstanceId": HashedId,
  "titleId": HashedId,
  "serviceId": HashedId,
  "ticketId": 123,
  "assignee": ProcessHandler,
  "responsibles": [ProcessHandler],
  "createdByUser": User,
  "createdByGroup": Group,
  "currentState": TicketCurrentState,
  "ticketComments": [TicketComment],
  "associatedAssets": [Asset],
  "documents": [Document],
  "pdfCertificateLink": Document,
  "service": Service,
  "title": Translation,
  "lastStatusChange": 1592577642,
  "notifications": NotificationFilter,
  "batteryCosts": "xyz789",
  "certificationCosts": "xyz789",
  "consumablesCosts": "xyz789",
  "fuelCosts": "abc123",
  "insuranceTaxesCosts": "abc123",
  "laborCosts": "xyz789",
  "logisticsCosts": "abc123",
  "otherCosts": "xyz789",
  "repairCosts": "xyz789",
  "sparePartsCosts": "xyz789",
  "ticketTimeline": TicketTimeline,
  "totalCosts": "xyz789",
  "urgency": "CRITICAL",
  "procedureInstance": ProcedureInstance,
  "associatedSites": [Site],
  "associatedAssetCategories": [AssetCategory],
  "associatedAssetTypes": [AssetType],
  "ticketContent": [TicketContentField],
  "activityEvents": [TicketHandlerUpdate],
  "automationDetails": TicketAutomationDetails
}

TicketActivityLogEntry

TicketAssetAvailabilityUpdate

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByRuleId - HashedId
createdByTicketId - HashedId
siteId - HashedId
createdByPartId - HashedId
createdByWorkOrderId - HashedId
createdBySiteId - HashedId
descriptionId - HashedId
endTime - Timestamp When the event stopped - when the rule first didn't trigger after the start, thus breaking the continous streak
eventStyleId - String!
eventMeta - JSON Expose any meta information which can be utilized by requesting client
isCritical - Boolean Denotes severity. Critical events should have a different, emphasized styling on the ui.
isOngoing - Boolean Some events behind the scenes are not "one-time" occurances - they are states that are triggered, then removed. Eg. a machine may send an error code continuously for weeks - obviously triggering only one event. An "ongoing" event means that with its last sent data pack, the asset still triggered this rule (which may be one or many times since the event's creation) - therefore it's an "active" event.
isImmediateNotification - Boolean
lastEvent - Timestamp
originatingFromAssetId - HashedId
originatingFromModuleId - HashedId
titleId - HashedId Note that this could be a dummy in case of a dynamically generated title. Please use the "title" attribute instead Use the always available "title" attribute
createdByUserId - HashedId
stoppedByUserId - HashedId
shouldNotify - Boolean!
eventStyle - EventStyle! Defines visual style for UIs for this event like color or icon
startTime - Timestamp! When this event started - when the rule first triggered in a continous streak
manualDeactivation - Boolean
ticketId - Int Use createdByTicketId
authorEmail - String
serviceName - Translation
stoppedByUser - User The value is present if the event was stopped explicitly by a user
createdByUser - User The value is present if the event was created explicitly by a user
tag - [EventEntityTagEnum!]!
originatingFromAsset - Asset
createdByPart - Part
documents - [Document!]!
title - Translation Title of the event - in case of an IoT rule, same title as the rule - in case of a Ticket event, dynamically generated
description - Translation A description of the event
site - Site
createdByRule - Rule
data - EventEntityDataDto!
createdBySite - Site
isAutomated - Boolean!
type - EventEntityDataTypeEnum!
availability - AssetAvailability!
assets - [Asset!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByRuleId": HashedId,
  "createdByTicketId": HashedId,
  "siteId": HashedId,
  "createdByPartId": HashedId,
  "createdByWorkOrderId": HashedId,
  "createdBySiteId": HashedId,
  "descriptionId": HashedId,
  "endTime": 1592577642,
  "eventStyleId": "abc123",
  "eventMeta": {},
  "isCritical": false,
  "isOngoing": false,
  "isImmediateNotification": false,
  "lastEvent": 1592577642,
  "originatingFromAssetId": HashedId,
  "originatingFromModuleId": HashedId,
  "titleId": HashedId,
  "createdByUserId": HashedId,
  "stoppedByUserId": HashedId,
  "shouldNotify": false,
  "eventStyle": EventStyle,
  "startTime": 1592577642,
  "manualDeactivation": false,
  "ticketId": 987,
  "authorEmail": "abc123",
  "serviceName": Translation,
  "stoppedByUser": User,
  "createdByUser": User,
  "tag": ["asset"],
  "originatingFromAsset": Asset,
  "createdByPart": Part,
  "documents": [Document],
  "title": Translation,
  "description": Translation,
  "site": Site,
  "createdByRule": Rule,
  "data": EventEntityDataDto,
  "createdBySite": Site,
  "isAutomated": true,
  "type": "RESPONSIBLE_UPDATE",
  "availability": "READY_TO_USE",
  "assets": [Asset]
}

TicketAssetCheckComplete

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByRuleId - HashedId
createdByTicketId - HashedId
siteId - HashedId
createdByPartId - HashedId
createdByWorkOrderId - HashedId
createdBySiteId - HashedId
descriptionId - HashedId
endTime - Timestamp When the event stopped - when the rule first didn't trigger after the start, thus breaking the continous streak
eventStyleId - String!
eventMeta - JSON Expose any meta information which can be utilized by requesting client
isCritical - Boolean Denotes severity. Critical events should have a different, emphasized styling on the ui.
isOngoing - Boolean Some events behind the scenes are not "one-time" occurances - they are states that are triggered, then removed. Eg. a machine may send an error code continuously for weeks - obviously triggering only one event. An "ongoing" event means that with its last sent data pack, the asset still triggered this rule (which may be one or many times since the event's creation) - therefore it's an "active" event.
isImmediateNotification - Boolean
lastEvent - Timestamp
originatingFromAssetId - HashedId
originatingFromModuleId - HashedId
titleId - HashedId Note that this could be a dummy in case of a dynamically generated title. Please use the "title" attribute instead Use the always available "title" attribute
createdByUserId - HashedId
stoppedByUserId - HashedId
shouldNotify - Boolean!
eventStyle - EventStyle! Defines visual style for UIs for this event like color or icon
startTime - Timestamp! When this event started - when the rule first triggered in a continous streak
manualDeactivation - Boolean
ticketId - Int Use createdByTicketId
authorEmail - String
serviceName - Translation
stoppedByUser - User The value is present if the event was stopped explicitly by a user
createdByUser - User The value is present if the event was created explicitly by a user
tag - [EventEntityTagEnum!]!
originatingFromAsset - Asset
createdByPart - Part
documents - [Document!]!
title - Translation Title of the event - in case of an IoT rule, same title as the rule - in case of a Ticket event, dynamically generated
description - Translation A description of the event
site - Site
createdByRule - Rule
data - EventEntityDataDto!
createdBySite - Site
isAutomated - Boolean!
type - EventEntityDataTypeEnum!
assets - [Asset!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByRuleId": HashedId,
  "createdByTicketId": HashedId,
  "siteId": HashedId,
  "createdByPartId": HashedId,
  "createdByWorkOrderId": HashedId,
  "createdBySiteId": HashedId,
  "descriptionId": HashedId,
  "endTime": 1592577642,
  "eventStyleId": "xyz789",
  "eventMeta": {},
  "isCritical": true,
  "isOngoing": false,
  "isImmediateNotification": true,
  "lastEvent": 1592577642,
  "originatingFromAssetId": HashedId,
  "originatingFromModuleId": HashedId,
  "titleId": HashedId,
  "createdByUserId": HashedId,
  "stoppedByUserId": HashedId,
  "shouldNotify": false,
  "eventStyle": EventStyle,
  "startTime": 1592577642,
  "manualDeactivation": true,
  "ticketId": 987,
  "authorEmail": "xyz789",
  "serviceName": Translation,
  "stoppedByUser": User,
  "createdByUser": User,
  "tag": ["asset"],
  "originatingFromAsset": Asset,
  "createdByPart": Part,
  "documents": [Document],
  "title": Translation,
  "description": Translation,
  "site": Site,
  "createdByRule": Rule,
  "data": EventEntityDataDto,
  "createdBySite": Site,
  "isAutomated": true,
  "type": "RESPONSIBLE_UPDATE",
  "assets": [Asset]
}

TicketAssetSiteUpdate

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByRuleId - HashedId
createdByTicketId - HashedId
siteId - HashedId!
createdByPartId - HashedId
createdByWorkOrderId - HashedId
createdBySiteId - HashedId
descriptionId - HashedId
endTime - Timestamp When the event stopped - when the rule first didn't trigger after the start, thus breaking the continous streak
eventStyleId - String!
eventMeta - JSON Expose any meta information which can be utilized by requesting client
isCritical - Boolean Denotes severity. Critical events should have a different, emphasized styling on the ui.
isOngoing - Boolean Some events behind the scenes are not "one-time" occurances - they are states that are triggered, then removed. Eg. a machine may send an error code continuously for weeks - obviously triggering only one event. An "ongoing" event means that with its last sent data pack, the asset still triggered this rule (which may be one or many times since the event's creation) - therefore it's an "active" event.
isImmediateNotification - Boolean
lastEvent - Timestamp
originatingFromAssetId - HashedId
originatingFromModuleId - HashedId
titleId - HashedId Note that this could be a dummy in case of a dynamically generated title. Please use the "title" attribute instead Use the always available "title" attribute
createdByUserId - HashedId
stoppedByUserId - HashedId
shouldNotify - Boolean!
eventStyle - EventStyle! Defines visual style for UIs for this event like color or icon
startTime - Timestamp! When this event started - when the rule first triggered in a continous streak
manualDeactivation - Boolean
ticketId - Int Use createdByTicketId
authorEmail - String
serviceName - Translation
stoppedByUser - User The value is present if the event was stopped explicitly by a user
createdByUser - User The value is present if the event was created explicitly by a user
tag - [EventEntityTagEnum!]!
originatingFromAsset - Asset
createdByPart - Part
documents - [Document!]!
title - Translation Title of the event - in case of an IoT rule, same title as the rule - in case of a Ticket event, dynamically generated
description - Translation A description of the event
site - Site!
createdByRule - Rule
data - EventEntityDataDto!
createdBySite - Site
isAutomated - Boolean!
type - EventEntityDataTypeEnum!
assets - [Asset!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByRuleId": HashedId,
  "createdByTicketId": HashedId,
  "siteId": HashedId,
  "createdByPartId": HashedId,
  "createdByWorkOrderId": HashedId,
  "createdBySiteId": HashedId,
  "descriptionId": HashedId,
  "endTime": 1592577642,
  "eventStyleId": "xyz789",
  "eventMeta": {},
  "isCritical": false,
  "isOngoing": false,
  "isImmediateNotification": false,
  "lastEvent": 1592577642,
  "originatingFromAssetId": HashedId,
  "originatingFromModuleId": HashedId,
  "titleId": HashedId,
  "createdByUserId": HashedId,
  "stoppedByUserId": HashedId,
  "shouldNotify": true,
  "eventStyle": EventStyle,
  "startTime": 1592577642,
  "manualDeactivation": true,
  "ticketId": 987,
  "authorEmail": "xyz789",
  "serviceName": Translation,
  "stoppedByUser": User,
  "createdByUser": User,
  "tag": ["asset"],
  "originatingFromAsset": Asset,
  "createdByPart": Part,
  "documents": [Document],
  "title": Translation,
  "description": Translation,
  "site": Site,
  "createdByRule": Rule,
  "data": EventEntityDataDto,
  "createdBySite": Site,
  "isAutomated": true,
  "type": "RESPONSIBLE_UPDATE",
  "assets": [Asset]
}

TicketAutomation

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
ticketId - HashedId!
type - TicketAutomationEnum!
ranAt - Timestamp
runOnTicketStatus - TicketStateEnum
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "ticketId": HashedId,
  "type": "ble",
  "ranAt": 1592577642,
  "runOnTicketStatus": "open"
}

TicketAutomationDetails

Fields
Field Name Description
automationGroups - [TicketAutomationGroup!]!
newSite - Site
newAvailability - AssetAvailability
Example
{
  "automationGroups": [TicketAutomationGroup],
  "newSite": Site,
  "newAvailability": "READY_TO_USE"
}

TicketAutomationEnum

Values
Enum Value Description

ble

check

assignee

move_asset

meter_reading

ticket_status

ticket_urgency

asset_availability

Example
"ble"

TicketAutomationGroup

Fields
Field Name Description
automations - [TicketAutomation!]!
assetDetails - [AssetInAutomationDetails!]!
Example
{
  "automations": [TicketAutomation],
  "assetDetails": [AssetInAutomationDetails]
}

TicketComment

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByUserId - HashedId
authorEmail - String
createdByUser - TicketUser
history - [TicketCommentContent!]!
content - TicketCommentContent
isAutomated - Boolean!
costs - [Cost!]!
stateEvent - TicketState
attachments - [Document!]!
connectedEventId - HashedId
connectedEvent - Event
internal - Boolean!
deleted - Timestamp
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByUserId": HashedId,
  "authorEmail": "abc123",
  "createdByUser": TicketUser,
  "history": [TicketCommentContent],
  "content": TicketCommentContent,
  "isAutomated": true,
  "costs": [Cost],
  "stateEvent": TicketState,
  "attachments": [Document],
  "connectedEventId": HashedId,
  "connectedEvent": Event,
  "internal": true,
  "deleted": 1592577642
}

TicketCommentContent

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
ticketCommentId - HashedId!
content - String!
deleted - Timestamp
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "ticketCommentId": HashedId,
  "content": "xyz789",
  "deleted": 1592577642
}

TicketCommentCreateInput

Fields
Input Field Description
disableWebhooks - Boolean
ticketId - HashedId!
content - String!
attachments - [Upload!]
event - CreateCommentEventInput
costs - [NewCostInput!]
internal - Boolean
Example
{
  "disableWebhooks": true,
  "ticketId": HashedId,
  "content": "abc123",
  "attachments": [Upload],
  "event": CreateCommentEventInput,
  "costs": [NewCostInput],
  "internal": true
}

TicketCommentFiltersInput

Fields
Input Field Description
includeInternal - Boolean
Example
{"includeInternal": true}

TicketCommentUpdateInput

Fields
Input Field Description
disableWebhooks - Boolean
attachments - [Upload!]
content - String
documentsIdsToDelete - [HashedId!]
event - UpdateCommentEventInput
newCosts - [NewCostInput!]
changedCosts - [ChangedCostInput!]
costsIdsToDelete - [HashedId!]
Example
{
  "disableWebhooks": false,
  "attachments": [Upload],
  "content": "xyz789",
  "documentsIdsToDelete": [HashedId],
  "event": UpdateCommentEventInput,
  "newCosts": [NewCostInput],
  "changedCosts": [ChangedCostInput],
  "costsIdsToDelete": [HashedId]
}

TicketContentField

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
ticketId - HashedId!
titleId - HashedId
descriptionId - HashedId
dateValue - DateTime
comment - String
textValue - String
includeTime - Boolean!
numberValue - Int
automations - Int!
order - Int!
parentId - HashedId
checkedValue - Boolean
yesNoValue - TicketContentFieldYesNo
choiceValue - TicketContentFieldChoice
contentType - TicketContentFieldContentType!
title - Translation
description - Translation
documents - [Document!]!
uploadedDocuments - [Document!]!
choiceOptions - [TicketContentFieldChoiceOption!]!
assets - [Asset!]!
sites - [Site!]!
suggestedAssignees - [AvailableHandler!]!
assignees - [AvailableHandler!]!
assetCategories - [AssetCategory!]!
assetTypes - [AssetType!]!
children - [TicketContentField!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "ticketId": HashedId,
  "titleId": HashedId,
  "descriptionId": HashedId,
  "dateValue": "2007-12-03T10:15:30Z",
  "comment": "abc123",
  "textValue": "abc123",
  "includeTime": false,
  "numberValue": 123,
  "automations": 123,
  "order": 123,
  "parentId": HashedId,
  "checkedValue": true,
  "yesNoValue": "na",
  "choiceValue": "na",
  "contentType": "ble",
  "title": Translation,
  "description": Translation,
  "documents": [Document],
  "uploadedDocuments": [Document],
  "choiceOptions": [TicketContentFieldChoiceOption],
  "assets": [Asset],
  "sites": [Site],
  "suggestedAssignees": [AvailableHandler],
  "assignees": [AvailableHandler],
  "assetCategories": [AssetCategory],
  "assetTypes": [AssetType],
  "children": [TicketContentField]
}

TicketContentFieldChoice

Values
Enum Value Description

na

good

notGood

needsAttention

Example
"na"

TicketContentFieldChoiceOption

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
fieldId - HashedId!
titleId - HashedId!
order - Int!
value - Boolean!
isSelectedByDefault - Boolean!
code - String
title - Translation
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "fieldId": HashedId,
  "titleId": HashedId,
  "order": 123,
  "value": false,
  "isSelectedByDefault": true,
  "code": "abc123",
  "title": Translation
}

TicketContentFieldContentType

Values
Enum Value Description

ble

text

date

site

asset

number

section

heading

scanned

dropdown

checkbox

assignee

signature

attachment

asset_type

multi_choice

single_choice

single_select

yes_no_choice

ticket_status

ticket_urgency

asset_category

check_next_date

check_last_date

asset_availability

meter_reading_unit

meter_reading_value

meter_reading_parameter

Example
"ble"

TicketContentFieldYesNo

Values
Enum Value Description

na

no

yes

Example
"na"

TicketCurrentState

Fields
Field Name Description
state - TicketState!
processedByUser - User
authorEmail - String
isAutomated - Boolean!
processedAtDate - Timestamp!
Example
{
  "state": TicketState,
  "processedByUser": User,
  "authorEmail": "abc123",
  "isAutomated": true,
  "processedAtDate": 1592577642
}

TicketDuration

Fields
Field Name Description
from - Timestamp!
to - Timestamp
Example
{"from": 1592577642, "to": 1592577642}

TicketHandler

Fields
Field Name Description
id - HashedId!
displayName - String!
relationValue - String
isDeletable - Boolean!
relationType - TicketHandlerRelationTypeEnum!
handlerType - TicketRelationHandlerTypeEnum!
Example
{
  "id": HashedId,
  "displayName": "xyz789",
  "relationValue": "abc123",
  "isDeletable": true,
  "relationType": "ASSIGNEE",
  "handlerType": "USER"
}

TicketHandlerCreateInput

Fields
Input Field Description
id - String
handlerType - TicketRelationHandlerTypeEnum!
relationType - TicketHandlerRelationTypeEnum!
relationValue - String
Example
{
  "id": "xyz789",
  "handlerType": "USER",
  "relationType": "ASSIGNEE",
  "relationValue": "abc123"
}

TicketHandlerInput

Fields
Input Field Description
id - String
handlerType - TicketRelationHandlerTypeEnum!
relationType - TicketHandlerRelationTypeEnum!
relationValue - String
Example
{
  "id": "xyz789",
  "handlerType": "USER",
  "relationType": "ASSIGNEE",
  "relationValue": "xyz789"
}

TicketHandlerRelationTypeEnum

Values
Enum Value Description

ASSIGNEE

FOLLOWER

Example
"ASSIGNEE"

TicketHandlerUpdate

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
action - HandlerUpdateActionEnum
author - String
isAutomated - Boolean! Not a result of direct user action but of inner workings. No author in this case.
role - HandlerRelationTypeEnum
target - TicketHandlerUpdateTargetEnum!
targetHandler - String
type - EventEntityDataTypeEnum!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "action": "ADD",
  "author": "xyz789",
  "isAutomated": false,
  "role": "ASSIGNEE",
  "target": "SELF",
  "targetHandler": "xyz789",
  "type": "RESPONSIBLE_UPDATE"
}

TicketHandlerUpdateTargetEnum

Values
Enum Value Description

SELF

OTHER

Example
"SELF"

TicketPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [Ticket!]!
Example
{
  "meta": PaginationMeta,
  "rows": [Ticket]
}

TicketRelationHandlerTypeEnum

Values
Enum Value Description

USER

GROUP

SITEMANAGER

EXTERNALEMAIL

TEAM

Example
"USER"

TicketState

Description

Denotes a possible state for a request / Ticket

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
titleId - HashedId!
title - Translation
key - TicketStateEnum A denoting 'type', used to identify the role and function of a state
order - Int Can be used to define an ordering of state from earliest to latest (from lower to higher number)
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "title": Translation,
  "key": "open",
  "order": 987
}

TicketStateEnum

Values
Enum Value Description

open

declined

closed

inProgress

waitingForInformation

approvalNeeded

onHold

Example
"open"

TicketStateUpdateInput

Fields
Input Field Description
disableWebhooks - Boolean
stateId - HashedId!
note - String
attachments - [Upload!]
event - UpdateTicketStateEventInput
costs - [NewCostInput!]
assignCurrentUser - Boolean
Example
{
  "disableWebhooks": true,
  "stateId": HashedId,
  "note": "xyz789",
  "attachments": [Upload],
  "event": UpdateTicketStateEventInput,
  "costs": [NewCostInput],
  "assignCurrentUser": true
}

TicketTimeline

Fields
Field Name Description
dateCreated - Timestamp!
dateInProgress - Timestamp
dateDeclined - Timestamp
dateClosed - Timestamp
dateFirstAssigned - Timestamp
dateFirstCommented - Timestamp
ticketDuration - TicketDuration!
Example
{
  "dateCreated": 1592577642,
  "dateInProgress": 1592577642,
  "dateDeclined": 1592577642,
  "dateClosed": 1592577642,
  "dateFirstAssigned": 1592577642,
  "dateFirstCommented": 1592577642,
  "ticketDuration": TicketDuration
}

TicketUrgencyEnum

Values
Enum Value Description

CRITICAL

HIGH

NORMAL

LOW

TOLERABLE

Example
"CRITICAL"

TicketUrgencyUpdate

Fields
Field Name Description
created - Timestamp!
urgency - TicketUrgencyEnum!
previousUrgency - TicketUrgencyEnum!
isAutomated - Boolean! Not a result of direct user action but of inner workings. No author in this case.
updatedBy - User The value is present if the event was created explicitly by a user
type - EventEntityDataTypeEnum!
Example
{
  "created": 1592577642,
  "urgency": "CRITICAL",
  "previousUrgency": "CRITICAL",
  "isAutomated": true,
  "updatedBy": User,
  "type": "RESPONSIBLE_UPDATE"
}

TicketUser

Fields
Field Name Description
id - HashedId!
name - String!
Example
{
  "id": HashedId,
  "name": "xyz789"
}

TicketView

Description

configuration for a ticket view

Fields
Field Name Description
id - HashedId! id (hashed) of the view. can be used to re-order the view, or adjust sharing etc.
created - Timestamp!
updated - Timestamp
titleId - HashedId! human-readable, user-input name that is given upon view creation. EXCEPT when isSystemView is true, then this is a string identifier for the view (e.g. "asset-gantt")
forEntity - ViewEntityEnum! type of entity that this view is for (e.g. ASSET)
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - TicketViewOptions! options describing pagination, filters and columns available in the view
isActive - Boolean! whether this view is enabled for this account
isSystemView - Boolean! whether this is a system view (inherited from toolsense system). System views can only be shared/unshared; they cannot be edited.
isShared - Boolean! whether this view can be seen by other members of this group, and sub-groups
isEditable - Boolean! whether this account can change this view's display mode, name or options
isDeletable - Boolean! whether this account can delete this view
isShareable - Boolean! whether this account can share or unshare this view to this group and sub-groups
isUnsharedByParentGroup - Boolean! whether this view has been unshared by a parent of this group
title - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "forEntity": "ASSET",
  "displayMode": "LIST",
  "options": TicketViewOptions,
  "isActive": true,
  "isSystemView": true,
  "isShared": false,
  "isEditable": true,
  "isDeletable": false,
  "isShareable": false,
  "isUnsharedByParentGroup": true,
  "title": Translation
}

TicketViewCreateInput

Description

input used to create a new ticket view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - TicketViewOptionsInput! display options to be stored with this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "options": TicketViewOptionsInput,
  "title": TranslationInput
}

TicketViewOptions

Description

options controlling how a view is displayed

Fields
Field Name Description
search - String general search string to filter the items in this view
filters - [Filters] well defined filters for this view
itemsPerPage - Int! number of items per page in this view
columns - [String!]! ticket columns enabled for this view
Example
{
  "search": "abc123",
  "filters": [Filters],
  "itemsPerPage": 123,
  "columns": ["abc123"]
}

TicketViewOptionsInput

Description

options for displaying a view

Fields
Input Field Description
filters - [FilterParamsInput]
search - String
itemsPerPage - Int! number of tickets per page in the view
columns - [String!]! ordered tickets columns that are to be displayed in this view
Example
{
  "filters": [FilterParamsInput],
  "search": "abc123",
  "itemsPerPage": 123,
  "columns": ["xyz789"]
}

TicketViewUpdateInput

Description

input for updating a ticket view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
id - HashedId!
options - TicketViewOptionsInput! options for displaying tickets in this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "id": HashedId,
  "options": TicketViewOptionsInput,
  "title": TranslationInput
}

TicketWebhookTriggerTypeEnum

Values
Enum Value Description

ticketCreated

ticketCommentAdded

Example
"ticketCreated"

Timestamp

Description

Date type as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.

Example
1592577642

TranslateResultDto

Fields
Field Name Description
sourceLanguage - String!
sourceText - String!
translatedText - JSONObject!
Example
{
  "sourceLanguage": "xyz789",
  "sourceText": "abc123",
  "translatedText": {}
}

Translation

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
languages - [TranslationItem!]!
en_us - String!
de_de - String!
translations - String!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "languages": [TranslationItem],
  "en_us": "abc123",
  "de_de": "abc123",
  "translations": "abc123"
}

TranslationInput

Fields
Input Field Description
languages - [TranslationItemInput!]
translations - JSON
de_de - String
en_us - String
id - HashedId
Example
{
  "languages": [TranslationItemInput],
  "translations": {},
  "de_de": "abc123",
  "en_us": "xyz789",
  "id": HashedId
}

TranslationItem

Fields
Field Name Description
id - HashedId!
code - LanguageLocaleEnum!
text - String!
Example
{
  "id": HashedId,
  "code": "en_us",
  "text": "xyz789"
}

TranslationItemInput

Fields
Input Field Description
code - Locale!
text - String!
Example
{
  "code": "zh-cmn-Hans-CN",
  "text": "abc123"
}

Trip

Description

Trips are sets of intervals grouped by the Calculator feature provided by Flespi API: https://flespi.io/docs/#/gw/calculators

Fields
Field Name Description
created - Timestamp!
updated - Timestamp
id - String! Trip identifier
active - Boolean! Whether trip is still ongoing (active)
assetId - HashedId! Associated asset ID
asset - Asset! Associated asset
avgSpeedRaw - Float! Average speed over this trip, kilometers per hour
avgSpeed - Float! Average speed over this trip, in distance units per hour
distanceRaw - Float! Distance traveled in kilometers
distance - Float! Distance traveled in distance units
distanceUnit - String! Distance unit
driverId - String Driver ID associated with this trip
duration - Float! Trip duration in seconds
endLocation - Address Resolved end location
endTime - Float! Trip end time
eventPoints - [EventPoint!]! List of event points
maxSpeedRaw - Float! Maximum speed within this trip, kilometers per hour
maxSpeed - Float! Maximum speed within this trip, in distance units
imei - String! Associated module IMEI
points - [RoutePoint!]! List of trip's route points
route - String! Encoded route string
startLocation - Address Resolved start location
startTime - Float! Trip start time
timestamp - Float! Trip timestamp
tripId - ID! Compound trip ID combining asset ID with Flespi trip ID
pointsInRange - [RoutePoint!]! List of trip's route points within the search area
Arguments
locationFilter - TripLocationFilter
fuelConsumedRaw - Int! Fuel consumption volume, liters
fuelConsumed - Float! Fuel consumption volume, fuel units
fuelConsumedPercentage - Int! Fuel consumption volume, percentage
fuelUnit - String! Fuel unit
linearDistanceRaw - Float! Linear distance traveled in kilometers
linearDistance - Float! Linear distance traveled in distance units
datapoints - [Datapoint!]! List of routes and events points with direction
group - Group
Example
{
  "created": 1592577642,
  "updated": 1592577642,
  "id": "xyz789",
  "active": false,
  "assetId": HashedId,
  "asset": Asset,
  "avgSpeedRaw": 123.45,
  "avgSpeed": 123.45,
  "distanceRaw": 987.65,
  "distance": 123.45,
  "distanceUnit": "abc123",
  "driverId": "abc123",
  "duration": 987.65,
  "endLocation": Address,
  "endTime": 123.45,
  "eventPoints": [EventPoint],
  "maxSpeedRaw": 987.65,
  "maxSpeed": 987.65,
  "imei": "xyz789",
  "points": [RoutePoint],
  "route": "abc123",
  "startLocation": Address,
  "startTime": 987.65,
  "timestamp": 123.45,
  "tripId": 4,
  "pointsInRange": [RoutePoint],
  "fuelConsumedRaw": 987,
  "fuelConsumed": 987.65,
  "fuelConsumedPercentage": 987,
  "fuelUnit": "xyz789",
  "linearDistanceRaw": 987.65,
  "linearDistance": 987.65,
  "datapoints": [Datapoint],
  "group": Group
}

TripDateFilter

Fields
Input Field Description
from - Int! The date from which to start listing trips
to - Int! The date until which to list trips
Example
{"from": 987, "to": 123}

TripDateRange

Fields
Field Name Description
from - Timestamp!
to - Timestamp!
Example
{"from": 1592577642, "to": 1592577642}

TripLatest

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
active - Boolean! Whether trip is still ongoing (active)
assetId - HashedId! Associated asset ID
distanceUnit - String! Distance unit
endTime - Float! Trip end time
imei - String! Associated module IMEI
startTime - Float! Trip start time
tripId - HashedId!
groupId - HashedId!
latestPointId - Int!
latestPointLat - Float!
latestPointLng - Float!
latestPointTime - DateTime!
latestPointSpeed - Int!
latestPointDistance - Float!
latestDirection - Float!
asset - Asset!
trip - Trip!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "active": false,
  "assetId": HashedId,
  "distanceUnit": "xyz789",
  "endTime": 987.65,
  "imei": "xyz789",
  "startTime": 987.65,
  "tripId": HashedId,
  "groupId": HashedId,
  "latestPointId": 987,
  "latestPointLat": 987.65,
  "latestPointLng": 123.45,
  "latestPointTime": "2007-12-03T10:15:30Z",
  "latestPointSpeed": 123,
  "latestPointDistance": 123.45,
  "latestDirection": 123.45,
  "asset": Asset,
  "trip": Trip
}

TripLatestPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [TripLatest!]!
Example
{
  "meta": PaginationMeta,
  "rows": [TripLatest]
}

TripLocationFilter

Fields
Input Field Description
lat - Float! Target location latitude
lng - Float! Target location longitude
radius - Int! Search radius in meters
Example
{"lat": 987.65, "lng": 123.45, "radius": 987}

TripPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [Trip!]!
Example
{
  "meta": PaginationMeta,
  "rows": [Trip]
}

TripsView

Description

configuration for a trips view

Fields
Field Name Description
id - HashedId! id (hashed) of the view. can be used to re-order the view, or adjust sharing etc.
created - Timestamp!
updated - Timestamp
titleId - HashedId! human-readable, user-input name that is given upon view creation. EXCEPT when isSystemView is true, then this is a string identifier for the view (e.g. "asset-gantt")
forEntity - ViewEntityEnum! type of entity that this view is for (e.g. ASSET)
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - TripsViewOptions! options describing pagination, filters and columns available in the view
isActive - Boolean! whether this view is enabled for this account
isSystemView - Boolean! whether this is a system view (inherited from toolsense system). System views can only be shared/unshared; they cannot be edited.
isShared - Boolean! whether this view can be seen by other members of this group, and sub-groups
isEditable - Boolean! whether this account can change this view's display mode, name or options
isDeletable - Boolean! whether this account can delete this view
isShareable - Boolean! whether this account can share or unshare this view to this group and sub-groups
isUnsharedByParentGroup - Boolean! whether this view has been unshared by a parent of this group
title - Translation!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "titleId": HashedId,
  "forEntity": "ASSET",
  "displayMode": "LIST",
  "options": TripsViewOptions,
  "isActive": true,
  "isSystemView": true,
  "isShared": true,
  "isEditable": false,
  "isDeletable": false,
  "isShareable": true,
  "isUnsharedByParentGroup": false,
  "title": Translation
}

TripsViewCreateInput

Description

input used to create a new trips view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
options - TripsViewOptionsInput! display options to be stored with this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "options": TripsViewOptionsInput,
  "title": TranslationInput
}

TripsViewOptions

Description

options controlling how a view is displayed

Fields
Field Name Description
search - String general search string to filter the items in this view
filters - [Filters] well defined filters for this view
itemsPerPage - Int! number of items per page in this view
columns - [String!]! trips columns enabled for this view
Example
{
  "search": "xyz789",
  "filters": [Filters],
  "itemsPerPage": 987,
  "columns": ["xyz789"]
}

TripsViewOptionsInput

Description

options for displaying a view

Fields
Input Field Description
filters - [FilterParamsInput]
search - String
itemsPerPage - Int! number of trips per page in the view
columns - [String!]! ordered trips columns that are to be displayed in this view
Example
{
  "filters": [FilterParamsInput],
  "search": "abc123",
  "itemsPerPage": 987,
  "columns": ["abc123"]
}

TripsViewUpdateInput

Description

input for updating a trips view

Fields
Input Field Description
displayMode - ViewDisplayMode! display mode that this view uses (e.g. MAP)
id - HashedId!
options - TripsViewOptionsInput! options for displaying trips in this view
title - TranslationInput!
Example
{
  "displayMode": "LIST",
  "id": HashedId,
  "options": TripsViewOptionsInput,
  "title": TranslationInput
}

UnitEnum

Values
Enum Value Description

AH

AMPERE

BINARY

CELSIUS

FRACTION

DAYS

GRAMS

HERZ

HOURS

KG

KILOGRAMS

KILOMETER

KMPH

LITER

LPH

METERS

MICROSECONDS

MILLIAMPERE

MILLISECONDS

MINUTES

MONTHS

NOF

PERCENTAGE

RPM

RSSI

SECONDS

TONS

VOLT

VOLTAGE

WATT

WATTS

WEEKS

YEARS

UNIT

MS

KWH

Example
"AH"

UpdateCommentEventInput

Fields
Input Field Description
title - TranslationInput!
assetId - HashedId!
id - HashedId
Example
{
  "title": TranslationInput,
  "assetId": HashedId,
  "id": HashedId
}

UpdateTicketStateEventInput

Fields
Input Field Description
title - TranslationInput!
assetId - HashedId!
Example
{
  "title": TranslationInput,
  "assetId": HashedId
}

Upload

Description

The Upload scalar type represents a file upload.

Example
Upload

User

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
publicId - Int!
firstname - String
lastname - String
password - String!
email - String!
phone - String
fullName - String!
groupId - HashedId! New name for "belongsToGroupId"
roleId - HashedId!
isSupportAdmin - Boolean! New name for "supportAdmin"
canShareViews - Boolean!
isSSOEnabled - Boolean
languageId - HashedId
language - HashedId Use "languageId" instead
languageCode - LanguageLocale
dashboardId - HashedId
locale - LanguageTag
timezone - String
label - String
apiKey - String
image - String
activated - Timestamp
isServicing - Boolean!
info - JSON
stripeSubscriptionId - String
deleted - Timestamp
username - String Use "email" instead
supportAdmin - Boolean! Use "isSupportAdmin" instead
belongsToGroupId - HashedId! Use "groupId" instead
lastLogin - DateTime
services - [JSON!] No implementation for this field
dashboard - JSON No implementation for this field
notifications - [JSON!] No implementation for this field
notificationIds - [HashedId!] No implementation for this field
checkPassword - Boolean No implementation for this field
loginInterrupts - JSON No implementation for this field
loginInterruptIds - [HashedId!] No implementation for this field
subscription - StripeSubscriptionPlan
belongsToGroup - Group! Use "group" instead
group - Group!
role - Role!
teams - [Team!]!
Arguments
filters - TeamFilterInput
hasMultipleGroups - Boolean!
groups - [Group!]!
unavailability - [UserUnavailability!]!
Arguments
settings - JSON
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "publicId": 123,
  "firstname": "abc123",
  "lastname": "xyz789",
  "password": "abc123",
  "email": "abc123",
  "phone": "xyz789",
  "fullName": "abc123",
  "groupId": HashedId,
  "roleId": HashedId,
  "isSupportAdmin": true,
  "canShareViews": false,
  "isSSOEnabled": true,
  "languageId": HashedId,
  "language": HashedId,
  "languageCode": "ENGLISH",
  "dashboardId": HashedId,
  "locale": LanguageTag,
  "timezone": "xyz789",
  "label": "xyz789",
  "apiKey": "xyz789",
  "image": "abc123",
  "activated": 1592577642,
  "isServicing": true,
  "info": {},
  "stripeSubscriptionId": "abc123",
  "deleted": 1592577642,
  "username": "xyz789",
  "supportAdmin": true,
  "belongsToGroupId": HashedId,
  "lastLogin": "2007-12-03T10:15:30Z",
  "services": [{}],
  "dashboard": {},
  "notifications": [{}],
  "notificationIds": [HashedId],
  "checkPassword": false,
  "loginInterrupts": {},
  "loginInterruptIds": [HashedId],
  "subscription": StripeSubscriptionPlan,
  "belongsToGroup": Group,
  "group": Group,
  "role": Role,
  "teams": [Team],
  "hasMultipleGroups": true,
  "groups": [Group],
  "unavailability": [UserUnavailability],
  "settings": {}
}

UserPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [User!]!
Example
{
  "meta": PaginationMeta,
  "rows": [User]
}

UserUnavailability

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
createdByWorkOrderId - HashedId!
startTime - DateTime!
endTime - DateTime
userId - HashedId!
asWorkOrderWorker - Boolean!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "createdByWorkOrderId": HashedId,
  "startTime": "2007-12-03T10:15:30Z",
  "endTime": "2007-12-03T10:15:30Z",
  "userId": HashedId,
  "asWorkOrderWorker": true
}

UserUnavailabilityContext

Values
Enum Value Description

AS_WORKORDER_WORKER

Example
"AS_WORKORDER_WORKER"

UserUnavailabilityFilterInput

Fields
Input Field Description
from - DateTime! filter unavailability records starting from this time.
to - DateTime! filter unavailability records until this time.
filterContext - UserUnavailabilityContext filter unavailability records to only ones matching this context.
Example
{
  "from": "2007-12-03T10:15:30Z",
  "to": "2007-12-03T10:15:30Z",
  "filterContext": "AS_WORKORDER_WORKER"
}

ViewDisplayMode

Values
Enum Value Description

LIST

MAP

GANTT

Example
"LIST"

ViewEntityEnum

Values
Enum Value Description

ASSET

TICKET

TRIPS

ASSET_EVENT

Example
"ASSET"

Webhook

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
groupId - HashedId! group to which this webhook applies
url - String! url of the webhook
forTickets - Boolean! whether this webhook will be called for tickets in the given group.
forSites - Boolean! whether this webhook will be called for sites in the given group.
forAssets - Boolean! whether this webhook will be called for assets in the given group.
forWorkOrders - Boolean! whether this webhook will be called for work orders in the given group.
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "groupId": HashedId,
  "url": "xyz789",
  "forTickets": true,
  "forSites": true,
  "forAssets": false,
  "forWorkOrders": true
}

WebhookCreateInput

Fields
Input Field Description
groupId - HashedId! group to which this webhook applies
url - String! url of the webhook
forTickets - Boolean! whether this webhook will be called for tickets in the given group.
forSites - Boolean! whether this webhook will be called for sites in the given group.
forAssets - Boolean! whether this webhook will be called for assets in the given group.
forWorkOrders - Boolean! whether this webhook will be called for work orders in the given group.
Example
{
  "groupId": HashedId,
  "url": "abc123",
  "forTickets": false,
  "forSites": false,
  "forAssets": false,
  "forWorkOrders": false
}

WebhookUpdateInput

Fields
Input Field Description
id - HashedId!
url - String! url of the webhook
forTickets - Boolean! whether this webhook will be called for tickets in the given group.
forSites - Boolean! whether this webhook will be called for sites in the given group.
forAssets - Boolean! whether this webhook will be called for assets in the given group.
forWorkOrders - Boolean! whether this webhook will be called for work orders in the given group.
Example
{
  "id": HashedId,
  "url": "xyz789",
  "forTickets": false,
  "forSites": false,
  "forAssets": true,
  "forWorkOrders": false
}

WellKnownNumericParameterKey

Description

A well-known parameter which has a numeric value

Values
Enum Value Description

runtime

signal

battery

chargingCycle

Example
"runtime"

WellKnownParameterKey

Description

A well-known parameter

Values
Enum Value Description

runtime

signal

battery

fwversion

swversion

Example
"runtime"

WorkOrderAssetCollection

Fields
Field Name Description
workOrderId - HashedId!
widgetHint - String
assets - [Asset!]!
Example
{
  "workOrderId": HashedId,
  "widgetHint": "xyz789",
  "assets": [Asset]
}

WorkOrderAssetsFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
addedAssets - [Asset!]!
removedAssets - [Asset!]!
Example
{
  "field": "STATUS",
  "addedAssets": [Asset],
  "removedAssets": [Asset]
}

WorkOrderAssigneeChangeNotification

Fields
Field Name Description
previous - ProcessHandler
current - ProcessHandler
Example
{
  "previous": ProcessHandler,
  "current": ProcessHandler
}

WorkOrderAttachablePersonnel

Fields
Field Name Description
userId - HashedId
groupId - HashedId
displayName - String!
Example
{
  "userId": HashedId,
  "groupId": HashedId,
  "displayName": "xyz789"
}

WorkOrderCost

Fields
Field Name Description
workOrderId - HashedId!
widgetHint - String
id - HashedId!
valueCents - Int! Amount of the work order cost
costType - WorkOrderCostType! What type of cost kind is represented by this object
currency - Currency! Currency of the work order cost
Example
{
  "workOrderId": HashedId,
  "widgetHint": "abc123",
  "id": HashedId,
  "valueCents": 123,
  "costType": "DAILY_RATE",
  "currency": "AED"
}

WorkOrderCostInput

Fields
Input Field Description
widgetHint - String
valueCents - Int! Amount of the work order cost
costType - WorkOrderCostType! What type of cost kind is represented by this object
currency - Currency! Currency of the work order cost
id - HashedId
Example
{
  "widgetHint": "xyz789",
  "valueCents": 987,
  "costType": "DAILY_RATE",
  "currency": "AED",
  "id": HashedId
}

WorkOrderCostStoredHistory

Fields
Field Name Description
valueCents - Int! Amount of the work order cost
currency - Currency! Currency of the work order cost
Example
{"valueCents": 987, "currency": "AED"}

WorkOrderCostType

Values
Enum Value Description

DAILY_RATE

Example
"DAILY_RATE"

WorkOrderCreateInput

Fields
Input Field Description
name - String!
startDate - DateTime!
endDate - DateTime!
procedureTemplateId - HashedId
customerName - String
status - WorkOrderStatus!
costCenter - String
siteId - HashedId
notes - TranslationInput
Example
{
  "name": "xyz789",
  "startDate": "2007-12-03T10:15:30Z",
  "endDate": "2007-12-03T10:15:30Z",
  "procedureTemplateId": HashedId,
  "customerName": "xyz789",
  "status": "PENDING",
  "costCenter": "xyz789",
  "siteId": HashedId,
  "notes": TranslationInput
}

WorkOrderDailyRateFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
previousDailyRate - WorkOrderCostStoredHistory
currentDailyRate - WorkOrderCostStoredHistory
Example
{
  "field": "STATUS",
  "previousDailyRate": WorkOrderCostStoredHistory,
  "currentDailyRate": WorkOrderCostStoredHistory
}

WorkOrderDateFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
previousDate - Timestamp
currentDate - Timestamp!
Example
{"field": "STATUS", "previousDate": 1592577642, "currentDate": 1592577642}

WorkOrderDatesInput

Fields
Input Field Description
id - HashedId!
startDate - DateTime!
endDate - DateTime!
Example
{
  "id": HashedId,
  "startDate": "2007-12-03T10:15:30Z",
  "endDate": "2007-12-03T10:15:30Z"
}

WorkOrderFieldChange

WorkOrderHistoryEntry

Fields
Field Name Description
id - HashedId!
date - DateTime!
type - WorkOrderHistoryEntryType!
createdByUser - User!
changes - [WorkOrderFieldChange!]!
Example
{
  "id": HashedId,
  "date": "2007-12-03T10:15:30Z",
  "type": "ADDED",
  "createdByUser": User,
  "changes": [WorkOrderAssetsFieldChange]
}

WorkOrderHistoryEntryType

Values
Enum Value Description

ADDED

CHANGED

Example
"ADDED"

WorkOrderHistoryField

Values
Enum Value Description

STATUS

ASSIGNEE

FOLLOWERS

WORKERS

START_DATE

END_DATE

SITE

NOTES

ASSETS

LOCATIONS

COST_CENTER

DAILY_RATE

Example
"STATUS"

WorkOrderLocation

Fields
Field Name Description
workOrderId - HashedId!
widgetHint - String
id - HashedId!
name - String!
address - String
lat - String
lng - String
siteId - HashedId
Example
{
  "workOrderId": HashedId,
  "widgetHint": "abc123",
  "id": HashedId,
  "name": "xyz789",
  "address": "abc123",
  "lat": "xyz789",
  "lng": "abc123",
  "siteId": HashedId
}

WorkOrderLocationInput

Fields
Input Field Description
widgetHint - String
name - String!
address - String
lat - String
lng - String
siteId - HashedId
id - HashedId
Example
{
  "widgetHint": "xyz789",
  "name": "abc123",
  "address": "abc123",
  "lat": "xyz789",
  "lng": "xyz789",
  "siteId": HashedId,
  "id": HashedId
}

WorkOrderLocationStoredHistory

Fields
Field Name Description
name - String!
address - String
lat - String
lng - String
siteId - HashedId
Example
{
  "name": "xyz789",
  "address": "xyz789",
  "lat": "abc123",
  "lng": "xyz789",
  "siteId": HashedId
}

WorkOrderLocationsFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
addedLocations - [WorkOrderLocationStoredHistory!]!
removedLocations - [WorkOrderLocationStoredHistory!]!
nameChanges - [WorkOrderNameChange!]!
Example
{
  "field": "STATUS",
  "addedLocations": [WorkOrderLocationStoredHistory],
  "removedLocations": [WorkOrderLocationStoredHistory],
  "nameChanges": [WorkOrderNameChange]
}

WorkOrderNameChange

Fields
Field Name Description
previous - String
current - String
Example
{
  "previous": "xyz789",
  "current": "xyz789"
}

WorkOrderNotesFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
previousNotes - Translation
currentNotes - Translation
Example
{
  "field": "STATUS",
  "previousNotes": Translation,
  "currentNotes": Translation
}

WorkOrderNotifications

Fields
Field Name Description
created - WorkOrderV2
followersAdded - [ProcessHandler!]!
followersRemoved - [ProcessHandler!]!
assigneeChanged - WorkOrderAssigneeChangeNotification
statusChanged - WorkOrderStatusChangeNotification
assetsAssigned - [Asset!]!
assetsUnassigned - [Asset!]!
Example
{
  "created": WorkOrderV2,
  "followersAdded": [ProcessHandler],
  "followersRemoved": [ProcessHandler],
  "assigneeChanged": WorkOrderAssigneeChangeNotification,
  "statusChanged": WorkOrderStatusChangeNotification,
  "assetsAssigned": [Asset],
  "assetsUnassigned": [Asset]
}

WorkOrderPersonnelAssigneeInput

Fields
Input Field Description
assigneeType - WorkOrderPersonnelAssigneeType!
id - HashedId!
Example
{"assigneeType": "USER", "id": HashedId}

WorkOrderPersonnelAssigneeType

Values
Enum Value Description

USER

GROUP

Example
"USER"

WorkOrderPersonnelContact

Fields
Field Name Description
type - WorkOrderPersonnelContactValueType!
value - String!
Example
{"type": "EXTERNALEMAIL", "value": "xyz789"}

WorkOrderPersonnelContactInput

Fields
Input Field Description
type - WorkOrderPersonnelContactValueType!
value - String!
Example
{"type": "EXTERNALEMAIL", "value": "xyz789"}

WorkOrderPersonnelContactValueType

Values
Enum Value Description

EXTERNALEMAIL

SITEMANAGER

NAME

Example
"EXTERNALEMAIL"

WorkOrderPersonnelFollowerCollectionInput

Fields
Input Field Description
userIds - [HashedId!]
contacts - [WorkOrderPersonnelContactInput!]
groupIds - [HashedId!]!
Example
{
  "userIds": [HashedId],
  "contacts": [WorkOrderPersonnelContactInput],
  "groupIds": [HashedId]
}

WorkOrderPersonnelInput

Fields
Input Field Description
assignee - WorkOrderPersonnelAssigneeInput
followers - WorkOrderPersonnelFollowerCollectionInput!
workerCollections - [WorkOrderPersonnelWorkerCollectionInput!]!
Example
{
  "assignee": WorkOrderPersonnelAssigneeInput,
  "followers": WorkOrderPersonnelFollowerCollectionInput,
  "workerCollections": [
    WorkOrderPersonnelWorkerCollectionInput
  ]
}

WorkOrderPersonnelV2

Fields
Field Name Description
workOrderId - HashedId!
widgetHint - String
id - HashedId!
userId - HashedId
groupId - HashedId
user - User
group - Group
contact - WorkOrderPersonnelContact
removable - Boolean!
displayName - String!
Example
{
  "workOrderId": HashedId,
  "widgetHint": "abc123",
  "id": HashedId,
  "userId": HashedId,
  "groupId": HashedId,
  "user": User,
  "group": Group,
  "contact": WorkOrderPersonnelContact,
  "removable": false,
  "displayName": "xyz789"
}

WorkOrderPersonnelWorkerCollectionInput

Fields
Input Field Description
widgetHint - String
userIds - [HashedId!]
contacts - [WorkOrderPersonnelContactInput!]
Example
{
  "widgetHint": "xyz789",
  "userIds": [HashedId],
  "contacts": [WorkOrderPersonnelContactInput]
}

WorkOrderSiteFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
previousSite - Site
currentSite - Site
Example
{
  "field": "STATUS",
  "previousSite": Site,
  "currentSite": Site
}

WorkOrderStatus

Values
Enum Value Description

PENDING

CONFIRMED

IN_PROGRESS

ON_HOLD

DONE

CANCELLED

DRAFT

Example
"PENDING"

WorkOrderStatusChangeNotification

Fields
Field Name Description
previous - WorkOrderStatus!
current - WorkOrderStatus!
Example
{"previous": "PENDING", "current": "PENDING"}

WorkOrderStatusFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
previousStatus - WorkOrderStatus
currentStatus - WorkOrderStatus!
Example
{"field": "STATUS", "previousStatus": "PENDING", "currentStatus": "PENDING"}

WorkOrderStringArrayFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
added - [String!]!
removed - [String!]!
Example
{
  "field": "STATUS",
  "added": ["abc123"],
  "removed": ["xyz789"]
}

WorkOrderStringFieldChange

Fields
Field Name Description
field - WorkOrderHistoryField!
previous - String
current - String
Example
{
  "field": "STATUS",
  "previous": "xyz789",
  "current": "xyz789"
}

WorkOrderSummary

Fields
Field Name Description
id - HashedId!
name - String!
workOrderNumber - Int!
Example
{
  "id": HashedId,
  "name": "xyz789",
  "workOrderNumber": 123
}

WorkOrderUpdateInput

Fields
Input Field Description
id - HashedId!
name - String!
startDate - DateTime!
endDate - DateTime!
procedureTemplateId - HashedId
customerName - String
status - WorkOrderStatus!
costCenter - String
siteId - HashedId
notes - TranslationInput
Example
{
  "id": HashedId,
  "name": "xyz789",
  "startDate": "2007-12-03T10:15:30Z",
  "endDate": "2007-12-03T10:15:30Z",
  "procedureTemplateId": HashedId,
  "customerName": "abc123",
  "status": "PENDING",
  "costCenter": "xyz789",
  "siteId": HashedId,
  "notes": TranslationInput
}

WorkOrderV2

Fields
Field Name Description
id - HashedId!
created - Timestamp!
updated - Timestamp
name - String!
startDate - DateTime!
endDate - DateTime!
createdByGroupId - HashedId!
procedureTemplateId - HashedId
creatorId - HashedId!
creationDate - DateTime!
customerName - String
status - WorkOrderStatus!
notesId - HashedId
costCenter - String
siteId - HashedId
creator - User!
procedureTemplate - ProcedureTemplate
site - Site
workOrderNumber - Int!
notes - Translation
sourceTicketId - HashedId
assignee - WorkOrderPersonnelV2
followers - [WorkOrderPersonnelV2!]!
workers - [WorkOrderPersonnelV2!]!
costs - [WorkOrderCost!]! all costs currently attached to this work order.
dailyRate - WorkOrderCost the cost from this work order that is its daily rate, if any.
assetCollections - [WorkOrderAssetCollection!]! Use WorkOrderV2.assets
Arguments
widgetHint - String
assets - [Asset!]!
locations - [WorkOrderLocation!]!
Arguments
widgetHint - String
history - [WorkOrderHistoryEntry!]!
Example
{
  "id": HashedId,
  "created": 1592577642,
  "updated": 1592577642,
  "name": "xyz789",
  "startDate": "2007-12-03T10:15:30Z",
  "endDate": "2007-12-03T10:15:30Z",
  "createdByGroupId": HashedId,
  "procedureTemplateId": HashedId,
  "creatorId": HashedId,
  "creationDate": "2007-12-03T10:15:30Z",
  "customerName": "abc123",
  "status": "PENDING",
  "notesId": HashedId,
  "costCenter": "abc123",
  "siteId": HashedId,
  "creator": User,
  "procedureTemplate": ProcedureTemplate,
  "site": Site,
  "workOrderNumber": 987,
  "notes": Translation,
  "sourceTicketId": HashedId,
  "assignee": WorkOrderPersonnelV2,
  "followers": [WorkOrderPersonnelV2],
  "workers": [WorkOrderPersonnelV2],
  "costs": [WorkOrderCost],
  "dailyRate": WorkOrderCost,
  "assetCollections": [WorkOrderAssetCollection],
  "assets": [Asset],
  "locations": [WorkOrderLocation],
  "history": [WorkOrderHistoryEntry]
}

WorkOrdersPaginatedResult

Fields
Field Name Description
meta - PaginationMeta!
rows - [WorkOrderV2!]!
Example
{
  "meta": PaginationMeta,
  "rows": [WorkOrderV2]
}