Remove Devices

Last Updated on : 2024-06-29 00:34:21download

Remove the specified devices from the group based on the group ID.

API address

DELETE: /v2.1/cloud/thing/group/{group_id}/devices

Request parameter

Parameter nameTypeINRequiredDescription
group_idLongpathtrueThe group ID.

Description of body

Parameter nameTypeINRequiredDescription
device_idsListbodytrueThe list of up to 20 device IDs.

Return parameter

Parameter nameTypeDescription
resultJsonObjectThe returned result of the specified group.
successBooleanIndicates whether the API is called successfully. Valid values:
  • true: The API call succeeded.
  • false: The API call failed.
tLongThe timestamp.
tidStringThe link ID.

Description of result

Parameter nameTypeDescription
group_idLongThe group ID.
group_nameStringThe name of the specified group.
space_idStringThe ID of the space to which the specified group belongs.
icon_urlStringThe icon of the specified group. A product picture is used by default.
create_timeLongThe time when a group is created.
update_timeLongThe time when a group is updated.
task_idStringThe task ID.
task_typeIntegerThe type of tasks. Valid values:
  • 1: Add. For example, create a group.
  • 2: Update. For example, add a device to a group or remove a device from a group.
  • 3: Delete. For example, delete a group.
task_expire_secondLongThe number of seconds after which the task will expire. Do not modify the relationship between the group and the devices until the task is completed.

Request example

DELETE: /v2.1/cloud/thing/group/1393****/devices
{
  "device_ids": [
    "vdevo17059988490****"
  ]
}

Return example

{
    "tid": "e6023502021b11efbe7a366d87620758",
    "result": {
        "icon_url": "https://images.tuyacn.com/smart/solution/142004/6739766484****.png",
        "create_time": 1713944884506,
        "group_name": "testUpdateGroup****",
        "task_id": "178306346344309****",
        "update_time": 1713948182799,
        "group_id": "1393****",
        "task_expire_second": 7,
        "task_type": 2,
        "space_id": "16702****"
    },
    "t": 1713950432088,
    "success": true
}

Error code

For more information, see error code.

Limits on API Request Frequency

For more information, see Limits on API Request Frequency.