POST
/
api
/
workers
/
{workerId}
/
flows
import BrainbaseLabs from 'brainbase-labs';

const client = new BrainbaseLabs({
  apiKey: process.env['BRAINBASE_LABS_API_KEY'], // This is the default and can be omitted
});

async function main() {
  const flow = await client.workers.flows.create('workerId', {
    code: 'code',
    label: 'label',
    name: 'name',
    validate: 'validate',
  });

  console.log(flow.id);
}

main();
{
  "id": "<string>",
  "version": 123,
  "name": "<string>",
  "label": "<string>",
  "code": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "workerId": "<string>",
  "variables": {}
}

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required

Body

application/json

Response

201
application/json

Flow created

The response is of type object.