Skip to main content
Version: 1.7.3

ActivityLogRecords

Use this endpoint to retrieve the online access activity summary of a particular recipient for whom you've enabled online access. The API request must include the RecipientId, date period, and page layout specifications.

GET OnlineAccess/ActivityLogRecords
Run in Postman

Request Params

FieldTypeDescription
RecipientIdGUIDA unique ID generated by TaxBandits after the return is created and will be returned in the Response
PageNumberPulls the records listed in the page selected
PageSizeNumberNumber of records to be listed in each page .
Note: PageSize can be maximum of 100.
FromDateStringEnter a date from which the records need to be listed in MM/DD/YYYY format
ToDateStringEnter a date till which the records created are to be listed in MM/DD/YYYY format

Request Params

"OnlineAccess/ActivityLogRecords?RecipientId=63ce1ce9-8eef-4342-9f4c-006542f8eb50&Page=1&PageSize=100&FromDate=05/02/2023&ToDate=06/02/2024"

Response Body

FieldTypeDescription
ActivityLogRecordsObject[]Returns detailed information of the activity logs performed in online access portal
    DescriptionStringDescription of the activity log
    PlatformStringPlatform from which action is made
    DeviceStringDevice from which action is made
    IPAddressStringIP Address from which action is made
    ActionTsStringReturns date and time of action performed
PageNumberPulls the records listed in the page selected
TotalRecordsNumberTotal number of records
TotalPagesNumberTotal number of pages
PageSizeNumberNumber of records to be listed in each page
ErrorsObject[]Shows detailed error information
    IdStringReturns the validation error id
    NameStringName of the validation error
    MessageStringDescription of the validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"ActivityLogRecords": [
{
"Description": "Shawn Williams downloaded Form 1099 NEC",
"Platform": "WEB",
"Device": "Chrome(132.0.0)",
"IPAddress": "203.223.189.10",
"ActionTs": "2025-02-02 23:29:26 -05:00"
},
{
"Description": "Shawn Williams viewed Form 1099 NEC",
"Platform": "WEB",
"Device": "Chrome(132.0.0)",
"IPAddress": "203.223.189.10",
"ActionTs": "2025-02-02 23:29:21 -05:00"
},
{
"Description": "Shawn Williams e-signed the consent form for Snowdaze LLC",
"Platform": "WEB",
"Device": "Chrome(132.0.0)",
"IPAddress": "203.223.189.10",
"ActionTs": "2025-02-02 23:28:45 -05:00"
},
{
"Description": "Shawn Williams signed in",
"Platform": "WEB",
"Device": "Chrome(132.0.0)",
"IPAddress": "203.223.189.10",
"ActionTs": "2025-02-02 23:28:36 -05:00"
}
],
"Page": 1,
"TotalRecords": 4,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}