How can I retrieve multiple organizations in one request using multiple ids?

So there is an API to get an organization by ID

curl --request GET \
  --url 'https://YOUR_DOMAIN/api/v2/organizations/ORG_ID' \
  --header 'authorization: Bearer MGMT_API_ACCESS_TOKEN'

But I want to retrieve multiple organizations. Is there any API where I can supply multiple org_ids and get their details?

Hey there @prabhu_axm welcome to the community!

Unfortunately, there is not a designated endpoint for this - Instead you’d need to get all Orgs and filter that way or make separate calls per org_id.

We are however always open to feedback!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.