> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# Feishu Config

> Get the current Feishu channel configuration status (redacted)

<ResponseField name="app_id_configured" type="boolean">
  Whether the App ID is configured
</ResponseField>

<ResponseField name="app_secret_configured" type="boolean">
  Whether the App Secret is configured
</ResponseField>

<ResponseField name="bot_name" type="string">
  Bot name
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://zeus-api.agentspro.cn/channels/feishu/config
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "app_id_configured": true,
    "app_secret_configured": true,
    "bot_name": "Zeus Bot"
  }
  ```
</ResponseExample>
