action files_get_bundle_registrations { label: "List Bundle Registrations" description: "List Bundle Registrations" provider: files method: GET path: "/bundle_registrations" encoding: json input: { type: "object" properties: { bundle_id: { type: "integer" format: "int32" } cursor: { type: "string" } per_page: { type: "integer" format: "int32" } user_id: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Bundle Registrations" properties: { bundle_code: { type: "string" description: "Bundle URL code" } bundle_id: { type: "integer" format: "int32" description: "Id of associated bundle" } bundle_recipient_id: { type: "integer" format: "int32" description: "Id of associated bundle recipient" } 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_code: { type: "string" description: "InboxRegistration cookie code, if there is an associated InboxRegistration" } ip: { type: "string" description: "Registrant IP Address" } name: { type: "string" description: "Registrant name" } } } } }