WorkOS
audit_logs.exports.create
Create an Audit Log Export. Exports are scoped to a single organization within a specified date range.
Remote workos
Other tools also called audit_logs.exports.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"actors": {
"type": "array",
"items": {
"type": "string"
},
"description": "Deprecated. Use `actor_names` instead."
},
"actions": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of actions to filter against."
},
"targets": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of target types to filter against."
},
"actor_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of actor IDs to filter against."
},
"range_end": {
"type": "string",
"description": "ISO-8601 value for end of the export range."
},
"actor_names": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of actor names to filter against."
},
"range_start": {
"type": "string",
"description": "ISO-8601 value for start of the export range."
},
"organization_id": {
"type": "string",
"description": "The unique ID of the Organization."
}
}
}