Get a job
GET
/v1/jobs/{id}
const url = 'https://shareout.site/v1/jobs/example';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/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”The job
Media type application/json
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
{ "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}