NAiOS IconNAiOS Logo
Volver al catálogo

Workiom

workiom

Workiom allows businesses to create custom workflows, integrate apps, and automate processes, reducing manual overhead and streamlining operations

Acciones
3
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

Creates 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_idstringObligatorio

    The ID of the list where the record will be created

  • record_dataobjectObligatorio

    A 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

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get all listsWORKIOM_GET_ALL_LISTSAcción

Get 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_sizeinteger

    Number of lists to return per page

  • page_numberinteger

    Page number for pagination

  • workspace_idstringObligatorio

    The ID of the workspace to fetch lists from

  • include_fieldsboolean

    Whether to include field definitions for each list

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get recordsWORKIOM_GET_RECORDSAcción

Retrieves 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_idstringObligatorio

    The ID of the list to fetch records from

  • sortingstring

    Field ID and direction for sorting (e.g., '11284 ASC' or '11284 DESC')

  • skip_countinteger

    Number of records to skip (for pagination)

  • max_result_countinteger

    Number of records to return per page (for pagination)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not