braze-api
Version:
Track users, send messages, export data, and more with Braze API.
15 lines • 621 B
TypeScript
import type { UsersExportIdsObject, UsersExportIdsResponse } from './types';
/**
* Users by identifier endpoint.
*
* This endpoint allows you to export data from any user profile by specifying a form of user identifier.
*
* {@link https://www.braze.com/docs/api/endpoints/export/user_data/post_users_identifier/}
*
* @param apiUrl - Braze REST endpoint.
* @param apiKey - Braze API key.
* @param body - Request parameters.
* @returns - Braze response.
*/
export declare function ids(apiUrl: string, apiKey: string, body: UsersExportIdsObject): Promise<UsersExportIdsResponse>;
//# sourceMappingURL=ids.d.ts.map