organization_list
Return a list of the names of the site's organizations.
CKAN API token
In: header
the type of organization to list (default: 'group'), see docs for IGroupForm
sorting of the search results. Default: "title asc" string of field name and sort-order. The allowed fields are 'name', 'package_count' and 'title'
the maximum number of organizations returned. Default: 1000 when all_fields=false unless set in site's configuration ckan.group_and_organization_list_max. Default: 25 when all_fields=true unless set in site's configuration ckan.group_and_organization_list_all_fields_max
when limit is given, the offset to start returning organizations from
a list of names of the organizations to return, if given only organizations whose names are in this list will be returned
return organization dictionaries instead of just names. Only core fields are returned - get some more using the include_* options. Returning a list of packages is too expensive, so the packages property for each group is deprecated, but there is a count of the packages in the package_count property. (default: False)
if all_fields, include the full package_count (default: True)
if all_fields, include the organization extra fields (default: False)
if all_fields, include the organization tags (default: False)
if all_fields, include the organizations the organizations are in
if all_fields, include the organization users
curl -X POST "http://localhost:5000/api/3/action/organization_list" \ -H "Content-Type: application/json" \ -d '{}'