Organizations API
Audience: All Immuta Users
Content Summary: This page describes the
organizations
endpoint.
Note
Additional fields may be included in some responses you receive; however, these attributes are for internal purposes and are therefore undocumented.
Search Organizations
Endpoint
Method | Path | Purpose |
---|---|---|
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=immuta
Response Example
{
"values": [
{
"name": "Immuta"
}
]
}