Returns your organization's providers, newest first — the identity providers…
Returns your organization's providers, newest first — the identity providers your people sign in with, and the senders and connectors your applications go…
GET /v1/iam/providers
| Address | https://api.hanzo.ai/v1/iam/providers |
| Method | GET |
| Operation | listProviders |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns your organization's providers, newest first — the identity providers your people sign in with, and the senders and connectors your applications go through.
You see your own organization's providers and no one else's; which organization that is comes from your credentials, not from the request.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
owner | query | string | — |
Response
| Status | Body | Meaning |
|---|---|---|
200 | iam.listProvidersOut | ok |
200 body — 51 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
providers | body | iam.Provider[] | — | |
providers[].appId | body | string | — | |
providers[].bucket | body | string | — | |
providers[].category | body | string | — | |
providers[].cert | body | string | — | |
providers[].clientId | body | string | — | |
providers[].clientId2 | body | string | — | |
providers[].clientSecret | body | string | — | |
providers[].clientSecret2 | body | string | — | |
providers[].content | body | string | — | |
providers[].createdAt | body | string (date-time) | — | |
providers[].createdTime | body | string | — | |
providers[].customAuthUrl | body | string | — | |
providers[].customLogo | body | string | — | |
providers[].customTokenUrl | body | string | — | |
providers[].customUserInfoUrl | body | string | — | |
providers[].deleted | body | boolean | — | |
providers[].disableSsl | body | boolean | — | |
providers[].displayName | body | string | — | |
providers[].domain | body | string | — | |
providers[].emailRegex | body | string | — | |
providers[].enablePkce | body | boolean | — | |
providers[].enableProxy | body | boolean | — | |
providers[].enableSignAuthnRequest | body | boolean | — | |
providers[].endpoint | body | string | — | |
providers[].host | body | string | — | |
providers[].httpHeaders | body | object | — | |
providers[].httpHeaders.* | body | string | — | |
providers[].id | body | string | — | |
providers[].idP | body | string | — | |
providers[].intranetEndpoint | body | string | — | |
providers[].issuerUrl | body | string | — | |
providers[].metadata | body | string | — | |
providers[].method | body | string | — | |
providers[].name | body | string | — | |
providers[].owner | body | string | — | |
providers[].pathPrefix | body | string | — | |
providers[].port | body | integer | — | |
providers[].providerUrl | body | string | — | |
providers[].receiver | body | string | — | |
providers[].regionId | body | string | — | |
providers[].scopes | body | string | — | |
providers[].signName | body | string | — | |
providers[].sslMode | body | string | — | |
providers[].subType | body | string | — | |
providers[].templateCode | body | string | — | |
providers[].title | body | string | — | |
providers[].type | body | string | — | |
providers[].updatedAt | body | string (date-time) | — | |
providers[].userMapping | body | object | — | |
providers[].userMapping.* | body | string | — |
Failure carries the platform error shape — see Errors.
Examples
hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.
import { Configuration, IamApi } from 'hanzoai';
const api = new IamApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.listProviders();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import IamApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = IamApi(client).list_providers()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.IamAPI.ListProviders(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, iam_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = iam_api::list_providers(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.IamApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new IamApi(client).listProviders();curl https://api.hanzo.ai/v1/iam/providers \
-H "Authorization: Bearer $HANZO_API_KEY"Tool iam, op listProviders — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "iam",
"arguments": {
"op": "listProviders",
"input": {}
}
}
}'How is this guide?