Notification message not received as expected

After adding notification config to tests, neither manual nor GitHub actions tests received the expected notification message.

The configuration is webhook, the channel is lark (feishu)

If you need to implement notifications on Lark via webhook, you might need to configure a Lark webhook trigger. You can refer to Lark platform documentation here: Use webhook triggers

I have created a webhook robot in the group and configured the address, but lark cannot receive the message; I also configured the email and did not receive the notification

Oh, I received a notification on my gmail and slack. It seems that Lark’s corporate email and webhook are not supported (maybe?)

Hi, thanks for your patience and for sharing your findings!
It looks like Lark’s webhook and corporate email may have some limitations when integrating with external services. Based on Lark’s documentation, you might need to use BotBuilder to enable notifications.
You can try:

  1. Create a Webhook Trigger in BotBuilder.
  2. Copy the provided URL and configure it in Apidog.
  3. Format the request payload as:

{
“event”: “”,
“title”: “”,
“content”: “”,
“appLink”: “”
}

  1. Add a push message step using the Webhook Trigger’s context.
    One thing to keep in mind—BotBuilder is only available in select regions, so it’s worth checking Lark’s official documentation to confirm availability.
    Glad to hear that Gmail and Slack notifications are working! Let me know if you need any further help.