Deleting Data

Deleting Data

DEL - https://api.tago.io/data
Headers:
Authorization: Your device token.

Optional Query Strings

KEY
TYPE
DESCRIPTION
query
stringpre-defined by Tago

qty
string
Maximum number of data to be returned
start_date
string
Start date
end_date
stringend date
variable
stringFilter by Variable




To delete data, TagoIO uses the same query string used to get data, for more details about each query, see here.

Below, we will show some examples of DELETING data using query string.

Examples:

Deleting the last 99 items from the variable temperature.
https://api.tago.io/data?variable=temperature&qty=99

Tip: Make sure your request is DELETE and not POST when trying to delete items. Note that posting data is relatively instantaneous while deleting data can take between 10 and 30 seconds to complete.

Deleting the last item from the variable temperature. https://api.tago.io/data?variable=temperature&query=last_item

Deleting the last value from the variable temperature (requires the 'value' attribute on the variable object).
https://api.tago.io/data?variable=temperature&query=last_value

Deleting the last location from the variable temperature (requires 'location' attribute on the variable object).
https://api.tago.io/data?variable=temperature&query=last_location

Deleting by period.
https://api.tago.io/data?variable=temperature&start_date=2014-12-25&end_date=2014-12-26

Deleting the last value from an array of variables.
https://api.tago.io/data?variable[]=temperature&variable[]=pressure&query=last_value


When executing requests to TagoIO, you will have a limit on the number of requests that can be made during a certain time period. Read more about our Rate Limits.


    • Related Articles

    • Device data management

      The device page provides tools for visualizing, filtering, editing, and exporting variables, facilitating the management of data received by your device. You can access these tools by navigating to the Device module, selecting a device, and clicking ...
    • Deleting Your Account

      If you need to cancel your account, go to 'Account Settings' by accessing My Account. Then, within the tab 'More', you will find the 'delete my account' button. We will delete your account, including all your profiles, and then we will confirm by ...
    • Data Export

      At TagoIO, you have multiple options for exporting data. You can export device data directly from the Admin panel on your device's page, through the API, or directly from Widgets in either the Admin panel or the TagoRun portal. Exporting data will ...
    • Getting Data

      HEADERS: Authorization: Your-Device-Token GET - https://api.tago.io/data QUERYSTRINGS: KEY TYPE DESCRIPTION variable string || array Get variables query string pre-defined by Tago qty string Maximum number of data to be returned. start_date string ...
    • Data Records

      Data Record is related to the variables that are stored and fed by the devices. Each register is composed of a variable and all metadata associated with it. The data record limit will define the maximum storage capacity for the selected Profile at ...