PHP code example of ivol / workday-soap-client

1. Go to this page and download the library: Download ivol/workday-soap-client 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/ */

    

ivol / workday-soap-client example snippets




use ivol\Workday\Soap\SoapClient;

$wsdl = 'add your link to WWS wsdl here';
$options = [
    'token' => new UsernamePasswordToken("root","root", "root_tenant") // for list of available tokens - check ivol\Workday\Soap\Token
];

$client = new SoapClient($wsdl, $options);
$client->Get_Postings([]);