跳转到内容

Notify

  • Base URL: https://stardust.ticos.cn
  • POST /agent/notify
  • POST /knowledge/notify
  • Endpoint: POST /agent/notify
  • Content-Type: application/json
  • 请求体:
    • agent_id(必填):Agent ID
curl --location 'https://stardust.ticos.cn/agent/notify' \
--header 'Content-Type: application/json' \
--data '{"agent_id": "26"}'
{
"code": 0,
"message": "notify success"
}
  • Endpoint: POST /knowledge/notify
  • Content-Type: application/json
  • 请求体:空对象或按服务端要求传参
curl --location 'https://stardust.ticos.cn/knowledge/notify' \
--header 'Content-Type: application/json' \
--data '{}'
{
"code": 0,
"message": "notify success"
}