Sha256: 10616ca42ee36f918c10ce6a3ac490a2772c117c98ee22bb4aff0018ceac941a

Contents?: true

Size: 1.95 KB

Versions: 133

Compression:

Stored size: 1.95 KB

Contents

# AutomationRun

## Example AutomationRun Object

```
{
  "id": 1,
  "automation_id": 1,
  "completed_at": "2000-01-01T01:00:00Z",
  "created_at": "2000-01-01T01:00:00Z",
  "status": "success",
  "status_messages_url": "https://www.example.com/log_file.txt"
}
```

* `id` (int64): ID.
* `automation_id` (int64): ID of the associated Automation.
* `completed_at` (date-time): Automation run completion/failure date/time.
* `created_at` (date-time): Automation run start date/time.
* `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.  When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`.  Send one of those cursor value here to resume an existing list from the next available record.  Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
* `per_page` (int64): Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[automation_id]=desc`). Valid fields are `automation_id`, `created_at` or `status`.
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status` and `automation_id`. Valid field combinations are `[ automation_id, status ]`.
* `automation_id` (int64): Required - ID of the associated Automation.


---

## Show Automation Run

```
Files::AutomationRun.find(id)
```

### Parameters

* `id` (int64): Required - Automation Run ID.

Version data entries

133 entries across 133 versions & 1 rubygems

Version Path
files.com-1.0.489 docs/automation_run.md
files.com-1.0.488 docs/automation_run.md
files.com-1.0.487 docs/automation_run.md
files.com-1.0.486 docs/automation_run.md
files.com-1.0.485 docs/automation_run.md
files.com-1.0.484 docs/automation_run.md
files.com-1.0.483 docs/automation_run.md
files.com-1.0.482 docs/automation_run.md
files.com-1.0.481 docs/automation_run.md
files.com-1.0.480 docs/automation_run.md
files.com-1.0.479 docs/automation_run.md
files.com-1.0.478 docs/automation_run.md
files.com-1.0.477 docs/automation_run.md
files.com-1.0.476 docs/automation_run.md
files.com-1.0.475 docs/automation_run.md
files.com-1.0.474 docs/automation_run.md
files.com-1.0.473 docs/automation_run.md
files.com-1.0.472 docs/automation_run.md
files.com-1.0.471 docs/automation_run.md
files.com-1.0.470 docs/automation_run.md