//native
type Greip = {
apiKey: string;
};
/**
* Prevent financial losses by deploying AI-Powered modules
* Prevent financial losses and protect your business by deploying AI-powered modules that analyze transaction patterns in real-time.
This method helps identify and block suspicious activities, mitigating the risk of fraudulent payments and ensuring a secure experience for both you and your customers.
*/
export async function main(
auth: Greip,
body: {
data?: {};
format?: string;
mode?: string;
userID?: string;
callback?: string;
},
) {
const url = new URL(`https://greipapi.com/scoring/payment`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.apiKey,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.text();
}
Submitted by hugo697 428 days ago