Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 361 Bytes

USAGE.md

File metadata and controls

21 lines (16 loc) · 361 Bytes
import { Orq } from "@orq-ai/node";

const orq = new Orq({
  apiKey: process.env["ORQ_API_KEY"] ?? "",
});

async function run() {
  const result = await orq.contacts.create({
    externalId: "<id>",
  });

  // Handle the result
  console.log(result);
}

run();