braze-api
Version:
Track users, send messages, export data, and more with Braze API.
18 lines • 698 B
TypeScript
import type { SendsIdCreateObject } from './types';
/**
* Create send IDs for message send tracking.
*
* Braze’s Send Identifier adds the ability to send messages and track message performance entirely programmatically, without campaign creation for each send.
*
* {@link https://www.braze.com/docs/api/endpoints/messaging/send_messages/post_create_send_ids/}
*
* @param apiUrl - Braze REST endpoint.
* @param apiKey - Braze API key.
* @param body - Request parameters.
* @returns - Braze response.
*/
export declare function create(apiUrl: string, apiKey: string, body: SendsIdCreateObject): Promise<{
message: string;
send_id: string;
}>;
//# sourceMappingURL=create.d.ts.map