Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.14 KB

init.md

File metadata and controls

47 lines (36 loc) · 1.14 KB
description layout
Initialize the Airstack NodeJS SDK with Airstack API key. This is required to call the Airstack API.
title description tableOfContents outline pagination
visible
true
visible
true
visible
true
visible
visible
true

init

Pre-requisites

Example

import { init } from "@airstack/node";

init("YOUR_AIRSTACK_API_KEY", "dev");

Function Signature

function init(
  key: string,
  env?: "dev" | "prod"
): void

Params

Param Type Default Value Description
key string Airstack API key
env dev | prod dev dev provides verbose logging. prod provides minimal logging, best for production environment.