Actualizar campos de un Device Group

Este endpoint actualiza los campos de un Device Group especificados en el cuerpo.

Solicitud HTTP

Para actualizar uno o más atributos específicos de un Device Group, haz una petición PATCH a la siguiente URL:

HTTP MethodURL
PATCHhttps://api.netux.com/api/v2.0/device_groups/<device_group_key>/

Parámetros de ruta

ParameterTypeDescription
device_group_keyStringThe API label of the Device Group

Parámetros de consulta

ParameterTypeUseDescription
tokenStringAuthenticationAuthentication Token can optionally be sent as a query parameter.

Parámetros de cuerpo

ParameterTypeRequired?Default ValueDescription
labelStringYesN/A (required)The API label of Device Group
nameStringNoSame as labelName of the Device Group
organizationObjectNonullOrganization of Device Group

Cabecera

ParameterRequired?Description
X-Auth-TokenYesAuthentication Token of account
$ curl -X PATCH 'https://api.netux.com/api/v2.0/device_groups/<device_group_key>' \
 -H 'Content-Type: application/json' \
 -H 'X-Auth-Token: oaXBo6ODhIjPsusNRPUGIK4d72bc73' \
 -d '{
    "url": "https://api.netux.com/api/v2.0/device_groups/5e1dd45a89f9bd7c4e7f1dff",
    "id": "5e1dd45a89f9bd7c4e7f1dff",
    "label": "elnuevogrupolabelytales",
    "name": "elnuevoGrupoYTales",
    "organization": {
        "url": "https://api.netux.com/api/v2.0/organizations/5e1dc90489f9bd7c4e7f1de0",
        "_deprecated_id": 6,
        "id": "5e1dc90489f9bd7c4e7f1de0",
        "label": "my-first-customer",
        "name": "My First Customer"
    },
    "devices": "https://api.netux.com/api/v2.0/device_groups/5e1dd45a89f9bd7c4e7f1dff/devices",
    "devicesNumber": 1,
}'

Respuesta

Devuelve un objeto Device Group con el Device Group actualizado.

{
    "url": "https://api.netux.com/api/v2.0/device_groups/5e1dd45a89f9bd7c4e7f1dff",
    "id": "5e1dd45a89f9bd7c4e7f1dff",
    "label": "elnuevogrupolabelytales",
    "name": "elnuevoGrupoYTales",
    "organization": {
        "url": "https://api.netux.com/api/v2.0/organizations/5e1dc90489f9bd7c4e7f1de0",
        "_deprecated_id": 6,
        "id": "5e1dc90489f9bd7c4e7f1de0",
        "label": "my-first-customer",
        "name": "My First Customer"
    },
    "devices": "https://api.netux.com/api/v2.0/device_groups/5e1dd45a89f9bd7c4e7f1dff/devices",
    "devicesNumber": 1,
    "createdAt": "2020-01-14T14:46:50.708394Z"
}
{
    "code": 400001,
    "message": "Validation Error.",
    "detail": {
        ....
    }
}
{
    "code": 401001,
    "message": "Authentication credentials were not provided.",
    "detail": "Authentication credentials were not provided."
}