action files_get_inbox_registrations { label: "List Inbox Registrations" description: "List Inbox Registrations" provider: files method: GET path: "/inbox_registrations" encoding: json input: { type: "object" properties: { cursor: { type: "string" } folder_behavior_id: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Inbox Registrations" properties: { clickwrap_body: { type: "string" description: "Clickwrap text that was shown to the registrant" } code: { type: "string" description: "Registration cookie code" } company: { type: "string" description: "Registrant company name" } created_at: { type: "string" format: "date-time" description: "Registration creation date/time" } email: { type: "string" description: "Registrant email address" } form_field_data: { type: "object" description: "Data for form field set with form field ids as keys and user data as values" } form_field_set_id: { type: "integer" format: "int32" description: "Id of associated form field set" } inbox_id: { type: "integer" format: "int32" description: "Id of associated inbox" } inbox_recipient_id: { type: "integer" format: "int32" description: "Id of associated inbox recipient" } inbox_title: { type: "string" description: "Title of associated inbox" } name: { type: "string" description: "Registrant name" } } } } }