<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>
'{\'authtoken\':"1000.f103c17ac631e5980a581e6f339e34b8.74368abf5fe03e42c75519fe3068d490",\'JSONString\':\'{"contact_name":"A G ENTERPRISES","company_name":"A G ENTERPRISES","website":"","language_code":"en","contact_type":"customer","customer_sub_type":"business","credit_limit":30,"opening_balance_amount":0,"gst_treatment":"business_gst","note":"Exported from ExpandX ERP","gst":"","shipping_address":{"attention":"A G ENTERPRISES","address":"4-7-236, OPP. SUNDAY MARKET NTPC JYOTHINAGAR, (M) RAMAGUNDAM, DIST. KARIMNAGAR - 505215 (T.S.)","state_code":"Andh","country_code":"IN","city":"KARIMNAGAR","zip":"505215"},"billing_address":{"attention":"A G ENTERPRISES","address":"4-7-236, OPP. SUNDAY MARKET NTPC JYOTHINAGAR, (M) RAMAGUNDAM, DIST. KARIMNAGAR - 505215 (T.S.)","state_code":"Andh","country_code":"IN","city":"KARIMNAGAR","zip":"505215"},"contact_persons":[{"salutation":"","first_name":"MR. MOHD CHAND PASHA","email":"ag.adasdad@gmail.com","mobile":"919912411588","phone":"","designation":""}]}\',\'organization_id\':\'60016783635\'}',
CURLOPT_HTTPHEADER => array(
'Content-Type: text/plain',
'Cookie: JSESSIONID=616041AF2832144611CA4B7F382D46D5; _zcsr_tmp=21d6c607-e43c-49dc-8287-848e5db43d04; ba05f91d88=200c3b2347209fe33d011f18576361ce; zbcscook=21d6c607-e43c-49dc-8287-848e5db43d04'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;