Sha256: eabe8d3d93332e48f117ff2477f1519e913dda500b2d072258b4a1682e15702a
Contents?: true
Size: 1.44 KB
Versions: 17
Compression:
Stored size: 1.44 KB
Contents
# InboxRegistration ## Example InboxRegistration Object ``` { "code": "abc123", "name": "account", "company": "Action Verb", "email": "john.doe@files.com", "clickwrap_body": "example", "form_field_set_id": 1, "form_field_data": { "key": "example value" }, "inbox_id": 1, "inbox_recipient_id": 1, "inbox_title": "example" } ``` * `code` (string): Registration cookie code * `name` (string): Registrant name * `company` (string): Registrant company name * `email` (string): Registrant email address * `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 * `inbox_id` (int64): Id of associated inbox * `inbox_recipient_id` (int64): Id of associated inbox recipient * `inbox_title` (string): Title of associated inbox --- ## List Inbox Registrations ``` Files::InboxRegistration.list( per_page: 1, folder_behavior_id: 1 ) ``` ### Parameters * `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). * `folder_behavior_id` (int64): ID of the associated Inbox.
Version data entries
17 entries across 17 versions & 1 rubygems