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

# Affinity: V2 Feedback Post

> Send Feedback. Affinity V2 Feedback Post reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Send Feedback.

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

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'affinity_v2_feedback_post',
  {
    "type": "mcp",
    "subject": "Introduction",
    "body": "Example message"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute affinity_v2_feedback_post --input '{
  "type": "mcp",
  "subject": "Introduction",
  "body": "Example message"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get affinity_v2_feedback_post --json` for the complete live contract.

## Input reference

Request body for sending feedback

| Name              | Type                        | Required | Default | Details                                                                                                                                                                                                 |
| ----------------- | --------------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.type`    | `"mcp" \| "api" \| "other"` | Yes      | —       | The type of feedback being submitted Allowed: `mcp`, `api`, `other`.                                                                                                                                    |
| `payload.subject` | `string`                    | Yes      | —       | Subject of the feedback Minimum length: 1. Maximum length: 255.                                                                                                                                         |
| `payload.body`    | `string`                    | Yes      | —       | The details of the feedback, please be thorough and include examples of what you're trying to accomplish and how the product could be improved to support it. Minimum length: 1. Maximum length: 10000. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request body for sending feedback",
    "properties": {
      "type": {
        "type": "string",
        "description": "The type of feedback being submitted",
        "enum": [
          "mcp",
          "api",
          "other"
        ]
      },
      "subject": {
        "type": "string",
        "description": "Subject of the feedback",
        "minLength": 1,
        "maxLength": 255
      },
      "body": {
        "type": "string",
        "description": "The details of the feedback, please be thorough and include examples of what you're trying to accomplish and how the product could be improved to support it.",
        "minLength": 1,
        "maxLength": 10000
      }
    },
    "required": [
      "type",
      "subject",
      "body"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name          | Type      | Required | Default | Details |
| ------------- | --------- | -------- | ------- | ------- |
| `result.data` | `unknown` | Yes      | —       | —       |
| `result.meta` | `object`  | No       | —       | —       |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {},
      "meta": {
        "type": "object",
        "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

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