PHP code example of tidycode / ai-php-sdk

1. Go to this page and download the library: Download tidycode/ai-php-sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tidycode / ai-php-sdk example snippets




use Tidycode\AIClient\FraudDetection;

$client = new FraudDetection('your-api-key');

$orderData = [
    // the order data in JSON format.
];

$response = $client->detectFraud($orderData);
print_r($response);

$response = $client->reportFalsePositive($orderData);
print_r($response);

$response = $client->reportFalseNegative($orderData);
print_r($response);

$paymentCodes = $client->paymentList();
print_r($paymentCodes);

$shipmentCodes = $client->shipmentList();
print_r($shipmentCodes);



use Tidycode\AIClient\FraudDetection;

$client = new FraudDetection('your-api-key');

$orderData = [
    // i dati dell'ordine in formato JSON
];

$response = $client->detectFraud($orderData);
print_r($response);

$response = $client->reportFalsePositive($orderData);
print_r($response);

$response = $client->reportFalseNegative($orderData);
print_r($response);

$paymentCodes = $client->paymentList();
print_r($paymentCodes);

$shipmentCodes = $client->shipmentList();
print_r($shipmentCodes);
bash
composer 
bash
composer