Skip to main content
POST
/
channels
/
feishu
/
webhook
curl --request POST \
  --url https://zeus-api.agentspro.cn/channels/feishu/webhook \
  --header 'Content-Type: application/json' \
  --data '{
    "type": "url_verification",
    "challenge": "abc123",
    "token": "xxx"
  }'
{
  "challenge": "abc123"
}
The event subscription callback endpoint for the Feishu Open Platform. This endpoint does not require authentication and is called directly by Feishu servers.

Supported Event Types

Event TypeDescription
url_verificationURL verification (sent by Feishu during initial configuration)
im.message.receive_v1Receive user messages

Flow

  1. Feishu sends url_verification → returns { challenge } to complete verification
  2. User sends a message in Feishu → triggers im.message.receive_v1 event
  3. Deduplication check (event_id) → asynchronous background processing → quickly returns { code: 0 } to Feishu
curl --request POST \
  --url https://zeus-api.agentspro.cn/channels/feishu/webhook \
  --header 'Content-Type: application/json' \
  --data '{
    "type": "url_verification",
    "challenge": "abc123",
    "token": "xxx"
  }'
{
  "challenge": "abc123"
}