Skip to main content
POST
/
v2
/
feedback
Send Feedback
curl --request POST \
  --url https://api.affinity.co/v2/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "mcp",
  "subject": "Issue with MCP tool response formatting",
  "body": "When using the MCP tool, the response formatting appears inconsistent"
}
'
{
  "errors": [
    {
      "code": "bad-request",
      "message": "🚨 Error! Sound the alarm! 🚨"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for sending feedback

type
enum<string>
required

The type of feedback being submitted

Available options:
mcp,
api,
other
Example:

"mcp"

subject
string
required

Subject of the feedback

Required string length: 1 - 255
Example:

"New tool for MCP Server"

body
string
required

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.

Required string length: 1 - 10000
Example:

"I'd like to be able to update a note via the MCP Server"

Response

No Content