Name: {name}
Translator since: {translator_since}
From: {from}
Collaboration with you: {collaboration}
{about}
{fieldofexpertise}
 {name}

Nativy Connect

nativy translations
Description Returns true if an user with that email address exists, otherwise false.
You may use this method in your application before creating users (/user POST) to check if the user already exists in your sign up form.
URL /connect/user/{email}

Parameters
nativy_partner_api_key (required) string The public API key of the nativy partner account.
Only nativy partners are allowed to create or update users, please contact us if you need to create users from your application. (Details: Authentication)
nativy_partner_timestamp (required) string The current UTC timestamp (seconds from 1/1/1970 until UTC now). (Details: Authentication)
nativy_partner_api_sign (required) string The timestamp encoded with HMAC SHA1 in use of the private key. (Details: Authentication)

Example call

	            $url = 'https://webapp.nativy.com/connect/user/';
			    $nativy_partner_api_key = 'iQU5lBuEjYFax2EU23>dp*u02K^Bmie6d}pg-pU^MZ&%mobYM&x7SHY+41u7PHEh';
			    $nativy_partner_private_key = '4i2j_F|=lUqNmxPMxtxsX-veXJ)a+w(hq[_J&(w{P4[jyT&)ft*Usp3K%B_jv{tP';
			    $nativy_partner_timestamp = gmdate('U');
			    $hmac = hash_hmac('sha1', $nativy_partner_timestamp, $nativy_partner_private_key);
			    $email = 'kerschbaummayr@nativy.com';
			 
			    $url = $url
					    . urlencode($email)
			            . '?nativy_partner_api_key=' . urlencode($nativy_partner_api_key) 
			            . '&nativy_partner_api_sign=' . urlencode($hmac) 
			            . '&nativy_partner_timestamp=' . urlencode($nativy_partner_timestamp);
			 
			    $ch = curl_init($url); 
			 
			    curl_setopt($ch, CURLOPT_URL, $url); 
			    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
			    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
			    $response = curl_exec($ch);
			    curl_close($ch);
			 
			    echo ($response);        
            

Return values

"true" if the user exists, otherwise "false".