> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Perform Job Action

Perform various actions on a backup job.

Available actions:

* `Start` - Start any job type.
* `Sync` - Start a backup copy job (backup copy jobs only).
* `Stop` - Stop any running job.
* `Retry` - Retry any failed job.
* `Toggle Schedule` - Enable/disable job scheduling.

All operations run asynchronously and return a task ID for tracking progress.

<Note>
  External Documentation

  To learn more, visit the [Veeam Backup Replication documentation](https://helpcenter.veeam.com/docs/backup/em_rest/jobs_id.html).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                              |
  | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Action    | The action to perform on the job:<br />- `Start` - Start the job.<br />- `Sync` - Start a backup copy job.<br />- `Stop` - Stop a running job.<br />- `Retry` - Retry a failed job.<br />- `Toggle Schedule` - Enable/disable job scheduling.<br /><br />All operations run asynchronously and retrieve a task ID for tracking progress. |
  | Job UID   | The unique ID of the job to perform the action on.                                                                                                                                                                                                                                                                                       |
</div>

## Example Output

```json theme={"dark"}
{
	"Task": {
		"Links": {
			"Link": {
				"_Rel": "Delete",
				"_Type": "Task",
				"_Href": "https://localhost:9398/api/tasks/task-1"
			}
		},
		"TaskId": "task-1",
		"State": "Running",
		"Operation": "RetryJob",
		"_xmlns": "http://www.veeam.com/ent/v1.0",
		"_Type": "Task",
		"_Href": "https://localhost:9398/api/tasks/task-1"
	}
}
```

## Workflow Library Example

[Perform Job Action with Veeam Backup Replication and Send Results Via Email](https://library.blinkops.com/workflows/perform-job-action-with-veeam-backup-replication-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/perform-job-action-with-veeam-backup-replication-and-send-results-via-email/canvas" />
</div>
