This API is used to update the display name of the device.

PUT /api/v2/devices/{resource_id}


OAuth Scope

ZohoAssist.unattended.computer.UPDATE


Headers

  • Headers
    Data Type
    Description
  • x-com-zoho-assist-department-id *
    Long
    Required
    The department id for which the devices list is requested.
  • source
    String
    Optional
    The source from which the request is made.

Query Params

  • Parameters
    Data Type
    Description
  • display_name
    String
    Required
    New Display Name

Update Unattended Computer

Copiedcurl --location --request PUT 'https://assist.zoho.com/api/v2/devices/2750***********' \
--header 'Accept: application/json, text/plain, */*' \
--header 'x-com-zoho-assist-orgid: 7436***' \
--header 'x-com-zoho-assist-department-id: 2750***********' \
--header 'Content-Type: application/json' \
--data '{
    "display_name": "Malcolm's device"
}'
CopiedHTTP/1.1 200 OK