from kombo import Kombo
with Kombo(
integration_id="workday:HWUTwvyx2wLoSUHphiWVrp28",
api_key="<YOUR_BEARER_TOKEN_HERE>",
) as k_client:
res = k_client.assessment.get_packages()
# Handle response
print(res)
Get all available assessment and background check packages for an integration.
GET
/
assessment
/
packages
Python
Copy
Ask AI
from kombo import Kombo
with Kombo(
integration_id="workday:HWUTwvyx2wLoSUHphiWVrp28",
api_key="<YOUR_BEARER_TOKEN_HERE>",
) as k_client:
res = k_client.assessment.get_packages()
# Handle response
print(res)
This is mainly intended for debugging. As you always need to submit the full list of available packages when using “set packages”, there shouldn’t ever be a need to call this endpoint in production.