UNPKG

braze-api

Version:

Track users, send messages, export data, and more with Braze API.

15 lines 563 B
import type { UsersIdentifyObject } from './types'; /** * Identify users. * * Use this endpoint to identify an unidentified (alias-only) user. * * {@link https://www.braze.com/docs/api/endpoints/user_data/post_user_identify/} * * @param apiUrl - Braze REST endpoint. * @param apiKey - Braze API key. * @param body - Request parameters. * @returns - Braze response. */ export declare function identify(apiUrl: string, apiKey: string, body: UsersIdentifyObject): Promise<import("../common/request").ServerResponse>; //# sourceMappingURL=identify.d.ts.map