Skip to content

dghathway/braze-capacitor

Repository files navigation

braze-capacitor

Braze interface for ionic capacitor

Install

npm install braze-capacitor
npx cap sync

API

echo(...)

echo(options: { value: string; }) => Promise<{ value: string; }>
Param Type
options { value: string; }

Returns: Promise<{ value: string; }>


initIt(...)

initIt(key: string) => Promise<{ results: any[]; }>
Param Type
key string

Returns: Promise<{ results: any[]; }>


sendJSON(...)

sendJSON(options: { key: string; value: string; }) => Promise<{ value: string; }>
Param Type
options { key: string; value: string; }

Returns: Promise<{ value: string; }>