humantech / zoho-recruit-api
Zoho Recruit API
Installs: 5 352
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 14
Open Issues: 3
Requires
- php: ~5.5 || >=7.0 <7.2
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- fabpot/php-cs-fixer: ^1.9
- phpunit/phpunit: ^4.7
This package is not auto-updated.
Last update: 2024-11-05 19:32:52 UTC
README
PHP Zoho Recruit API.
Dependencies
- PHP 5.5;
- guzzlehttp/guzzle:~6.0.
Installation
The installation process can be performed by two ways, using the packagist or cloning this repository.
Packagist
Open a terminal and tip the below command:
$ composer require humantech/zoho-recruit-api
Cloning
$ git clone https://github.com/humantech/zoho-recruit-api.git $ composer install
Documentation
This package is compatible with PSR-2 and PSR-4.
Getting the Auth Token
To get the Auth token you have that instance a class called AuthenticationClient and pass two parameters to a method called generateAuthToken, a username and a plain password like the example below.
<?php $authClient = new \Humantech\Zoho\Recruit\Api\Client\AuthenticationClient(); $token = $authClient->generateAuthToken('youruser@yourcompany.com', 'your-password');
Calling the getRecords
Given the Zoho Recruit Api documentation to method getRecords, you can get the records from Candidates like the following example:
<?php $client = new \Humantech\Zoho\Recruit\Api\Client\Client($token); $jobOpenings = $client->getRecords('JobOpenings');
More
See more examples in the demo file or in PHPUnit test classes.
License
This package is under the MIT license. See the complete license.