Register your application - PHP SDK
All
the Zoho CRM APIs are authenticated with OAuth2 standards, so it is
mandatory to register and authenticate your client app with Zoho.
To register:
- Go to the site: accounts.zoho.com/developerconsole
Click Add Client ID.
- Enter the Client Name, Client Domain and Authorized Redirect URL.
Select the Client Type as Web based.
- Click Create.
- Your Client app would have been created and displayed by now.

- The newly registered app's Client ID and Client Secret can be found by clicking
→ Edit.
Registered applications will receive the following credentials:
Client id – The consumer key generated from the connected app.
Client Secret – The consumer secret generated from the connected app.
Redirect URI – The Callback URL that you registered during the app registration.
SEE ALSO
Release Notes
Related Articles
Release Notes - PHP SDK
ZOHO CRM/PHP SDK 2.0.1 Install command composer require zohocrm/php-sdk:2.0.1 Notes Enhancement Tag names can contain spaces in between them, while associating with records. Tag names can be retrieved as "ZCRMTag" objects in records function. ZOHO ...
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 ...
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 ...
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 ...