Project

General

Profile

API - Browsing - Comments

URL: /comentarii/1234/
Method: POST

Code sample:

$api_id = 1;
$api_key = 'testpass';
$hostname = 'https://example.com'; // no trailing slash

# fetch data
$url = '/comentarii/1234/';
$post_data = array(
    'customer_name' => 'John Doe',
    'customer_email' => 'test@example1.com',
    'customer_location' => 'Bucuresti',
    'rating' => 5,
    'comment_pro' => 'Great!',
    'comment_contra' => '',
    'others' => '',
    'reply_notify' => 0
);
$user_token = 'xxx'; // is required here. Get it from Your DB after Token generation
$extra_headers = array(
    'X-API-ID: ' . $api_id,
    'X-API-Hash: ' . md5($api_key . $url. http_build_query($post_data)),
    'X-User-Token: ' . $user_token
);

header('Content-Type: application/json; charset=utf-8');
echo sendRequest($hostname . $url, $post_data, $extra_headers);

Succes message

{
    has_error: false,
    messages: [ ],
    results: {
        request_status: "ok",
        request_message: "" 
    }
}

Error message

{
    has_error: true,
    messages: [
        "Va rugam sa scrieti un comentariu" 
    ],
    results: [ ]
}

Go to top