Add support for gathering scheduled changes in BambooHR #1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Copied from my PR on the public project (smeggingsmegger#34)
My organization's onboarding workflows depend on pulling information about new hires prior to their first day. BambooHR recently implemented "Effective Dates" which will allow changes (promotions, compensation changes, etc.) to be scheduled to happen. BambooHR added a parameter
onlyCurrent
which will allow you to see scheduled changes via the API prior to the changes taking place.Example - getting a future employee's department prior to their start date:
Using
onlyCurrent=false
This functionality is implemented by adding
onlyCurrent
to the initial call of the PyBambooHR class.When
onlyCurrent
is not specified in the initial call it is assumed to beTrue
, this way the library retains the current functionality.