Search for Organizations
Organizations API reference guide
This page describes the organizations endpoint.
Search organizations
GET /organizations
Search for organizations.
Query parameters
Attribute
Description
Required
searchText
string A string used to filter returned organizations. The query is executed with a wildcard prefix and suffix.
No
Response parameters
Attribute
Description
name
string The name of the organization.
Request example
The following request searches for organizations that contain Immuta in their name.
curl \
--request GET \
--header "Content-Type: application/json" \
--header "Authorization: Bearer dea464c07bd07300095caa8" \
https://your-immuta-url.com/organizations?searchText=immutaResponse example
{
"values": [
{
"name": "Immuta"
}
]
}Was this helpful?

