Get All Records of Zoho CRM by Using PHP Curl

Access Zoho API using PHP Curl Access Zoho API and Fetch all Zoho CRM records after create Zoho Postman Access token and refresh token with create PHP Curl. Fetch Zoho CRM Data using API <?php $url = “https://accounts.zoho.in/oauth/v2/token?refresh_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&client_id=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&client_secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&grant_type=refresh_token”; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); $output […]

PHP cURL download image from URL or remote address

Download file, image from URL by using PHP cURL. How to download an image or save it into the particular directory from a given remote URL by Using PHP cURL. In this post, I explain to you about this. PHP cURL code save the image from URL when you want to copy an image dynamically […]

Integrate Transmitsms SMS API use with PHP cURL

Transmit SMS API use with PHP cURL. Send SMS by using API to retrieve information about messages and campaigns. Below the PHP code for how to use Transmit SMS API. <?php $post = array( ‘to’ => ‘919999******’, ‘from’ => ‘MyFreeOnlineTools’, ‘message’ => ‘Thanks for subscribe with MyFreeOnlineTools. Our Online Free tools help you for work […]