Admin Activity Files

Admin Activity Files contain activity performed through the Admin Portal

  1. User File
  2. Login Activity File
  3. Customer Search File
  4. Web Usage File

Admin Activity User File Definition

This is a file of admin portal users that have access to your program's customer data. Multiple files per day can be processed, typically on a 15 minute increment basis. It has the following properties:

  1. Exactly one tab-delimited header line
  2. Zero or more tab-delimited content lines
  3. A tab character (\t, or 0x09) embedded in actual text content will be replaced with a space character (" ", or 0x20) during file generation
  4. Although most other files created and consumed by Helix are fixed-length in nature, this file is tab-delimited to help reduce the size of file as it may grow considerably over time and possibly contain large sections of empty columns
  5. File will be available in the relative directory of /AdminActivity
  6. ANSI encoded
  7. Line endings are Windows-style CarriageReturn + LineFeed (\r\n, or 0x0D0A)
  8. File name follows a specific, case-sensitive pattern of: yyyyMMddhhmm_ADMINUSERS.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 having 30 tabs per line, receiving a file with 31 or more 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)Tab OffsetDescription
Record Typestring (1)0The flag for the header row. Will always be H.
File Namestring (50)1The name of this file excluding path.
Format: yyyyMMddhhmm_ADMINUSERS.TXT
Example: 201407162348_ADMINUSERS.TXT
Record Countinteger (10)2The number of records represented within the file.
File Created Datedatetime (34)3The date the file was created. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
File Effective Datedatetime (34)4The date to which the data in the file pertains. Follows same format as API.
Example: 2014-10-20T23:59:59.999-05:00
See data format guidelines

Content Row

PropertyData Type (Length)Tab OffsetDescription
User IDinteger (10)0The unique identifier for a Admin Portal User.
Emailstring (255)1Admin Portal User email address.
First Namestring (255)2Admin Portal User First Name.
Last Namestring (255)3Admin Portal User Last Name.
Phonestring (255)4Admin Portal User Phone Number.
Effective Datedatetime (34)5The date the Admin Portal User record was last modified. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
Is Activeinteger (1)60 or 1 value representing if Admin Portal User is active or not. 0 represents not active and 1 represents active.
Created Datedatetime (34)7The date the Admin Portal User was created. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
Terminated Datedatetime (34)8The date the Admin Portal User was terminated on. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
Program IDinteger (10)9The unique ID of the program with which the line item is associated.
Program Namestring (50)10The name of the program with which the line item is associated.
Creator User IDinteger (10)11The user ID of the user who created this admin user
Creator Emailstring (255)12The email address of the user who created this admin user

Admin Login Activity File Definition

This is a file of admin portal users login activity that have access to your program's customer data. Multiple files per day can be processed, typically on a 15 minute increment basis. It has the following properties:

  1. Exactly one tab-delimited header line
  2. Zero or more tab-delimited content lines
  3. A tab character (\t, or 0x09) embedded in actual text content will be replaced with a space character (" ", or 0x20) during file generation
  4. Although most other files created and consumed by Helix are fixed-length in nature, this file is tab-delimited to help reduce the size of file as it may grow considerably over time and possibly contain large sections of empty columns
  5. File will be available in the relative directory of /AdminActivity
  6. ANSI encoded
  7. Line endings are Windows-style CarriageReturn + LineFeed (\r\n, or 0x0D0A)
  8. File name follows a specific, case-sensitive pattern of: yyyyMMddhhmm_ADMINLOGINACTIVITY.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 having 30 tabs per line, receiving a file with 31 or more 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)Tab OffsetDescription
Record Typestring (1)0The flag for the header row. Will always be H.
File Namestring (50)1The name of this file excluding path.
Format: yyyyMMddhhmm_ADMINLOGINACTIVITY.TXT
Example: 201407162348_ADMINLOGINACTIVITY.TXT
Record Countinteger (10)2The number of records represented within the file.
File Created Datedatetime (34)3The date the file was created. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
File Effective Datedatetime (34)4The date to which the data in the file pertains. Follows same format as API.
Example: 2014-10-20T23:59:59.999-05:00
See data format guidelines

Content Row

PropertyData Type (Length)Tab OffsetDescription
User IDinteger (10)0The unique identifier for a Admin Portal User.
User Namestring (255)1Admin Portal User email address/username.
Remote Addressstring (200)2IP address of a client device that was performing a login into Admin Portal
Headersstring (400)3HTTP headers of a client application that was performing a logoin into Admin Portal.
Datedatetime (34)4Date a login was performed into Admin Portal. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
Statusstring (1)5S or F indicating Admin Portal Login success or failure.
Program IDinteger (10)6The unique ID of the program with which the line item is associated. (Will be blank if the user is a bank user).
Program Namestring (50)7The name of the program with which the line item is associated. (Will be blank if the user is a bank user).

Admin Activity Customer Search File Definition

This is a file of admin portal users customer search activity that may have accessed your program's customer data. Multiple files per day can be processed, typically on a 15 minute increment basis. It has the following properties:

  1. Exactly one tab-delimited header line
  2. Zero or more tab-delimited content lines
  3. A tab character (\t, or 0x09) embedded in actual text content will be replaced with a space character (" ", or 0x20) during file generation
  4. Although most other files created and consumed by Helix are fixed-length in nature, this file is tab-delimited to help reduce the size of file as it may grow considerably over time and possibly contain large sections of empty columns
  5. File will be available in the relative directory of /AdminActivity
  6. ANSI encoded
  7. Line endings are Windows-style CarriageReturn + LineFeed (\r\n, or 0x0D0A)
  8. File name follows a specific, case-sensitive pattern of: yyyyMMddhhmm_ADMINCUSTOMERSEARCHACTIVITY.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 having 30 tabs per line, receiving a file with 31 or more 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)Tab OffsetDescription
Record Typestring (1)0The flag for the header row. Will always be H.
File Namestring (50)1The name of this file excluding path.
Format: yyyyMMddhhmm_ADMINCUSTOMERSEARCHACTIVITY.TXT
Example: 201909091523_ADMINCUSTOMERSEARCHACTIVITY.TXT
Record Countinteger (10)2The number of records represented within the file.
File Created Datedatetime (34)3The date the file was created. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
File Effective Datedatetime (34)4The date to which the data in the file pertains. Follows same format as API.
Example: 2014-10-20T23:59:59.999-05:00
See data format guidelines

Content Row

PropertyData Type (Length)Tab OffsetDescription
User IDinteger (10)0The unique identifier for a Admin Portal User.
First Namestring (64)1Customer First Name.
Last Namestring (128)2Customer Last Name.
Tagstring (50)3Customer Tag.
Account Numberstring (50)4Customer Account Number.
Email Addressstring (255)5Customer email address.
Mobile Phonestring (50)6Customer Mobile Phone Number.
Tax IDstring (30)7Customer SSN.
Customer IDinteger (10)8Customer Id.
Account Tagstring (50)9Customer Account Tag.
External Account Tagstring (50)10Customer External Account Tag.
Transaction Tagstring (50)11The program-wide unique identifier provided by the caller during /transfer/create. Helix does not generate this value.
Receipt Reference Numberinteger (19)12Only applicable for checks.
Datedatetime (34)13The date the Admin Portal Customer Search query was performed. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
Program IDinteger (10)14The unique ID of the program with which the line item is associated.
Program Namestring (50)15The name of the program with which the line item is associated.

Admin Activity Web Usage File Definition

This is a file of admin portal users url access history for users that have access to your program's customer data. Multiple files per day can be processed, typically on a 15 minute increment basis. It has the following properties:

  1. Exactly one tab-delimited header line
  2. Zero or more tab-delimited content lines
  3. A tab character (\t, or 0x09) embedded in actual text content will be replaced with a space character (" ", or 0x20) during file generation
  4. Although most other files created and consumed by Helix are fixed-length in nature, this file is tab-delimited to help reduce the size of file as it may grow considerably over time and possibly contain large sections of empty columns
  5. File will be available in the relative directory of /AdminActivity
  6. ANSI encoded
  7. Line endings are Windows-style CarriageReturn + LineFeed (\r\n, or 0x0D0A)
  8. File name follows a specific, case-sensitive pattern of: yyyyMMddhhmm_ADMINWEBUSAGEACTIVITY.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 having 30 tabs per line, receiving a file with 31 or more 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)Tab OffsetDescription
Record Typestring (1)0The flag for the header row. Will always be H.
File Namestring (50)1The name of this file excluding path.
Format: yyyyMMddhhmm_ADMINWEBUSAGEACTIVITY.TXT
Example: 201909091523_ADMINWEBUSAGEACTIVITY.TXT
Record Countinteger (10)2The number of records represented within the file.
File Created Datedatetime (34)3The date the file was created. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
File Effective Datedatetime (34)4The date to which the data in the file pertains. Follows same format as API.
Example: 2014-10-20T23:59:59.999-05:00
See data format guidelines

Content Row

PropertyData Type (Length)Tab OffsetDescription
User IDinteger (10)0The unique identifier for a Admin Portal user.
URLstring (2000)1Admin Portal Url Admin User accessed.
Datedatetime (34)2The date the Admin Portal Customer Search query was performed. Follows same format as API.
Example: 2014-10-20T10:30:31.456-05:00
See data format guidelines
Program Idinteger (10)3The unique ID of the program with which the line item is associated.
Program Namestring (50)4The name of the program with which the line item is associated.
Email Addressstring (255)5The email address of the Admin Portal user

{ "file_type": "tab_delimited" }