Skip to main content
Solved

Query data for a single company


Forum|alt.badge.img
  • Freshman II
  • 12 replies

I am creating an integration with Acumatica and I would like to give the user an option on which of their companies they would like to connect.

However, when I query any data endpoint (such as a list of ledgers or journals), I receive the information for all the companies that belong to that user. This means it was irrelevant for the user to select which companies they wanted to connect.

Is there a query param that I can pass to the endpoints that will return only the data for the company I specify? I have not been able to find such a thing in the documentation. If not, what is the best approach for getting around this?

Any advice would be appreciated.

Best answer by Jonah

I’ve found that this is possible specifying the branch ID with the $filter query parameter

 

View original
Did this topic help you find an answer to your question?

6 replies

jinin
Pro I
Forum|alt.badge.img+11
  • Pro I
  • 701 replies
  • March 8, 2023

Hi @Jonah 

You can login the instance along with the tenant's name and check once.

Request
POST /auth/login HTTP/1.1
Host: [<Acumatica ERP instance URL>]/entity
Accept: application/json
Content-Type: application/json

{
   "name" : "admin",
   "password" : "123",
   "tenant" : "MyTenant",
   "branch" : "HEADOFFICE"  //Optional
}

 


Forum|alt.badge.img
  • Author
  • Freshman II
  • 12 replies
  • March 8, 2023

Hi @jinin, thank you for your response.

I have tried logging in like you suggested but I still receive the data for all branches, not just the branch I have specified.

For example, I am hitting the JournalTransaction endpoint and I want to only receive journals for the branch that I specify. However, I am receiving the journals for every company that is connected to this tenant.

Please let me know if this is possible.


jinin
Pro I
Forum|alt.badge.img+11
  • Pro I
  • 701 replies
  • March 8, 2023

Hi @Jonah ,

I ‘ve tried and able to fetch the data based on the tenant. I used the below endpoint to fetch the data.

API Request: /entity/Default/20.200.001/JournalTransaction

Method: GET

 

For login, used the request like below,

{
   "name" : "admin",
   "password" : "123",
   "tenant" : "MyTenant",   
}

Forum|alt.badge.img
  • Author
  • Freshman II
  • 12 replies
  • March 8, 2023

Hi @jinin.

Thank you, I can see how to get data for a tenant. I am asking how to fetch data based on companies / branches.

For example, I have Company A and Company B linked to MyTenant. I only want the data for Company A when I call JournalTransaction.


Chris Hackett
Community Manager
Forum|alt.badge.img
  • Acumatica Community Manager
  • 2757 replies
  • March 28, 2023

Hi @Jonah  were you able to find a solution? Thank you!


Forum|alt.badge.img
  • Author
  • Freshman II
  • 12 replies
  • Answer
  • April 3, 2023

I’ve found that this is possible specifying the branch ID with the $filter query parameter

 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings