DeleteLogsQuerySchema
delete_allboolean
When true, deletes all logs in the account, ignoring other filters. When false, only logs matching the supplied filters are deleted.
from_dateinteger
Lower bound of the log creation date range to delete, as a Unix timestamp.
model[]string[]
Restrict deletion to logs generated by these model names.
tag[]string[]
Restrict deletion to logs carrying any of these tags.
to_dateinteger
Upper bound of the log creation date range to delete, as a Unix timestamp.
DeleteLogsQuerySchema
{
"delete_all": false,
"from_date": null,
"model[]": [
"string"
],
"tag[]": [
"string"
],
"to_date": null
}
Was this page helpful?