API features
This page describes the different actions that can be performed with the Tailer API.
🔑 Get a JWT token
🚀 Launching a job's execution
TAILER_API_JWT=`tailer auth get-token | awk '/User token :/ {print $4}'` \
&& curl --request POST \
--http2 \
--header "content-type:application/json" \
--header "Authorization: Bearer ${TAILER_API_JWT}" \
--data '{ "action": "launch_job",
"account": "000099",
"environment": "DEV",
"configuration_type": "table-to-table",
"configuration_id": "000099_iowa_liquor_prepare_pda_DEV"}' \
"https://tailer-api-nqonovswsq-ew.a.run.app/v1/dag/launch"🏃♂️ Checking a run's status
⌛ Getting the last status of a job/data operation
Getting job/data operations by status
⚙️ Setting a run's status
0️⃣ Resetting a workflow
⏹️ Disabling a data operation
▶️ Enabling a data operation
▶️ Archive a data operation
Last updated