Sha256: 29150c5eac582d6b41ff9eaaecea9cf812546851de5e2de32d657adb47a7629f

Contents?: true

Size: 1 KB

Versions: 4

Compression:

Stored size: 1 KB

Contents

# AutomationRun

## Example AutomationRun Object

```
{
  "automation_id": 1,
  "status": "success",
  "status_messages_url": "https://www.example.com/log_file.txt"
}
```

* `automation_id` (int64): ID of the associated Automation.
* `status` (string): The success status of the AutomationRun. One of `running`, `success`, `partial_failure`, or `failure`.
* `status_messages_url` (string): Link to status messages log file.


---

## List Automation Runs

```
Files::AutomationRun.list(
  user_id: 1, 
  per_page: 1, 
  automation_id: 1
)
```

### Parameters

* `user_id` (int64): User ID.  Provide a value of `0` to operate the current session's user.
* `cursor` (string): Used for pagination.  Send a cursor value to resume an existing list from the point at which you left off.  Get a cursor from an existing list via the X-Files-Cursor-Next header.
* `per_page` (int64): Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
* `automation_id` (int64): Required - ID of the associated Automation.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
files.com-1.0.213 docs/automation_run.md
files.com-1.0.212 docs/automation_run.md
files.com-1.0.211 docs/automation_run.md
files.com-1.0.210 docs/automation_run.md