create
client.threadSteps.create(data: CreateStepRequest): Promise<ThreadStep>
Create a new step
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
data | CreateStepRequest | Yes |
Returns
Promise<ThreadStep>
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.threadSteps.create(/* CreateStepRequest */);
console.log(result);