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

Nativy Connect

nativy translations
Description Invokes a review for a specific textblock (identified by text_to_key parameter). The user has to comment the textblock, so our translator knows what went wrong. After the textblock was reviewed, an automated post to your callbacklink (specified by you in /order POST) with orderid and text_to_key parameters will be made by nativy.
URL /connect/order/{orderid}/review/{text_to_key}

Parameters
api_key (required) string The public API key of the user. (Details: Authentication )
timestamp (required) string The current UTC timestamp (seconds from 1/1/1970 until UTC now). (Details: Authentication )
api_sign (required) string The timestamp encoded with HMAC SHA1 in use of the private key. (Details: Authentication )
orderid (required) string The unique id of the order (GUID transformed string).
text_to_key (required) string The key of the text_to element that should be reviewed.
comment (required) string The user has to give a reason why he didn't accept the translation of this text block.

Example call

                $url = 'http://www.nativytest.com/connect/order';
        	    $api_key = 'iQU5lBuEjYFDx2EU2o>bp*202K^Bmie3d}pg-pU^MZ&%mobYM&x7SHY+41u7PHEh';
        	    $private_key = '4i2j_F|=lUqNTxPMxtxsX-veXJ)i+w(hq[_J&(k{Pn[jyT&)xt*Usp3K%B_jv{tP';
        	    $timestamp = gmdate('U');
	            $hmac = hash_hmac('sha1', $timestamp, $private_key); 
	            $orderid = 'AEA59427-5130-2DFC-8CBB-5E9D88BF6659';
	            $text_to_key = 'about_text';
	            $comment = 'Please check grammar in sentence 2.';
	        
	            $url = $url 
	        		    . '/' . $orderid . '/review/' . urlencode($text_to_key)
	        		    . '?api_key=' . urlencode($api_key) 
	        		    . '&api_sign=' . urlencode($hmac) 
	        		    . '×tamp=' . urlencode($timestamp)
	        		    . '&comment=' . urlencode($comment);

	            $ch = curl_init($url); 
	        
	            curl_setopt($ch, CURLOPT_URL, $url); 
	            curl_setopt($ch, CURLOPT_PUT, 1);
	            $response = curl_exec($ch);
	            curl_close($ch);

        	    echo ($response);
            

No return parameters (check for HTTP 200 OK after your request).