noketa
v1.2.0
Published
Node.js library for the Noketa API.
Readme
noketa
Official JavaScript/TypeScript SDK for the Noketa API.
Install
bun add noketaUsage
import { Noketa } from "noketa";
const client = new Noketa(process.env.NOKETA_API_KEY!);
await client.profiles.create({
listId: "list_123",
email: "[email protected]",
attributes: {
first_name: "Jane",
last_name: "Doe",
},
});