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
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations

Request

Stops active labor entries associated with the specified task within the current account context.

Behavior:

  • Validates account and user context
  • Verifies the task belongs to the account
  • Stops active labor records using the provided labor details
  • Updates task labor status accordingly
  • Returns the updated task response data
  • Logs the action as task laborers stopped
Path
taskIdstring(uuid)required
Body
laborHourDetailsArray of objects or null(zLink.Business.zOne.TasksManagement.RequestModel.LabourHourDetail)
curl -i -X POST \
  'https://demozone.zlinkfm.com/RND/api/v1/tm/tasks/{taskId}/stoplabors' \
  -H 'Content-Type: application/json-patch+json' \
  -d '{
    "laborHourDetails": [
      {
        "technicianId": "dcb67e93-dd0c-4706-9d67-7ccc5cf44418",
        "description": "string",
        "action": "string",
        "endTime": "2019-08-24T14:15:22Z",
        "hoursWorked": 0.1,
        "cost": 0.1,
        "taskLaborId": "0df24608-6dda-4064-a2a7-c6b02c288d78",
        "startTime": "2019-08-24T14:15:22Z"
      }
    ]
  }'

Responses

OK

Body
dataobject(zLink.Business.zOne.TasksManagement.ResponseModel.TaskDataResponseModel)
messagestring or null
isErrorboolean
messageCodeinteger(int32)
statusstring or null
errorTypestring or null
traceidstring or null
responseDescriptionstring or null
Response
No response example

Request

Returns a paginated list of service requests created by the current user within the account context.

Behavior:

  • Validates account and user context
  • Supports pagination using the start query parameter
  • Retrieves service requests associated with the user
  • Returns structured service request list response data
  • Logs the action as request list view
Query
startstring
curl -i -X GET \
  'https://demozone.zlinkfm.com/RND/api/v1/tm/users/me/requests/list?start=string'

Responses

OK

Body
dataobject(zLink.Business.zOne.TasksManagement.ResponseModel.ServiceRequestListResponseModel)
messagestring or null
isErrorboolean
messageCodeinteger(int32)
statusstring or null
errorTypestring or null
traceidstring or null
responseDescriptionstring or null
Response
No response example
Operations
Operations