Este endpoint elimina una Values de una Variable especificada dentro de un rango de tiempo especificado.
Solicitud HTTP
Para eliminar Values de una Variable específica, haz una petición POST a la siguiente URL:
HTTP Method | URL |
---|---|
POST | https://api.netux.com/api/v2.0/variables/<variable_id>/_/values/delete/ |
Parámetros de consulta
Parameter | Type | Use | Description |
---|---|---|---|
token | String | Authentication | Authentication Token can optionally be sent as a query parameter. |
startDate | Long | Required Parameter | Start date in milliseconds |
endDate | Long | Required Parameter | End date in milliseconds |
Cabecera
Parameter | Required? | Description |
---|---|---|
X-Auth-Token | Yes | Authentication Token of account |
curl -X POST 'https://api.netux.com/api/v2.0/variables/<variable_id>/_/values/delete/?startDate=1641067171000&endDate=1643745571000/' \
-H 'X-Auth-Token: oaXBo6ODhIjPsusNRPUGIK4d72bc73'
Respuesta
Devuelve un Task Id del proceso asíncrono.
{
"task": {
"id": "5ebda96e73efc323d89a628c"
}
}
{
"code": 400001,
"message": "Validation Error.",
"detail": {
....
}
}
{
"code": 401001,
"message": "Authentication credentials were not provided.",
"detail": "Authentication credentials were not provided."
}