Run a job now
POST
/v1/jobs/{id}/run
const url = 'https://shareout.site/v1/jobs/example/run';const options = {method: 'POST', 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 POST \ --url https://shareout.site/v1/jobs/example/run \ --header 'Authorization: Bearer <token>'Trigger immediately without affecting the schedule.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”Executed
Media type application/json
object
message
string
execution
object
Example generated
{ "message": "example", "execution": {}}