getById
client.threadSteps.getById(id: string): Promise<ThreadStep>
Get a step by internal ID
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes |
Returns
Promise<ThreadStep>
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.threadSteps.getById('id');
console.log(result);