PHP code example of zenapply / api-php

1. Go to this page and download the library: Download zenapply/api-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

zenapply / api-php example snippets


use Zenapply\Api\Zenapply;

$client = new Zenapply($API_TOKEN, "your_company_domain");

$positions = $client->positions->all();
bash
composer