v1

latestOpenAPI 3.0.32026-07-24214879985.1 KB
Cameras

This endpoint allows the developer to update multiple cameras at once by providing update fields.

post/cameras:bulkUpdate

Request body

idsstring[] required

Example request

{
  "ids": [
    "10088cde",
    "10088ceb",
    "10088abc"
  ],
  "updateFields": {
    "speakerId": "10039dab",
    "locationId": "2428fda3-389f-48ce-b062-85875dd6b2e2",
    "on": true
  }
}

Response

Cameras updated

responseBulkUpdateResponses

Provides collection of individual responses of each camera update.

Example response

{
  "response": {
    "10088cde": {
      "status": 400
    },
    "10088ceb": {
      "status": 204
    },
    "10088abc": {
      "status": 500
    }
  }
}