├── CHANGELOG.md ├── Install.ps1 ├── Publish.ps1 ├── README.md └── source ├── License.txt ├── WorkdayApi.psd1 ├── WorkdayApi.psm1 ├── en-US └── about_WorkdayApi.help.txt ├── public ├── ConvertFrom-WorkdayWorkerXml.ps1 ├── Get-WorkdayDate.ps1 ├── Get-WorkdayEndpoint.ps1 ├── Get-WorkdayIntegrationEvent.ps1 ├── Get-WorkdayReport.ps1 ├── Get-WorkdayToAdData.ps1 ├── Get-WorkdayWorker.ps1 ├── Get-WorkdayWorkerByIdLookupTable.ps1 ├── Get-WorkdayWorkerDocument.ps1 ├── Get-WorkdayWorkerEmail.ps1 ├── Get-WorkdayWorkerNationalId.ps1 ├── Get-WorkdayWorkerOtherId.ps1 ├── Get-WorkdayWorkerPhone.ps1 ├── Get-WorkdayWorkerPhoto.ps1 ├── Invoke-WorkdayRequest.ps1 ├── Remove-WorkdayConfiguration.ps1 ├── Remove-WorkdayWorkerOtherId.ps1 ├── Save-WorkdayConfiguration.ps1 ├── Set-WorkdayCredential.ps1 ├── Set-WorkdayEndpoint.ps1 ├── Set-WorkdayWorkerDocument.ps1 ├── Set-WorkdayWorkerEmail.ps1 ├── Set-WorkdayWorkerOtherId.ps1 ├── Set-WorkdayWorkerPhone.ps1 ├── Set-WorkdayWorkerPhoto.ps1 ├── Set-WorkdayWorkerUserId.ps1 ├── Start-WorkdayIntegration.ps1 ├── Update-WorkdayWorkerEmail.ps1 ├── Update-WorkdayWorkerOtherId.ps1 └── Update-WorkdayWorkerPhone.ps1 ├── samples ├── Sync_AD_to_Workday.ps1 ├── Sync_Workday_to_AD.ps1 ├── Update-WorkdayWorkerPhotosSince.ps1 └── Update_Email_By_WorkerID.ps1 └── tests ├── Get-WorkdayIntegrationEvent.Tests.ps1 ├── Get-WorkdayToAdData.Tests.ps1 ├── Get-WorkdayWorker.Tests.ps1 ├── Get-WorkdayWorkerEmail.Tests.ps1 ├── Get-WorkdayWorkerNationalId.Tests.ps1 ├── Get-WorkdayWorkerOtherId.Tests.ps1 ├── Get-WorkdayWorkerPhone.Tests.ps1 ├── Get-WorkdayWorkerPhoto.Tests.ps1 ├── Invoke-WorkdayRequest.Tests.ps1 ├── Invoke-WorkdayRequestHelper.psm1 ├── Remove-WorkdayWorkerOtherId.Tests.ps1 ├── Set-WorkdayWorkerDocument.Tests.ps1 ├── Set-WorkdayWorkerEmail.Tests.ps1 ├── Set-WorkdayWorkerOtherId.Tests.ps1 ├── Set-WorkdayWorkerPhone.Tests.ps1 ├── Set-WorkdayWorkerPhoto.Tests.ps1 ├── Set-WorkdayWorkerUserId.Tests.ps1 ├── Start-WorkdayIntegration.Tests.ps1 ├── Update-WorkdayWorkerEmail.Tests.ps1 ├── Update-WorkdayWorkerOtherId.Tests.ps1 └── Update-WorkdayWorkerPhone.Tests.ps1 /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/Install.ps1 -------------------------------------------------------------------------------- /Publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/Publish.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/README.md -------------------------------------------------------------------------------- /source/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/License.txt -------------------------------------------------------------------------------- /source/WorkdayApi.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/WorkdayApi.psd1 -------------------------------------------------------------------------------- /source/WorkdayApi.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/WorkdayApi.psm1 -------------------------------------------------------------------------------- /source/en-US/about_WorkdayApi.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/en-US/about_WorkdayApi.help.txt -------------------------------------------------------------------------------- /source/public/ConvertFrom-WorkdayWorkerXml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/ConvertFrom-WorkdayWorkerXml.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayDate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayDate.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayEndpoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayEndpoint.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayIntegrationEvent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayIntegrationEvent.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayReport.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayToAdData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayToAdData.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorker.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerByIdLookupTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerByIdLookupTable.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerDocument.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerDocument.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerEmail.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerNationalId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerNationalId.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerOtherId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerOtherId.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerPhone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerPhone.ps1 -------------------------------------------------------------------------------- /source/public/Get-WorkdayWorkerPhoto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Get-WorkdayWorkerPhoto.ps1 -------------------------------------------------------------------------------- /source/public/Invoke-WorkdayRequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Invoke-WorkdayRequest.ps1 -------------------------------------------------------------------------------- /source/public/Remove-WorkdayConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Remove-WorkdayConfiguration.ps1 -------------------------------------------------------------------------------- /source/public/Remove-WorkdayWorkerOtherId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Remove-WorkdayWorkerOtherId.ps1 -------------------------------------------------------------------------------- /source/public/Save-WorkdayConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Save-WorkdayConfiguration.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayCredential.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayEndpoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayEndpoint.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayWorkerDocument.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayWorkerDocument.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayWorkerEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayWorkerEmail.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayWorkerOtherId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayWorkerOtherId.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayWorkerPhone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayWorkerPhone.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayWorkerPhoto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayWorkerPhoto.ps1 -------------------------------------------------------------------------------- /source/public/Set-WorkdayWorkerUserId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Set-WorkdayWorkerUserId.ps1 -------------------------------------------------------------------------------- /source/public/Start-WorkdayIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Start-WorkdayIntegration.ps1 -------------------------------------------------------------------------------- /source/public/Update-WorkdayWorkerEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Update-WorkdayWorkerEmail.ps1 -------------------------------------------------------------------------------- /source/public/Update-WorkdayWorkerOtherId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Update-WorkdayWorkerOtherId.ps1 -------------------------------------------------------------------------------- /source/public/Update-WorkdayWorkerPhone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/public/Update-WorkdayWorkerPhone.ps1 -------------------------------------------------------------------------------- /source/samples/Sync_AD_to_Workday.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/samples/Sync_AD_to_Workday.ps1 -------------------------------------------------------------------------------- /source/samples/Sync_Workday_to_AD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/samples/Sync_Workday_to_AD.ps1 -------------------------------------------------------------------------------- /source/samples/Update-WorkdayWorkerPhotosSince.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/samples/Update-WorkdayWorkerPhotosSince.ps1 -------------------------------------------------------------------------------- /source/samples/Update_Email_By_WorkerID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/samples/Update_Email_By_WorkerID.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayIntegrationEvent.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayIntegrationEvent.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayToAdData.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayToAdData.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayWorker.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayWorker.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayWorkerEmail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayWorkerEmail.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayWorkerNationalId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayWorkerNationalId.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayWorkerOtherId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayWorkerOtherId.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayWorkerPhone.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayWorkerPhone.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Get-WorkdayWorkerPhoto.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Get-WorkdayWorkerPhoto.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Invoke-WorkdayRequest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Invoke-WorkdayRequest.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Invoke-WorkdayRequestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Invoke-WorkdayRequestHelper.psm1 -------------------------------------------------------------------------------- /source/tests/Remove-WorkdayWorkerOtherId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Remove-WorkdayWorkerOtherId.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Set-WorkdayWorkerDocument.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Set-WorkdayWorkerDocument.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Set-WorkdayWorkerEmail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Set-WorkdayWorkerEmail.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Set-WorkdayWorkerOtherId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Set-WorkdayWorkerOtherId.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Set-WorkdayWorkerPhone.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Set-WorkdayWorkerPhone.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Set-WorkdayWorkerPhoto.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Set-WorkdayWorkerPhoto.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Set-WorkdayWorkerUserId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Set-WorkdayWorkerUserId.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Start-WorkdayIntegration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Start-WorkdayIntegration.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Update-WorkdayWorkerEmail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Update-WorkdayWorkerEmail.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Update-WorkdayWorkerOtherId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Update-WorkdayWorkerOtherId.Tests.ps1 -------------------------------------------------------------------------------- /source/tests/Update-WorkdayWorkerPhone.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treestryder/powershell_module_workdayapi/HEAD/source/tests/Update-WorkdayWorkerPhone.Tests.ps1 --------------------------------------------------------------------------------