Sha256: fa17b57116bd5955476354c222efdc56512ff99e5ad435cd72b9054bf895fdfc

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

# BundleRecipient

## Example BundleRecipient Object

```
{
  "company": "Acme Inc.",
  "name": "John Doe",
  "note": "Some note.",
  "recipient": "john.doe@example.com",
  "sent_at": "2000-01-01T01:00:00Z"
}
```

* `company` (string): The recipient's company.
* `name` (string): The recipient's name.
* `note` (string): A note sent to the recipient with the bundle.
* `recipient` (string): The recipient's email address.
* `sent_at` (date-time): When the Bundle was shared with this recipient.


---

## List Bundle Recipients

```
Files::BundleRecipient.list(
  user_id: 1, 
  per_page: 1, 
  bundle_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).
* `bundle_id` (int64): Required - List recipients for the bundle with this ID.

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
files.com-1.0.127 docs/bundle_recipient.md
files.com-1.0.126 docs/bundle_recipient.md
files.com-1.0.125 docs/bundle_recipient.md
files.com-1.0.124 docs/bundle_recipient.md
files.com-1.0.123 docs/bundle_recipient.md
files.com-1.0.122 docs/bundle_recipient.md