Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.threadify.dev/llms.txt

Use this file to discover all available pages before exploring further.

Joining

// With invitation token (accessLevel comes from the invite)
const thread = await connection.join(invitationToken);

// Direct join (internal services; accessLevel defaults to participant)
const thread = await connection.join('thread-uuid', 'logistics');

Parameters

ParameterTypeDescription
tokenOrThreadIdstringInvitation token or thread ID
rolestringBusiness/contract role (required for direct join only, e.g., "logistics", "supplier")

Thread Properties

PropertyTypeDescription
idstringThread ID
myRolestringYour assigned role
myAccessLevelstringYour access level
contractNamestringContract name
statusstringThread status

Next Steps

Managing Access

Manage thread participants and permissions

Data Retrieval

Query thread data across participants