Project

General

Profile

API - Account - Change password

URL: /account/change-password/
Method: POST

Code sample:

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

# fetch data
$url = '/account/change-password/';
$post_data = array(
    'change_password' => 1,
    'password' => 'oldpass',
    'newpassword' => 'newpass',
    'newpasswordretype' => 'newpass'
);
$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: [
        "Parola veche nu corespunde." 
    ],
    results: [ ]
}

Go to top