=> Download
{
"accountname" : "משה",
"telephone1" : "036339060",
"idnumber" : "1234",
"billingcity" : "תל אביב"
}
=> Download
$data = '{
"accountname" : "משה",
"telephone1" : "036339060",
"idnumber" : "1234",
"billingcity" : "תל אביב"
}';
$url='https://api.powerlink.co.il/api/record/account'
$data_string = json_encode($data);
$curl = curl_init();
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'tokenid: xxxxx-xxxx-xxxxx-xxxxx',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($curl);
curl_close($curl);
=> Download
import requests
import json
data = {
"accountname" : "משה",
"telephone1" : "036339060",
"idnumber" : "1234",
"billingcity" : "תל אביב"
}
url = 'https://api.powerlink.co.il/api/record/account'
token_id = 'xxxxxxx-xxxxx-xxxxx-xxxxx'
headers = {'Content-type': 'application/json', 'tokenId': token_id}
response = requests.post(url, data=str(data), headers=headers)
return json.loads(response.content)['data']['Record']
=> Download
using System.Collections.Specialized;
using System.Net;
using System.Web.Script.Serialization;
using System.IO;
using (WebClient client = new WebClient())
{
string tokenid = "xxxxxxx-xxxxx-xxxxx-xxxxx";
client.Headers.Set("tokenId", tokenid);
client.Encoding = System.Text.Encoding.UTF8;
string json = new JavaScriptSerializer().Serialize(new
{
accountname = "משה",
telephone1 = "036339060",
idnumber = "1234",
billingcity = "תל אביב"
});
string result = client.UploadString("https://api.powerlink.co.il/api/record/account", "POST", json);
}