How to get the cURL or PHP cURL codes from Postman to implement them through PHP?

How to get the cURL or PHP cURL codes from Postman to implement them through PHP?

Once the Postman Collection setup is completed, please follow the below steps to know how to get the Curl or PHP Curl codes.

1. Select the API for which you require the code in the left corner and click on 'Code' in the right corner.



2. 'Generate code snippets' dialog box pops-up. Choose the required language from the drop-down box and get the code.



3. The obtained Curl or PHP Curl code can be implemented via PHP.

    • Related Articles

    • Samples Codes - PHP SDK

      All of Zoho CRM's APIs can be used through the PHP SDK, to enable your custom application to perform data sync to the best degree. Here are the sample codes for all the API methods available in our SDK. Rest Client Operations These methods involve ...
    • Configuration - PHP SDK

      To access the CRM services through SDK, the client application must be first authenticated. This can be done by passing a key-value configuration pair to the initialization process. The $configuration array must be created. It will contain the ...
    • Installation - PHP SDK

      Install Composer(if not installed) Run this command to install the composer curl -sS  https://getcomposer.org/installer  | php To install composer on mac/ linux machine: https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx To install ...
    • PHP SDK - An Overview

      PHP SDK offers a way to create client PHP applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use the ...
    • Initialization - PHP SDK

      The app would be ready to be initialized after defining the configuration array. The user can now proceed to generate the required tokens to run the app. The generation of the grant token can be done using two methods. Self-Client Redirection-based ...