We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当前所有的 API 请求,都会默认过滤掉 enabled=false 的数据,可能存在一些场景,用户想拉取被软删除的数据,比如用来做审计。
enabled=false
显示声明返回结果需要包含软删除的数据
/api/v2/profiles?include_disabled=1&fields=username,id
返回数据:
"results": [ { "id": 1, "username": "admin", # 即使在 fields 参数中没有 enabled, 但是由于 include_deleted 的存在,会默认添加该字段返回 "enabled": true, }, # 已软删除的数据 { "id": 2, "username": "zhangsan", # 软删除判断标志 "enabled": false, } ]
The text was updated successfully, but these errors were encountered:
fix: TencentBlueKing#58 add api for exporting login log in saas & upd…
18be94a
…ate sdk due to #1
Merge pull request TencentBlueKing#1 from IuzreO/master
8b43c8a
feature: 审计导出功能实现
Merge pull request #90 from IMBlues/development
0196ad2
feat: #58 add api for exporting login log in saas & update sdk due to #1
Merge pull request #1 from IMBlues/dev-login
536bf39
fix: adjust css of login plain form
Successfully merging a pull request may close this issue.
一个想法:
显示声明返回结果需要包含软删除的数据
返回数据:
The text was updated successfully, but these errors were encountered: