Device tags

Clear device tags

POST
/workspaces/{workspaceId}/devices/clear-tags

Authorization

API key Devices: write
AuthorizationBearer <token>

API key (sf_...) with any of the required scopes. Generate it in the Spotflow portal on the settings page.

In: header

Scope: Devices: write

Path Parameters

workspaceId*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

deviceIds?null|array<string>
filter?null|

Response Body

application/json

application/problem+json

curl -X POST "https://example.com/workspaces/00000000-0000-0000-0000-000000000001/devices/clear-tags" \  -H "Content-Type: application/json" \  -d '{    "deviceIds": [      "thermostat-0117"    ],    "filter": {      "tags": [        {          "tagName": "environment",          "equals": "field-test"        }      ]    }  }'

Number of devices whose tags were cleared.

{  "devicesUpdated": 24}