Sha256: c622f1c4cd4183c77eb86c52215105d57cbc978ef076d4fec11118f13c082c5d

Contents?: true

Size: 1.95 KB

Versions: 31

Compression:

Stored size: 1.95 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(
  bundle_id: 1
)
```

### Parameters

* `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. Valid fields are `bundle_id`.
* `bundle_id` (int64): ID of the associated Bundle

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
files.com-1.1.229 docs/bundle_registration.md
files.com-1.1.228 docs/bundle_registration.md
files.com-1.1.227 docs/bundle_registration.md
files.com-1.1.226 docs/bundle_registration.md
files.com-1.1.225 docs/bundle_registration.md
files.com-1.1.224 docs/bundle_registration.md
files.com-1.1.223 docs/bundle_registration.md
files.com-1.1.222 docs/bundle_registration.md
files.com-1.1.221 docs/bundle_registration.md
files.com-1.1.220 docs/bundle_registration.md
files.com-1.1.219 docs/bundle_registration.md
files.com-1.1.218 docs/bundle_registration.md
files.com-1.1.217 docs/bundle_registration.md
files.com-1.1.216 docs/bundle_registration.md
files.com-1.1.215 docs/bundle_registration.md
files.com-1.1.214 docs/bundle_registration.md
files.com-1.1.213 docs/bundle_registration.md
files.com-1.1.212 docs/bundle_registration.md
files.com-1.1.211 docs/bundle_registration.md
files.com-1.1.210 docs/bundle_registration.md