Databox
databoxConnect your data from any tool and track it from any device. Build and share reports, monitor trends, and discover insights.
Acciones disponibles (7)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create DatasetDATABOX_CREATE_DATASETAcciónTool to create a new dataset in Databox data source. Use when you need to initialize a dataset with a title, data source ID, and primary keys for unique record identification.
DATABOX_CREATE_DATASETAcciónTool to create a new dataset in Databox data source. Use when you need to initialize a dataset with a title, data source ID, and primary keys for unique record identification.
Parámetros de entrada
titlestringObligatorioName of the dataset.
primaryKeysstring[]ObligatorioArray of field names used to uniquely identify records in the dataset. Each record must have unique values for these fields.
dataSourceIdintegerObligatorioID of the parent data source. This identifies which data source the dataset belongs to.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create Data SourceDATABOX_CREATE_DATA_SOURCEAcciónTool to create a new data source in Databox. Use when you need to create a logical container for datasets within a Databox account. Requires accountId, title, and timezone parameters.
DATABOX_CREATE_DATA_SOURCEAcciónTool to create a new data source in Databox. Use when you need to create a logical container for datasets within a Databox account. Requires accountId, title, and timezone parameters.
Parámetros de entrada
titlestringObligatorioA descriptive name for the data source (e.g., 'ERP System', 'Test Data Source').
timezonestringObligatorioThe timezone for the data source in standard format. Available timezones can be retrieved via GET /v1/timezones. Common values include 'UTC', 'America/New_York', 'Europe/London'.
accountIdintegerObligatorioThe unique identifier of the Databox account where the data source will be created.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete DatasetDATABOX_DELETE_DATASETAcciónTool to delete a dataset by ID in Databox. Use when you need to permanently remove a dataset. This operation is irreversible.
DATABOX_DELETE_DATASETAcciónTool to delete a dataset by ID in Databox. Use when you need to permanently remove a dataset. This operation is irreversible.
Parámetros de entrada
datasetIdstringObligatorioThe unique identifier of the dataset to delete in UUID format. This operation permanently removes the dataset and is irreversible.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Data SourceDATABOX_DELETE_DATA_SOURCEAcciónTool to delete a data source by ID in Databox. Use when you need to permanently remove a data source. This operation is irreversible and will delete all associated datasets.
DATABOX_DELETE_DATA_SOURCEAcciónTool to delete a data source by ID in Databox. Use when you need to permanently remove a data source. This operation is irreversible and will delete all associated datasets.
Parámetros de entrada
dataSourceIdintegerObligatorioThe unique identifier of the data source to delete. This operation is permanent and irreversible.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Dataset Ingestion StatusDATABOX_GET_DATASET_INGESTION_STATUSAcciónTool to check the status of a specific data ingestion for a dataset. Use when you need to verify whether a data ingestion was successful by providing the dataset ID and ingestion ID returned from the initial POST request.
DATABOX_GET_DATASET_INGESTION_STATUSAcciónTool to check the status of a specific data ingestion for a dataset. Use when you need to verify whether a data ingestion was successful by providing the dataset ID and ingestion ID returned from the initial POST request.
Parámetros de entrada
datasetIdstringObligatorioThe unique identifier of the dataset (e.g., '06feef1f-460d-49a1-b296-3e6c73511358').
ingestionIdstringObligatorioThe unique identifier returned from the data ingestion request (e.g., '8f0e9bba-f11b-46ae-8f60-8ff3ea878be9').
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List AccountsDATABOX_LIST_ACCOUNTSAcciónTool to retrieve all Databox accounts accessible to the authenticated user. Use to identify account IDs required for subsequent API operations like data source creation.
DATABOX_LIST_ACCOUNTSAcciónTool to retrieve all Databox accounts accessible to the authenticated user. Use to identify account IDs required for subsequent API operations like data source creation.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Push Data to Dataset (V1)DATABOX_PUSH_DATA_V1AcciónTool to push data points to a Databox dataset using the v1 API. Use when you need to ingest data records into a specific dataset by providing the dataset ID and an array of records matching the dataset schema.
DATABOX_PUSH_DATA_V1AcciónTool to push data points to a Databox dataset using the v1 API. Use when you need to ingest data records into a specific dataset by providing the dataset ID and an array of records matching the dataset schema.
Parámetros de entrada
recordsobject[]ObligatorioCollection of data records to ingest. Each record's structure depends on your dataset schema and must include all primary key fields defined during dataset creation.
datasetIdstringObligatorioThe unique identifier of the target dataset (UUID format).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not