Workiom

Learn how to use Workiom with Composio

Overview

Enum

WORKIOM

Description

Workiom provides APIs for automating workflows, integrating with various tools, and building custom applications.

Authentication Details

api_key
stringRequired

Actions

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.

Action Parameters

list_id
stringRequired
record_data
objectRequired

Action Response

data
object
successful
boolean
error

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.

Action Parameters

workspace_id
stringRequired
page_size
integerDefaults to 50
page_number
integerDefaults to 1
include_fields
booleanDefaults to True

Action Response

data
object
successful
boolean
error

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.

Action Parameters

list_id
stringRequired
max_result_count
integer
skip_count
integer
sorting
string
filters
array

Action Response

data
object
successful
boolean
error