This page gives an overview of various statuses mentioned in the web Console (https://console.urjanet.com). These aren't all directly correlated with statuses in the API, but it will be outlined how to reproduce them.
Console Status | Description | API Search |
---|
All | The full list of all credentials in the system | N/A |
Issues | The list of all credentials that aren't in a successful state | /credentials?search=status=in=(ACTION_REQUIRED,PENDING) |
Enabled | This list of all credentials for which the system is extracting data | /credentials?search=enabled==true |
Disabled | This list of all credentials that have been disabled; the system will not attempt to extract data for these | /credentials?search=enabled==false |
Console Status | Description | API Search |
---|
All | This full list of accounts in the system | N/A |
New | The list of enabled accounts that were first discovered in the past month. The date value in the search is dynamic based on the current date. | /accounts?search=enabled==true;firstExtractedDate=ge=2023-10-16 |
Old | The list of enabled accounts with OLD status, which means that it's been 15 days since we expected the next statement to post and we haven't yet seen it. | /accounts?search=enabled==true;status==OLD |
Enabled | The list of accounts that are still being targeted for data extraction | /accounts?search=enabled==true |
Disabled | The list of accounts that are not being targeted for data extraction | /accounts?search=enabled==false |
Console Status | Description | API Search |
---|
Active Meters | This list of meters in the system that are up to date with the most recent statement. | /meters?search=status==CURRENT |
New Meters | The list of meters that have been discovered in the past month | /meters?search=createdDate=ge=2023-10-16 |
All Meters | The full list of all meters in the system | N/A |
Missing Site | The list of meters that are not associated with a Site record | /meters?search=siteId=isnull=0 |
Console Status | Description | API Search |
---|
All Files | The full list of files that have been submitted. | N/A |
Successful Files | The list of files that have been successfully processed with statement data stored in the system. | /files?search=fileStatus==SUCCESS |
Failure Files | The list of files that resulted in a terminal failure (several reasons this may happen) | /files?search=fileStatus==FAILURE |
Pending Files | The list of files that had an issue that we are investigating and may later move to a successful state | /files?search=fileStatus==PENDING |