Calls

List Calls

List workflow calls with filtering and pagination.

Returns calls created via POST /v3/workflows/{workflowName}/call.

Filtering

  • callIDs: Specific call identifiers
  • referenceIDs: Your custom reference IDs
  • workflowIDs / workflowNames: Filter by workflow
  • functionIDs / functionNames: Filter by function (function calls only)
  • callTypes: Restrict to workflow calls or to function calls

Pagination

Use startingAfter and endingBefore cursors with a default limit of 50.

get/v3/calls

Query parameters

limitinteger
callIDsstring[]
workflowIDsstring[]
workflowNamesstring[]
referenceIDsstring[]
functionIDsstring[]

Filter by function API ID. Only matches function calls — workflow calls carry no function reference of their own.

functionNamesstring[]

Filter by function name. Only matches function calls.

callTypesstring[]

Filter by call type. Omit to return every call regardless of type.

statusesstring[]

Filter by one or more statuses.

referenceIDSubstringstring

Case-insensitive substring match against callReferenceID.

sortOrder'asc' | 'desc'
startingAfterstring
endingBeforestring

Response

The request has succeeded.

totalCountinteger

The total number of results available.

errorstring

Error message if the calls listing failed.

Changes