Using SuiteTalk REST, how can I list all account r...
# ask-stanley-ai
s
Using SuiteTalk REST, how can I list all account records that are available in a specific subsidiary?
c
AI generated answer (using internal Slack threads):
To list all account records that are available in a specific subsidiary using SuiteTalk REST, you would need to perform a GET request on the Account endpoint and filter the results by the subsidiary field. Here is a general example of how you might structure your GET request:
Copy code
code
GET /record/v1/account?expandSubResources=true&limit=1000&q=(subsidiary eq 'subsidiary_internal_id')
Replace 'subsidiary_internal_id' with the internal ID of the subsidiary you are interested in. This will return a list of all account records associated with that subsidiary. Please note that the actual syntax may vary depending on the specific version of SuiteTalk REST API you are using, and the above is a general guideline. Always refer to the official NetSuite SuiteTalk REST API documentation for the most accurate information. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.836907685
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834254801
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.833894491
Please provide your feedback on this answer.