Skip to main content

DeleteLogsQuerySchema

delete_allboolean

When true, deletes all logs in the account, ignoring other filters. When false, only logs matching the supplied filters are deleted.

Default: false
from_dateinteger

Lower bound of the log creation date range to delete, as a Unix timestamp.

Default: null
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.

Default: null
DeleteLogsQuerySchema
{
"delete_all": false,
"from_date": null,
"model[]": [
"string"
],
"tag[]": [
"string"
],
"to_date": null
}