• Tools
Tools
  • Tools
loading...
No Results
  • ActiveCampaign
  • AirDroid Business
    • Index
    • Batch Resolve Device and Group IDs by Name
    • Batch Resolve Device IDs by Name
    • Batch Resolve Group IDs by Name
    • Batch Get Devices by Device or Group IDs
    • Clear app data and cache
    • Create a group
    • Delete groups
    • Delete Provisioning Templates
    • Disable lost mode
    • Error codes
    • Enable lost mode
    • Field reference
    • Get average screen time
    • Get account activities
    • Get a Configuration
    • Get a device by name
    • Get a device app by name
    • Get a group
    • Get a group id by group name
    • Get a Provisioning Template
    • Get an activity log
    • Get all devices
    • Get all device apps
    • Get all devices with filter
    • Get Config File Deployment Status
    • Get device info push
    • Get device location report
    • Get device network connection history
    • Get device application usage duration
    • Get device application report
    • Get device online status report
    • Get device remote access report
    • Get data usage overview and trends
    • Get tag ids by tag names
    • Get top 10 apps by usage duration
    • Get top 10 data usage apps
    • Generate Device Owner Enrollment QR for Template
    • List Groups
    • List Policy and Kiosk Configurations
    • List Provisioning Templates
    • Lock a device
    • Move devices to a group
    • Open app to foreground
    • Power off a device
    • Reboot device
    • Remote operation
    • Search Groups
    • Set tags
    • Turn off device screen
    • Unenroll a device
    • Update a device name
    • Update a device remark
    • Update a group name
    • Update a group remark
    • Retry Organization App Library Distribution
    • Search Organization App Library Applications
    • Batch Set Device Tags
    • Search Batch Operation Activity Logs
    • Search File Batch Delete Results
    • Search File Batch Send Results
    • Batch Delete Files
    • Batch Send Files
    • Batch Clear App Data and Cache
    • Move Groups to a Group
    • List Organization App Library Distribution Status
    • Get Application Uninstall Result
    • Get Device Daemon Permissions
    • Create Tags
    • Uninstall Application
    • List Organization App Library Applications
    • Delete Tag
    • Batch Upload Qiniu Files
    • Search File Batch Upload Results
    • Retry Batch Qiniu File Upload
  • Adalo
  • Appstore
  • Asana
  • AWS Lambda
  • AWS-S3
  • BambooHR
  • Bitbucket
  • Brevo
  • Clockify
  • Coda
  • ConvertKit
  • DingTalk
  • Discord
  • Discourse
  • Dropbox
  • Elasticsearch
  • Elastic Security
  • FeiShu
  • Firecrawl
  • Freshdesk
  • Freshservice
  • Freshworks CRM
  • Gerrit
  • Github
  • Gitlab
  • Google Ads
  • Google Analytics
  • Google Calendar
  • Google Developer
  • Google Docs
  • Google Drive
  • Google Gmail
  • Google Sheets
  • Grafana
  • Hacker News
  • HaloPSA
  • Harvest
  • Help Scout
  • Hubspot
  • Intercom
  • Jenkins
  • Jira
  • Kafka
  • Lemlist
  • Linear
  • Magento
  • MailChimp
  • Mautic
  • Metabase
  • Microsoft Excel
  • Microsoft OneDrive
  • Microsoft Outlook
  • Microsoft Sharepoint
  • Microsoft Teams
  • Microsoft To Do
  • monday.com
  • MySQL
  • Nextcloud
  • Notion
  • Odoo
  • Okta
  • OpenAI
  • Ortto
  • Paddle
  • PayPal
  • Pipedrive
  • PostgreSQL
  • PostHog
  • Qdrant
  • QuickBooks
  • Redis
  • Segment
  • SendGrid
  • ServiceNow
  • Shopify
  • Slack
  • Splunk
  • Spotify
  • Strapi
  • Stripe
  • System Tools
    • Code
    • CSV
    • Crypto
    • Data Shaping
    • Date & Time
    • Delay
    • Documents
    • QRCode
    • Search&Crawl
    • Text
    • Xml
  • Teambition
  • Telegram
  • Todoist
  • Trello
  • Twilio
  • Webflow
  • Wekan
  • Wikipedia
  • WooCommerce
  • WordPress
  • X
  • YouTube
  • Zammad
  • Zendesk
  • Zoho CRM
  • Zoom
  • Zulip
Home > Tools > AirDroid Business

Batch Set Device Tags

Tool Name: Not defined in the current tool contract

Risk Level: Write (medium-risk)

Execution Mode: Synchronous

Category: Device Management (Tags)

Quick Start (Copy & Use)

Summary: Append, replace, or clear the tag set for 1-1,000 devices in one atomic request.

Prerequisites: DeviceIds, TagIds, and Mode. The account requires Device Tag feature read/write permission.

Success Criteria: StatusCode == 200 and ErrorMessage is empty. All selected devices change, or none do; there is no per-device result payload.

What to Do Next: Use List Devices to verify current assignments after an uncertain write.

Minimal Request Example:

{
  "DeviceIds": ["a8f3d91c72b44e5fa103c892d0b74561", "4c7e2a90f15d438bb617e9206ab34fd8"],
  "TagIds": [4102, 4103],
  "Mode": "append"
}

Minimal Response Example:

{
  "Hint": "",
  "Retryable": false,
  "OriginalStatusCode": 200,
  "StatusCode": 200,
  "ErrorMessage": ""
}

Recipes (Common Recipes)

Recipe 1: Append Tags

When to use: Keep existing assignments and add tags.

{
  "DeviceIds": ["a8f3d91c72b44e5fa103c892d0b74561"],
  "TagIds": [4102],
  "Mode": "append"
}

Recipe 2: Replace the Complete Tag Set

When to use: The supplied tags are the complete desired assignment.

{
  "DeviceIds": ["a8f3d91c72b44e5fa103c892d0b74561"],
  "TagIds": [4102, 4103],
  "Mode": "replace"
}

Recipe 3: Clear All Tags

When to use: Every selected device should have no tag assignments.

{
  "DeviceIds": ["a8f3d91c72b44e5fa103c892d0b74561"],
  "TagIds": [],
  "Mode": "replace"
}

1. Overview

1.1 Description

Changes device tag assignments synchronously. The full selection succeeds or fails as one unit.

1.2 When to Use

  • Add classifications while retaining existing tags.
  • Replace or clear assignments on multiple devices.

1.3 Execution Mode and Response

This operation is synchronous and returns only standard status fields. An empty ErrorMessage means the selected devices changed as a unit; it does not return the final tag sets.

1.4 Prerequisites

Condition Description
Device IDs 1-1,000 distinct non-blank IDs.
Tag IDs 0-5 distinct positive IDs.
Permission Device Tag feature read/write permission.

1.5 Prerequisite Tools

Tool Purpose
List Devices / Search Devices Obtain device IDs.
Batch Resolve Tag IDs by Name Resolve existing tag names.
Create Tags Create missing tags before assignment.

1.6 Similar Tools

Use Create Tags for tag definitions; use this tool only to change assignments.

2. Inputs

2.1 Parameter List

Parameter Type Required Default Description
DeviceIds string-array Yes - 1-1,000 distinct device IDs.
TagIds number-array Yes - 0-5 distinct positive tag IDs.
Mode string Yes - Exactly append or replace.

2.2 Parameter Details

`DeviceIds`

Obtain IDs from device lookup. Blank and duplicate IDs are rejected.

`TagIds`

Obtain existing IDs with Batch Resolve Tag IDs by Name, or create missing tags first. append requires at least one ID. replace permits an empty list to clear tags. The final tag count on every selected device must not exceed five.

`Mode`

append retains current tags and adds TagIds. replace removes all current tags not in TagIds and makes the supplied list the complete set.

2.3 Parameter Combination Logic

  • append plus [] is invalid.
  • replace plus [] clears all tags.
  • The request is atomic across the selected devices.

3. Outputs

3.1 Response Examples

The Quick Start response is the full successful output.

Invalid append request:

{
  "Hint": "Provide at least one Tag ID or use replace with an empty list to clear tags.",
  "Retryable": false,
  "OriginalStatusCode": 0,
  "StatusCode": -1,
  "ErrorMessage": "TagIds cannot be empty in append mode."
}

3.2 Field Descriptions

Field Type Description
StatusCode number 200 completed; -1 validation; 500 system/network error.
ErrorMessage string Empty means all selected devices changed; non-empty means failure.
Hint string Recommended next step after a failure.
Retryable bool Whether the same request may be attempted again after failure.
OriginalStatusCode number Upstream HTTP status; 0 means no response.

3.3 Result Semantics

There is no Results array. A successful response means all selected devices changed; a failed response means none did.

4. Examples

4.1 Too Many Tags

More than five tag IDs returns StatusCode -1 with TagIds must contain 0-5 IDs.

4.2 Duplicate Device ID

Duplicate device entries are rejected with DeviceIds contains duplicates.; they are not de-duplicated automatically.

4.3 Final Tag Limit

In append mode, an upstream failure can direct the caller to reduce the final tag count to five or fewer on every selected device.

5. Error Handling

5.1 StatusCode Semantics

StatusCode Agent action
-1 Correct IDs or Mode; do not retry unchanged.
200 with non-empty ErrorMessage Follow Hint; no mutation succeeded.
500 Read Hint and Retryable; verify current tags before repeating an uncertain write.

5.2 Common Errors

ErrorMessage Resolution
DeviceIds must contain 1-1,000 IDs. Provide 1-1,000 distinct device IDs.
TagIds must contain distinct positive integers. Remove duplicates and use positive integers.
Mode must be exactly append or replace. Use lowercase append or replace.

5.3 Retry Decision

append does not duplicate assignments. Before repeating an uncertain replace, verify current tags because it removes every tag omitted from TagIds.

6. Best Practices

6.1 Security

For replace, validate the entire desired set before submitting because omitted tags are removed.

6.2 Idempotency

Conditional. append does not duplicate assignments. A repeat replace is safe only after verifying the current complete tag set.

7. Related Tools

Tool Role
Batch Resolve Tag IDs by Name Resolve tag names to IDs.
Create Tags Create missing tags.
List Devices Obtain IDs and verify assignments.

8. Tool Chains

8.1 Resolve, Assign, and Verify

Batch Resolve Tag IDs by Name -> Batch Set Device Tags -> List Devices

Use the final read to verify state after an uncertain write.

Updated on: Aug 5, 2026
Was This Page Helpful?
Prev Search Organization App Library Applications
Next Search Batch Operation Activity Logs
Discussion

Leave a Reply. Cancel reply

Your email address will not be published. Required fields are marked*

Product-related questions?Contact Our Support Team to Get a Quick Solution>
On this page
  • Quick Start (Copy & Use)
  • Recipes (Common Recipes)
    • Recipe 1: Append Tags
    • Recipe 2: Replace the Complete Tag Set
    • Recipe 3: Clear All Tags
  • 1. Overview
    • 1.1 Description
    • 1.2 When to Use
    • 1.3 Execution Mode and Response
    • 1.4 Prerequisites
    • 1.5 Prerequisite Tools
    • 1.6 Similar Tools
  • 2. Inputs
    • 2.1 Parameter List
    • 2.2 Parameter Details
    • 2.3 Parameter Combination Logic
  • 3. Outputs
    • 3.1 Response Examples
    • 3.2 Field Descriptions
    • 3.3 Result Semantics
  • 4. Examples
    • 4.1 Too Many Tags
    • 4.2 Duplicate Device ID
    • 4.3 Final Tag Limit
  • 5. Error Handling
    • 5.1 StatusCode Semantics
    • 5.2 Common Errors
    • 5.3 Retry Decision
  • 6. Best Practices
    • 6.1 Security
    • 6.2 Idempotency
  • 7. Related Tools
  • 8. Tool Chains
    • 8.1 Resolve, Assign, and Verify
loading...
No Results