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

# Emailguard Show Spam Filter Test Details: Inputs, Cost &

> Show Spam Filter Test Details. 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=emailguard_show_spam_filter_test_details:{"email_test_uuid":"{{email_test_uuid}}"}' --json
```

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

## Input Schema

| Name                      | Type     | Required | Default | Description                 |
| ------------------------- | -------- | -------- | ------- | --------------------------- |
| `payload.email_test_uuid` | `string` | Yes      |         | The UUID of the email test. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieves details of a specific spam filter test.",
    "properties": {
      "email_test_uuid": {
        "type": "string",
        "description": "The UUID of the email test."
      }
    },
    "required": [
      "email_test_uuid"
    ],
    "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": {
              "uuid": {
                "type": "string"
              },
              "name": {
                "type": "string"
              },
              "status": {
                "type": "string"
              },
              "sent_from": {
                "type": "string"
              },
              "sending_server_ip": {
                "type": "string"
              },
              "score": {
                "type": "number"
              },
              "score_breakdown": {
                "type": "object",
                "properties": {
                  "ip": {
                    "type": "string"
                  },
                  "size": {
                    "type": "integer"
                  },
                  "user": {
                    "type": "string"
                  },
                  "score": {
                    "type": "number"
                  },
                  "action": {
                    "type": "string"
                  },
                  "subject": {
                    "type": "string"
                  },
                  "symbols": {
                    "type": "object",
                    "properties": {
                      "ASN": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "BCC": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "ARC_NA": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "MX_GOOD": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "number"
                          },
                          "options": {
                            "type": "array"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      },
                      "MIME_GOOD": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "number"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      },
                      "ARC_SIGNED": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "DKIM_TRACE": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "MIME_TRACE": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "TO_DN_NONE": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "FROM_HAS_DN": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "R_SPF_ALLOW": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      },
                      "TAGGED_RCPT": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "R_DKIM_ALLOW": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      },
                      "MISSING_XM_UA": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "RCVD_TLS_LAST": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "RCPT_COUNT_ONE": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "RCVD_COUNT_ONE": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "FROM_EQ_ENVFROM": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "BAD_REP_POLICIES": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "RBL_SORBS_RECENT": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "DMARC_POLICY_ALLOW": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      },
                      "RCVD_IN_DNSWL_NONE": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      },
                      "RWL_MAILSPIKE_GOOD": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "number"
                          },
                          "options": {
                            "type": "array",
                            "items": {
                              "type": "string"
                            }
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      },
                      "TO_MATCH_ENVRCPT_ALL": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "score": {
                            "type": "integer"
                          },
                          "description": {
                            "type": "string"
                          },
                          "metric_score": {
                            "type": "integer"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "rcpt_mime": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "rcpt_smtp": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "time_real": {
                    "type": "number"
                  },
                  "unix_time": {
                    "type": "integer"
                  },
                  "is_skipped": {
                    "type": "boolean"
                  },
                  "message-id": {
                    "type": "string"
                  },
                  "thresholds": {
                    "type": "object",
                    "properties": {
                      "reject": {
                        "type": "integer"
                      },
                      "greylist": {
                        "type": "integer"
                      },
                      "add header": {
                        "type": "integer"
                      }
                    },
                    "additionalProperties": false
                  },
                  "sender_mime": {
                    "type": "string"
                  },
                  "sender_smtp": {
                    "type": "string"
                  },
                  "required_score": {
                    "type": "integer"
                  }
                },
                "additionalProperties": false
              }
            },
            "additionalProperties": false
          }
        },
        "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 emailguard_show_spam_filter_test_details --payload '{
  "email_test_uuid": "string"
}' --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`.
