Skip to content

Get a job

GET
/v1/jobs/{id}
curl --request GET \
--url https://shareout.site/v1/jobs/example \
--header 'Authorization: Bearer <token>'
id
required
string

The job

Media type application/json
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
{
"action": "email",
"trigger_type": "cron",
"event_type": "artifact.updated"
}

Resource not found

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}