Sha256: e03f5954c3f610b1baa8dbce7df828a742705fd44e2bc4b57120c4542cbe4de1

Contents?: true

Size: 1.94 KB

Versions: 162

Compression:

Stored size: 1.94 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.  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).
* `bundle_id` (int64): ID of the associated Bundle

Version data entries

162 entries across 162 versions & 1 rubygems

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