API - Get dashboards of specific organization

How can I get the dashboards of an specific organization using the API? It seems that the search endpoint does not offer a parameter to specify the organization.

Is there a way to get all the dashboard of an organization?

The example below works but it only returns the dashboards of a particular organization.

import requests

url = "https://dashboard.domain.tld/api/search?type=dash-db&limit=5000&sort=name_sort"

payload = {}
headers = {
  'Accept': 'application/json',
  'Authorization': 'Bearer glsa_xxxxxxxxxxxxxxxxxxxxxxxxxx'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

Were you able to get an answer for this. I am stuck at the same issue.