REST Resources

/api/space/device-management/devices/{deviceid}/customized-attribute-values/{id}

The following operations are supported on this resource:

  • GET - Get Customized Attribute Value
  • PUT - Edit Customized Attribute Values
  • DELETE - Delete Customized Attribute Value
GET /devices/{deviceid}/customized-attribute-values/{id}Version 3

Get Customized Attribute Value.

Sample Usage

GET /devices/{deviceid}/customized-attribute-values/{id}


  • Parameters:
    NameTypeURI TypeDescriptionRequired
    deviceidIntegerPathDeviceid Y
    idIntegerPathID Y
  • Sample Output XML:
    <customized-attribute-value uri="/api/space/device-management/devices/2228251/customized-attribute-values/2752688">
         <id>2752688</id>
         <value>Ex_Device</value>
         <customized-attribute-label
               href="/api/space/tag-management/customized-attribute-labels/229918" >
               <id>229918</id>
               <name>Device Alias</name>
         </customized-attribute-label>
    </customized-attribute-value>

  • Sample Output JSON:
    {
       "customized-attribute-value" : {
         "@uri" : "/api/space/device-management/devices/2228251/customized-attribute-values/2752688",
         "id" : 2752688 ,
         "value" : "Ex_Device" ,
         "customized-attribute-label" : {
           "@href" : "/api/space/tag-management/customized-attribute-labels/229918" ,
           "id" : 229918 ,
           "name" : "Device Alias"
         }
       }
    }

  • Access Control

    The following capabilities are required to access this API: ManageLabelsCap

    PUT /devices/{deviceid}/customized-attribute-values/{id}Version 3

    Edit Customized Attribute Values.

    Sample Usage

    PUT /devices/{deviceid}/customized-attribute-values/{id}


    • Parameters:
      NameTypeURI TypeDescriptionRequired
      deviceidIntegerPathDeviceid Y
      idIntegerPathID Y
  • Sample Input XML:
    <customized-attribute-value>
         <value>Switch</value>
         <customized-attribute-label href="/api/space/tag-management/customized-attribute-labels/229918"/>
    </customized-attribute-value>

  • Sample Output XML:
    <customized-attribute-value uri="/api/space/device-management/devices/2228241/customized-attribute-values/2261151">
         <id>2261151</id>
         <value>Switch</value>
         <customized-attribute-label
               href="/api/space/tag-management/customized-attribute-labels/229918">
               <id>229918</id>
               <name>Device Alias</name>
         </customized-attribute-label>
    </customized-attribute-value>

  • Sample Input JSON:
    {
       "customized-attribute-value" : {
         "value" : "Switch" ,
         "customized-attribute-label" : {
           "@href" : "/api/space/tag-management/customized-attribute-labels/229918"
         }
       }
    }

  • Sample Output JSON:
    {
       "customized-attribute-value" : {
         "@uri" : "/api/space/device-management/devices/2228241/customized-attribute-values/2261151" ,
         "id" : 2261151 ,
         "value" : "Switch" ,
         "customized-attribute-label" : {
           "@href" : "/api/space/tag-management/customized-attribute-labels/229918" ,
           "id" : 229918 ,
           "name" : "Device Alias"
         }
       }
    }

  • Access Control

    The following capabilities are required to access this API: ManageLabelsCap

    DELETE /devices/{deviceid}/customized-attribute-values/{id}Version 3

    Delete Customized Attribute Value.

    Sample Usage

    DELETE /devices/{deviceid}/customized-attribute-values/{id}


    • Parameters:
      NameTypeURI TypeDescriptionRequired
      deviceidIntegerPathDeviceid Y
      idIntegerPathID Y

    Access Control

    The following capabilities are required to access this API: ManageLabelsCap