> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho CRM: README

> Create an Audit Log Export job. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Create an Audit Log Export job.

<Info>
  Tool ID: `zoho_crm_audit_log_export_create_audit_log_export`
</Info>

## Run this action

This action has conditional or dynamic input fields that cannot be represented by a reliable static example.

Inspect the live contract before executing it:

```bash theme={null}
deepline tools get zoho_crm_audit_log_export_create_audit_log_export --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "audit_log_export": [
      {
        "code": "SCHEDULED",
        "details": {
          "id": "id_123"
        },
        "message": "Example message"
      }
    ]
  }
}
```

Use `deepline tools get zoho_crm_audit_log_export_create_audit_log_export --json` for the latest machine-readable contract.

## Input reference

Request body for creating an audit log export job.

| Name                       | Type    | Required | Default | Details                                                          |
| -------------------------- | ------- | -------- | ------- | ---------------------------------------------------------------- |
| `payload.audit_log_export` | `array` | Yes      | —       | List of audit log export jobs to be created. Maximum items: 100. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request body for creating an audit log export job.",
    "properties": {
      "audit_log_export": {
        "type": "array",
        "description": "List of audit log export jobs to be created.",
        "maxItems": 100,
        "items": {
          "type": "object",
          "description": "Audit log export job details.",
          "properties": {
            "criteria": {
              "type": "object",
              "description": "Filter criteria for data selection supporting both simple field-based filters and complex grouped filters with logical operators",
              "anyOf": [
                {
                  "type": "object",
                  "description": "Simple field-based filter criterion with single field, comparator, and value",
                  "properties": {
                    "field": {
                      "type": "object",
                      "description": "Field reference for filter operations with minimal required properties",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "Field identifier (optional for filter operations)",
                          "format": "int64"
                        },
                        "api_name": {
                          "type": "string",
                          "description": "Field API name for filter application. Supports relationship notation (e.g., 'Deals__r.Stage')",
                          "maxLength": 255
                        }
                      },
                      "required": [
                        "api_name"
                      ],
                      "additionalProperties": true
                    },
                    "comparator": {
                      "type": "string",
                      "description": "Comparison operator. Note: allowed_groups.filters only supports 'in' for allowed_values context.",
                      "enum": [
                        "equal",
                        "not_equal",
                        "like",
                        "not_like",
                        "starts_with",
                        "ends_with",
                        "contains",
                        "not_contains",
                        "greater_than",
                        "greater_equal",
                        "less_equal",
                        "less_than",
                        "in",
                        "not_in",
                        "between"
                      ]
                    },
                    "value": {
                      "type": "object",
                      "additionalProperties": true
                    },
                    "type": {
                      "type": "string",
                      "description": "Indicates if the value is a direct value or a system variable placeholder",
                      "enum": [
                        "merge_field",
                        "pre_defined",
                        "value",
                        "field"
                      ]
                    }
                  },
                  "required": [
                    "field",
                    "comparator",
                    "value"
                  ],
                  "additionalProperties": false
                },
                {
                  "type": "object",
                  "description": "Grouped filter criterion containing multiple filter conditions with logical operators for complex filtering logic",
                  "properties": {
                    "group": {
                      "type": "array",
                      "description": "Array of filter conditions to be grouped together with the specified logical operator",
                      "minItems": 2,
                      "maxItems": 25,
                      "items": {
                        "type": "object",
                        "additionalProperties": true
                      }
                    },
                    "group_operator": {
                      "type": "string",
                      "description": "Logical operator to apply between filter conditions in the group",
                      "enum": [
                        "AND",
                        "OR"
                      ]
                    }
                  },
                  "required": [
                    "group",
                    "group_operator"
                  ],
                  "additionalProperties": false
                }
              ],
              "additionalProperties": true
            }
          },
          "required": [
            "criteria"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "audit_log_export"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                        | Type          | Required | Default | Details                                                        |
| ------------------------------------------- | ------------- | -------- | ------- | -------------------------------------------------------------- |
| `result.data`                               | `object`      | Yes      | —       | Success response object for Create Audit Log Export.           |
| `result.data.audit_log_export`              | `array`       | No       | —       | List of audit log export job responses. Maximum items: 1.      |
| `result.data.audit_log_export[].code`       | `"SCHEDULED"` | No       | —       | Status code for the export job. Allowed: `SCHEDULED`.          |
| `result.data.audit_log_export[].details`    | `object`      | No       | —       | Additional details for the export job.                         |
| `result.data.audit_log_export[].details.id` | `string`      | No       | —       | Unique identifier for the export job. Maximum length: 64.      |
| `result.data.audit_log_export[].message`    | `string`      | No       | —       | Message describing the export job status. Maximum length: 256. |
| `result.data.audit_log_export[].status`     | `"success"`   | No       | —       | Status of the export job. Allowed: `success`.                  |
| `result.meta`                               | `object`      | No       | —       | Additional response metadata (status, paging).                 |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Success response object for Create Audit Log Export.",
        "properties": {
          "audit_log_export": {
            "type": "array",
            "description": "List of audit log export job responses.",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Audit log export job response details.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Status code for the export job.",
                  "enum": [
                    "SCHEDULED"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "Additional details for the export job.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier for the export job.",
                      "maxLength": 64
                    }
                  },
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "Message describing the export job status.",
                  "maxLength": 256
                },
                "status": {
                  "type": "string",
                  "description": "Status of the export job.",
                  "enum": [
                    "success"
                  ]
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
