Sha256: 4f7045522103bebd19c334c3c800de5fb07292f7d73c4672c1dd5c49337173d3

Contents?: true

Size: 1.35 KB

Versions: 7

Compression:

Stored size: 1.35 KB

Contents

# BundleRegistration

## Example BundleRegistration Object

```
{
  "code": "abc123",
  "name": "account",
  "company": "Action Verb",
  "email": "john.doe@files.com",
  "inbox_code": "abc123",
  "clickwrap_body": "",
  "form_field_set_id": 1,
  "form_field_data": ""
}
```

* `code` (string): Registration cookie code
* `name` (string): Registrant name
* `company` (string): Registrant company name
* `email` (string): Registrant email address
* `inbox_code` (string): InboxRegistration cookie code, if there is an associated InboxRegistration
* `clickwrap_body` (string): Clickwrap text that was shown to the registrant
* `form_field_set_id` (int64): Id of associated form field set
* `form_field_data` (string): Data for form field set with form field ids as keys and user data as values


---

## List Bundle Registrations

```
Files::BundleRegistration.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): ID of the associated Bundle

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
files.com-1.0.196 docs/bundle_registration.md
files.com-1.0.195 docs/bundle_registration.md
files.com-1.0.194 docs/bundle_registration.md
files.com-1.0.193 docs/bundle_registration.md
files.com-1.0.192 docs/bundle_registration.md
files.com-1.0.191 docs/bundle_registration.md
files.com-1.0.190 docs/bundle_registration.md