Authorizations
Headers
ID of the integration you want to interact with.
Body
application/json
POST /force-sync Request body
The type of the triggered sync.
Available options:
FULL, DELTA from kombo import SDK
with SDK(
integration_id="workday:HWUTwvyx2wLoSUHphiWVrp28",
api_key="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.general.trigger_sync(type_="FULL")
# Handle response
print(res){
"status": "success",
"data": {
"already_queued": false,
"sync_id": "119ihtp91nA3dqRFiV67nXS6",
"type": "DELTA"
}
}Trigger a sync for a specific integration.
from kombo import SDK
with SDK(
integration_id="workday:HWUTwvyx2wLoSUHphiWVrp28",
api_key="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.general.trigger_sync(type_="FULL")
# Handle response
print(res){
"status": "success",
"data": {
"already_queued": false,
"sync_id": "119ihtp91nA3dqRFiV67nXS6",
"type": "DELTA"
}
}ID of the integration you want to interact with.
POST /force-sync Request body
The type of the triggered sync.
FULL, DELTA Was this page helpful?