Authorizations
Enter your API key in the format x-api-key <api-key>*
Query Parameters
Limit
Offset
Filter by connection ID
Filter by entity type
Filter by interval
Filter by enabled status
Get a list of scheduled tasks with optional filters
curl --request GET \
--url https://api.cloud.flexprice.io/v1/tasks/scheduled \
--header 'x-api-key: <api-key>'{
"items": [
{
"connection_id": "<string>",
"created_at": "<string>",
"enabled": true,
"entity_type": "events",
"environment_id": "<string>",
"id": "<string>",
"interval": "custom",
"job_config": {
"bucket": "<string>",
"compression": "none",
"encryption": "AES256",
"key_prefix": "<string>",
"region": "<string>"
},
"status": "<string>",
"tenant_id": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}Enter your API key in the format x-api-key <api-key>*
Limit
Offset
Filter by connection ID
Filter by entity type
Filter by interval
Filter by enabled status
curl --request GET \
--url https://api.cloud.flexprice.io/v1/tasks/scheduled \
--header 'x-api-key: <api-key>'{
"items": [
{
"connection_id": "<string>",
"created_at": "<string>",
"enabled": true,
"entity_type": "events",
"environment_id": "<string>",
"id": "<string>",
"interval": "custom",
"job_config": {
"bucket": "<string>",
"compression": "none",
"encryption": "AES256",
"key_prefix": "<string>",
"region": "<string>"
},
"status": "<string>",
"tenant_id": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}