> ## 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.

# Fireflies Rule Executions By Meeting: Inputs, Cost & CLI

> List rule executions by meeting. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=fireflies_rule_executions_by_meeting:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                       | Type      | Required | Default | Description |
| -------------------------- | --------- | -------- | ------- | ----------- |
| `payload.limit`            | `integer` | No       |         |             |
| `payload.cursor`           | `string`  | No       |         |             |
| `payload.logs_per_meeting` | `integer` | No       |         |             |
| `payload.filters`          | `object`  | No       |         |             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Read team automation rule execution logs grouped by meeting.",
    "properties": {
      "limit": {
        "type": [
          "integer",
          "null"
        ]
      },
      "cursor": {
        "type": [
          "string",
          "null"
        ]
      },
      "logs_per_meeting": {
        "type": [
          "integer",
          "null"
        ]
      },
      "filters": {
        "type": [
          "object",
          "null"
        ],
        "properties": {
          "rule_id": {
            "type": [
              "string",
              "null"
            ]
          },
          "meeting_id": {
            "type": [
              "string",
              "null"
            ]
          },
          "date_from": {
            "type": [
              "string",
              "null"
            ]
          },
          "date_to": {
            "type": [
              "string",
              "null"
            ]
          },
          "is_test": {
            "type": [
              "boolean",
              "null"
            ]
          }
        },
        "additionalProperties": false
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `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": "Provider response payload.",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "rule_executions_by_meeting": {
                "type": "object",
                "properties": {
                  "meetings": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "meeting_id": {
                          "type": "string"
                        },
                        "meeting": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "title": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "organizer_email": {
                              "type": [
                                "string",
                                "null"
                              ],
                              "format": "email"
                            }
                          },
                          "required": [
                            "id"
                          ],
                          "additionalProperties": false
                        },
                        "resource_attributes": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "host": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "title": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "external": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "attendees": {
                              "type": [
                                "array",
                                "null"
                              ],
                              "items": {
                                "type": "string"
                              }
                            },
                            "organizer_email": {
                              "type": [
                                "string",
                                "null"
                              ],
                              "format": "email"
                            },
                            "user_group_ids": {
                              "type": [
                                "array",
                                "null"
                              ],
                              "items": {
                                "type": "string"
                              }
                            },
                            "host_user_group_ids": {
                              "type": [
                                "array",
                                "null"
                              ],
                              "items": {
                                "type": "string"
                              }
                            }
                          },
                          "additionalProperties": false
                        },
                        "executions": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "meeting_id": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "extension_id": {
                                "type": "string"
                              },
                              "extension_title": {
                                "type": "string"
                              },
                              "stopped_at": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "user_name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "meeting": {
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "properties": {
                                  "id": {
                                    "type": "string"
                                  },
                                  "title": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "organizer_email": {
                                    "type": [
                                      "string",
                                      "null"
                                    ],
                                    "format": "email"
                                  }
                                },
                                "required": [
                                  "id"
                                ],
                                "additionalProperties": false
                              },
                              "resource_attributes": {
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "properties": {
                                  "host": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "type": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "title": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "external": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "attendees": {
                                    "type": [
                                      "array",
                                      "null"
                                    ],
                                    "items": {
                                      "type": "string"
                                    }
                                  },
                                  "organizer_email": {
                                    "type": [
                                      "string",
                                      "null"
                                    ],
                                    "format": "email"
                                  },
                                  "user_group_ids": {
                                    "type": [
                                      "array",
                                      "null"
                                    ],
                                    "items": {
                                      "type": "string"
                                    }
                                  },
                                  "host_user_group_ids": {
                                    "type": [
                                      "array",
                                      "null"
                                    ],
                                    "items": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "additionalProperties": false
                              },
                              "share": {
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "properties": {
                                  "group_ids": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "additionalProperties": false
                              },
                              "channel": {
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "properties": {
                                  "channel_id": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "additionalProperties": false
                              },
                              "meeting_privacy": {
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "properties": {
                                  "privacy": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "additionalProperties": false
                              }
                            },
                            "required": [
                              "extension_id",
                              "extension_title"
                            ],
                            "additionalProperties": false
                          }
                        }
                      },
                      "required": [
                        "meeting_id",
                        "executions"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "has_more": {
                    "type": "boolean"
                  },
                  "next_cursor": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "required": [
                  "meetings",
                  "has_more"
                ],
                "additionalProperties": false
              }
            },
            "required": [
              "rule_executions_by_meeting"
            ],
            "additionalProperties": false
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "message": {
                  "type": "string"
                },
                "extensions": {
                  "type": "object",
                  "additionalProperties": true
                }
              },
              "required": [
                "message"
              ],
              "additionalProperties": true
            }
          }
        },
        "required": [
          "data"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute fireflies_rule_executions_by_meeting --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

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