curl --location --request POST 'https://open.feishu.cn/open-apis/suite/docs-api/search/object' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"search_key": "search key",
"count": 10,
"offset": 0,
"owner_ids": ["xxx", "xxx"],
"chat_ids": ["xxx", "xxx"],
"docs_types": ["doc", "sheet"]
}'
{
"code": 0,
"msg": "Success",
"data": {
"docs_entities": [
{
"docs_token": "xxx",
"docs_type": "doc",
"title": "xxx",
"owner_id": "xxx"
},
{
"docs_token": "xxx",
"docs_type": "sheet",
"title": "xxx",
"owner_id": "xxx"
}
],
"has_more": false,
"total": 10
}
}