@sumsub/fisherman
Version:
The Sumsub Fisherman is a powerful tool that helps developers integrate fraud detection capabilities into their applications. With Fisherman, you can easily identify and prevent fraudulent activities within your system, providing a safer and more secure e
9 lines (8 loc) • 461 B
TypeScript
import type { BehavioralMetadataEvent, FpRequestPayload } from '../types';
export declare function post(data: BehavioralMetadataEvent[], token: string, baseUrl: string, path: string, onload: (status: number, data: BehavioralMetadataEvent[]) => void): Promise<void>;
export declare function sendFpRequestPayload({ payload, token, baseUrl, path, }: {
payload: FpRequestPayload;
token: string;
baseUrl: string;
path: string;
}): Promise<Response>;