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\NutritionAssistant;

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

$customerData = [
    // the customer data in JSON format.
];

$response = $client->getMacro($customerData);
print_r($response);

$caloriesAndMacros = [
    // the calories and macros data in JSON format.
];

$response = $client->getFoodList($caloriesAndMacros);
print_r($response);

$foodData = [
    // the food data in JSON format.
];

$response = $client->getRecipes($foodData);
print_r($response);



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);



use Tidycode\AIClient\NutritionAssistant;

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

$customerData = [
    // the customer data in JSON format.
];

$response = $client->getMacro($customerData);
print_r($response);

$caloriesAndMacros = [
    // the calories and macros data in JSON format.
];

$response = $client->getFoodList($caloriesAndMacros);
print_r($response);

$foodData = [
    // the food data in JSON format.
];

$response = $client->getRecipes($foodData);
print_r($response);
bash
composer 
bash
composer