Skip to content

List jobs

GET
/v1/jobs
curl --request GET \
--url https://shareout.site/v1/jobs \
--header 'Authorization: Bearer <token>'
artifact_id
string

Filter to a single artifact.

Jobs

Media type application/json
object
jobs
Array<object>
object
id
string
artifact_id
string
action
string
Allowed values: email webhook slack discord http_get materialize
trigger_type
string
Allowed values: cron event
schedule

Cron expression (cron jobs only).

string
event_type
string
Allowed values: artifact.updated artifact.viewed comment.added
config
object
enabled
boolean
next_run_at
integer
last_run_at
integer
last_status
string
created_at
integer
Example
{
"jobs": [
{
"action": "email",
"trigger_type": "cron",
"event_type": "artifact.updated"
}
]
}