(sync)
Retrieve sync status of a certain vertical
import panora_sdk
from panora_sdk import Panora
s = Panora(
api_key="<YOUR_API_KEY_HERE>",
)
s.sync.status(vertical=panora_sdk.PathParamVertical.TICKETING)
# Use the SDK ...
Error Object |
Status Code |
Content Type |
models.SDKError |
4xx-5xx |
/ |
Resync common objects across a vertical
from panora_sdk import Panora
s = Panora(
api_key="<YOUR_API_KEY_HERE>",
)
res = s.sync.resync()
if res is not None:
# handle response
pass
Parameter |
Type |
Required |
Description |
retries |
Optional[utils.RetryConfig] |
➖ |
Configuration to override the default retry behavior of the client. |
models.ResyncStatusDto
Error Object |
Status Code |
Content Type |
models.SDKError |
4xx-5xx |
/ |
Update pull frequency for verticals
from panora_sdk import Panora
s = Panora(
api_key="<YOUR_API_KEY_HERE>",
)
res = s.sync.update_pull_frequency(request={
"crm": 1800,
"ats": 3600,
"hris": 7200,
"accounting": 14400,
"filestorage": 28800,
"ecommerce": 43200,
"ticketing": 86400,
})
if res is not None:
# handle response
pass
models.UpdatePullFrequencyResponseBody
Error Object |
Status Code |
Content Type |
models.SDKError |
4xx-5xx |
/ |
Get pull frequency for verticals
from panora_sdk import Panora
s = Panora(
api_key="<YOUR_API_KEY_HERE>",
)
res = s.sync.get_pull_frequency()
if res is not None:
# handle response
pass
Parameter |
Type |
Required |
Description |
retries |
Optional[utils.RetryConfig] |
➖ |
Configuration to override the default retry behavior of the client. |
models.UpdatePullFrequencyDto
Error Object |
Status Code |
Content Type |
models.SDKError |
4xx-5xx |
/ |