
Klaviyo GetSendJob
CertifiedFetch campaign send jobs
Klaviyo GetSendJob
Certified
Fetch campaign send jobs
Retrieves campaign send jobs by ID; fetchType (default FETCH) controls row vs. file output and the task waits ~1s between API calls.
yaml
type: io.kestra.plugin.klaviyo.jobs.GetSendJobExamples
Get a single campaign send job
yaml
id: klaviyo_get_send_job
namespace: company.team
tasks:
- id: get_send_job
type: io.kestra.plugin.klaviyo.jobs.GetSendJob
apiKey: "{{ secret('KLAVIYO_API_KEY') }}"
jobIds:
- "job_id_1"
fetchType: FETCH_ONE
Get multiple campaign send jobs
yaml
id: klaviyo_send_jobs
namespace: company.team
tasks:
- id: get_send_jobs
type: io.kestra.plugin.klaviyo.jobs.GetSendJob
apiKey: "{{ secret('KLAVIYO_API_KEY') }}"
jobIds:
- "job_id_1"
- "job_id_2"
fetchType: FETCH
Properties
apiKey *Requiredstring
Klaviyo private API Key
Klaviyo Private API Key sent as Klaviyo-API-Key; keep secret.
jobIds *Requiredarray
SubTypestring
Job IDs
Campaign send job IDs to fetch; order is preserved.
baseUrl string
Default
https://a.klaviyo.com/apiBase URL
Klaviyo API base URL; defaults to https://a.klaviyo.com/api.
fetchType string
Default
FETCHPossible Values
STOREFETCHFETCH_ONENONEFetch strategy
Controls output: FETCH_ONE first row, FETCH all rows (default), STORE writes all rows to internal storage, NONE skips output.
Outputs
row object
Single row data
rows array
SubTypeobject
All rows data
size integer
Fetched row count
uri string
Format
uriURI of stored data