Discussions
Our service partner for bank feeds integration in U.S. and Canada will undergo four (4) hours of planned maintenance on April 13 - 14, 2025.
Please be advised that our authorized Account Information Service Provider for the NetSuite Bank Feeds SuiteApp will undergo approximately four hours planned outage. Standard maintenance will take place to perform a database upgrade.
The schedule of the planned outage is on Sunday, 13 April 2025, from 11:00 p.m. Pacific Daylight Time (UTC – 7) to 3:00 a.m. Pacific Daylight Time (UTC – 7), Monday, 14 April 2025.
During the maintenance window, all connections and import requests to your financial institutions in the United States and Canada through the Bank Feeds SuiteApp will be unavailable. If you try to connect a new U.S. or Canada financial institution to NetSuite or manually initiate an import request, you will receive an error message.
To view the most recent bank feeds maintenance schedule, see Bank Feeds SuiteApp Maintenance Schedule, SuiteAnswers ID 94347.
Returning full journalEntry object from REST API
Hello, I'm using the /record/v1/journalentry/ endpoint to return a list of journal entries. According do the API Browser documentation, the return type is journalEntryCollection, and the journalEntryCollection contains a property items that's an array of journalEntry objects. However, when I call that endpoint, items is an array of links rather than journalEntry objects:
"items": [
{
"links": [
{
"rel": "self",
"href": "[domain]/services/rest/record/v1/journalentry/380289"
}
],
"id": "380289"
},
{
"links": [
{
"rel": "self",
"href": "[domain]/services/rest/record/v1/journalentry/380298"
}
],
"id": "380298"
}
}
Is there a way to get the full journalEntry objects instead?
UPDATE: I see in the documentation that ?expandSubResources=true can be added to certain endpoints to get the full subobjects, but that only works if I'm searching for an individual journalEntry, for example /record/v1/journalentry/380289?expandSubResources=true. Is there any way to do a similar thing when returning a list?