Workiom
workiomWorkiom allows businesses to create custom workflows, integrate apps, and automate processes, reducing manual overhead and streamlining operations
Acciones disponibles (3)
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 recordWORKIOM_CREATE_RECORDAcciónCreates a new record in a specified workiom list. this tool creates a record with basic field types like text, numbers, dates, and static list items. the record data should be provided as a json object where each key is a field id and the value matches the expected data type for that field.
WORKIOM_CREATE_RECORDAcciónCreates a new record in a specified workiom list. this tool creates a record with basic field types like text, numbers, dates, and static list items. the record data should be provided as a json object where each key is a field id and the value matches the expected data type for that field.
Parámetros de entrada
list_idstringObligatorioThe ID of the list where the record will be created
record_dataobjectObligatorioA JSON object containing the field values for the new record. Each key should be a field ID, and the value should match the expected data type. Supported field types: strings for text, numbers for numeric fields, ISO 8601 date strings for dates, objects with {id, label} for static list items, and arrays of objects for linked records.
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 all listsWORKIOM_GET_ALL_LISTSAcciónGet all lists from a workiom workspace. this action fetches all available lists in a workiom workspace. it's a fundamental tool that serves as a prerequisite for most other operations (like creating records, which require a list id). the action supports pagination and can optionally include field definitions for each list.
WORKIOM_GET_ALL_LISTSAcciónGet all lists from a workiom workspace. this action fetches all available lists in a workiom workspace. it's a fundamental tool that serves as a prerequisite for most other operations (like creating records, which require a list id). the action supports pagination and can optionally include field definitions for each list.
Parámetros de entrada
page_sizeintegerNumber of lists to return per page
page_numberintegerPage number for pagination
workspace_idstringObligatorioThe ID of the workspace to fetch lists from
include_fieldsbooleanWhether to include field definitions for each list
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 recordsWORKIOM_GET_RECORDSAcciónRetrieves records from a specified list in workiom. this tool fetches records from a specified list with optional filtering, sorting, and pagination capabilities. the response includes the records along with summary information and total count.
WORKIOM_GET_RECORDSAcciónRetrieves records from a specified list in workiom. this tool fetches records from a specified list with optional filtering, sorting, and pagination capabilities. the response includes the records along with summary information and total count.
Parámetros de entrada
filtersobject[]Array of filter objects to filter the records
list_idstringObligatorioThe ID of the list to fetch records from
sortingstringField ID and direction for sorting (e.g., '11284 ASC' or '11284 DESC')
skip_countintegerNumber of records to skip (for pagination)
max_result_countintegerNumber of records to return per page (for pagination)
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