List jobs
GET
/v1/jobs
const url = 'https://shareout.site/v1/jobs';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://shareout.site/v1/jobs \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” artifact_id
string
Filter to a single artifact.
Responses
Section titled “ Responses ”Jobs
Media type application/json
object
jobs
Array<object>
object
id
string
artifact_id
string
action
string
trigger_type
string
schedule
Cron expression (cron jobs only).
string
event_type
string
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" } ]}