Skip to content

zOne Web Services

The zOne Web Services API enables integration with core platform capabilities,including Maintenance Management, Space Management, and Condition Assessment.

It provides secure endpoints for managing assets, user accounts, reference data, audit trails, file groups, and organizational contacts. These APIs support operational workflows, data synchronization, and system integrations.

Download OpenAPI description
Languages
Servers
Demo
https://demozone.zlinkfm.com/RND
Operations
Operations
Operations
Operations
Operations
Operations

Request

This endpoint returns audit trail records generated for the current account, based on the supplied filter criteria such as modules, features, actions, users, and time range.

The results are normalized to the logged-in user’s timezone and returned in descending order of event occurrence time.

Notes:

  • Only audit records belonging to the current account are returned
  • Results are enriched with user and account metadata
  • Timestamps are converted to the logged-in user’s timezone
Query
limitinteger(int32)
Default 100
startinteger(int32)
Default 0
Body
cloudsArray of strings or null
featuresArray of strings or null
actionsArray of strings or null
itemsArray of strings or null
userIdsArray of strings or null(uuid)
startTimestring or null(date-time)
endTimestring or null(date-time)
menusArray of strings or null
curl -i -X POST \
  'https://demozone.zlinkfm.com/RND/api/v1/auditing/audittrails?limit=100&start=0' \
  -H 'Content-Type: application/json-patch+json' \
  -d '{
    "clouds": [
      "string"
    ],
    "features": [
      "string"
    ],
    "actions": [
      "string"
    ],
    "items": [
      "string"
    ],
    "userIds": [
      "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    ],
    "startTime": "2019-08-24T14:15:22Z",
    "endTime": "2019-08-24T14:15:22Z",
    "menus": [
      "string"
    ]
  }'

Responses

OK

Body
dataobject(Models.LogDetailResponseModel)
messagestring or null
isErrorboolean
messageCodeinteger(int32)
statusstring or null
errorTypestring or null
traceidstring or null
responseDescriptionstring or null
Response
No response example
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations