Statement Event Notification File

๐Ÿ“˜

This is an extension file

This file is an extension of the master Event Notification File and is meant to provide additional data points for statement events. A single event will appear in both files and share the same UserEventId.

Statement Event Notification File Definition

The Statement Event Notification File is created by Helix on an hourly basis. It has the following properties:

  1. Fixed-length.
  2. ANSI encoded
  3. Line endings are Windows-style CarriageReturn + LineFeed (\r\n, or 0x0D0A)
  4. File will be available in the relative directory of /EventNotification
  5. File name follows a specific, case-sensitive pattern of: yyyyMMddhhmm_STATEMENTEVENTNOTIFICATION.TXT

๐Ÿšง

Format Disclaimer
Helix reserves the right to append new field(s) to the end of any Header or Content line without notice. This is to allow new data points to be added as needed in a timely fashion.

Implementation Note
Your code should be written such that unexpected characters after the "last" field but prior to the end of each line should be ignored. That is, if the file is documented as being 872 bytes per line, receiving a file with 984 bytes per line should not disrupt your processing. This applies to both Header and Content lines.

File Name Disclaimer
The date in file name should be used as a guideline for human eyes only. Any date-related programmatic dependencies should rely on the FileCreatedDate or FileEffectiveDate contained within the header line of each file, as these will be precise to the second and will be in the appropriate timezone.

Header Row

PropertyData Type (Length)AlignmentStart PositionDescription
RecordTypestring (1)Left1The flag for the header row. Will always be H.
FileNamestring (50)Left2The name of this request file excluding path.
Format: yyyyMMddhhmm_STATEMENTEVENTNOTIFICATION.TXT
Example: 201901210939_STATEMENTEVENTNOTIFICATION.TXT
RecordCountinteger (10)Right52The number of records represented within the file. This field is zero-padded on the left side.
Example: 0000000872
FileCreatedDatedatetime (34)Left62The date the file was created. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
FileEffectiveDatedatetime (34)Left96The date to which the data in the file pertains. Follows same format as API.
Example: 2014-10-20T09:30:31.456-05:00
See data format guidelines

Content Row

PropertyData Type (Length)AlignmentStart PositionDescription
UserEventIDinteger (19)Right1The unique identifier for an event. Use this field alone to cross reference against the Event Notification File or the Realtime Event sent via Azure Service Bus. This field is zero-padded on the left side.
Example: 0000000872
CustomerIdinteger (10)Right20The unique identifier for a customer. This field is zero-padded on the left side.
Example: 0000000872
AccountIdinteger (10)Right30The unique identifier for an account. This field is zero-padded on the left side.
Example: 0000000872
Monthinteger (2)Right40The two digit month of the statement. Value is 00 for Tax 1099-INT & 1099-MISC events. This field is zero-padded on the left side.
Example: 09
Yearinteger (4)Right42The four digit year of the statement.
NumberOfAccountsinteger (4)Right46The number of accounts associated with the customer. This field is zero-padded on the left side.
Example: 0003
EventTypeIdinteger (10)Right50The type of event that occurred. Possible values:
- 3062: Monthly Statement Available
- 3501: Tax 1099-INT Available
- 3502: Tax 1099-MISC Available

This field is zero-padded on the left side.
Example: 0000003062
EventDatestring (34)Left60The date and time the event was triggered.

{ "file_type": "fixed_length" }