Sha256: b8d8a32a9016d89d3c791621f6484fa4b6dec061f3fb68c6dc69de6dd24fe916

Contents?: true

Size: 1.8 KB

Versions: 14

Compression:

Stored size: 1.8 KB

Contents

# BundleRegistration

## Example BundleRegistration Object

```
{
  "code": "abc123",
  "name": "account",
  "company": "Action Verb",
  "email": "john.doe@files.com",
  "ip": "10.1.1.1",
  "inbox_code": "abc123",
  "clickwrap_body": "example",
  "form_field_set_id": 1,
  "form_field_data": {
    "key": "example value"
  },
  "bundle_code": "example",
  "bundle_id": 1,
  "bundle_recipient_id": 1,
  "created_at": "2000-01-01T01:00:00Z"
}
```

* `code` (string): Registration cookie code
* `name` (string): Registrant name
* `company` (string): Registrant company name
* `email` (string): Registrant email address
* `ip` (string): Registrant IP 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` (object): Data for form field set with form field ids as keys and user data as values
* `bundle_code` (string): Bundle URL code
* `bundle_id` (int64): Id of associated bundle
* `bundle_recipient_id` (int64): Id of associated bundle recipient
* `created_at` (date-time): Registration creation date/time


---

## 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 either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev 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

14 entries across 14 versions & 1 rubygems

Version Path
files.com-1.0.327 docs/bundle_registration.md
files.com-1.0.326 docs/bundle_registration.md
files.com-1.0.325 docs/bundle_registration.md
files.com-1.0.324 docs/bundle_registration.md
files.com-1.0.323 docs/bundle_registration.md
files.com-1.0.322 docs/bundle_registration.md
files.com-1.0.321 docs/bundle_registration.md
files.com-1.0.320 docs/bundle_registration.md
files.com-1.0.319 docs/bundle_registration.md
files.com-1.0.318 docs/bundle_registration.md
files.com-1.0.317 docs/bundle_registration.md
files.com-1.0.316 docs/bundle_registration.md
files.com-1.0.315 docs/bundle_registration.md
files.com-1.0.314 docs/bundle_registration.md