ZenduCAM API

ZenduCAM API



Please use the following script for the ZenduCAM API.

For examples and detailed information, click here.

  1. POST Get Devices



Gets the Devices. This method can be used in various ways to return all, one or some specific set of data for the Devices.


typescript

interface DeviceSearch {
    comment?: string;
    deviceType?: string;
    fromDate?: string;
    toDate?: string;
    groups?: Array;
    licensePlate?: string;
    name?: string;
    serialNumber?: string;
    vehicleIdentificationNumber?: string;
    id?: string;
}

Body urlencoded

JSON-RPC

{ "method": "Get", "params": { "typeName": "Device", "search": { }, "credentials": { "sessionId": "sessionId", "userName": "username", "database": "database", "customerId": "customerId" } }, "type": "trax" }


  1. POST Get Devices Status


https://one-service.zenduit.com/api/


Body urlencoded

JSON-RPC
{ "method": "Get", "params": { "typeName": "DeviceStatusInfo", "search": {}, "credentials": { "sessionId": "sessionId", "userName": "username", "database": "database", "customerId": "customerId" } }, "type": "trax" }

    • Related Articles

    • ZenBus API

      BUS ETA A collection holding all the JSON RPC API calls. Error Codes: 500 - internal server error 400 - bad request 401 - authentication failed Auth POST Authenticate https://one-service.zenduit.com/api/ Body urlencoded JSON-RPC { "method": ...
    • ZenduWork API

      Please use the following script for the ZenduWork API. For examples and detailed information, click here. POST Get Devices https://one-service.zenduit.com/api/ Gets the Devices. This method can be used in various ways to return all, one or some ...