Agent Message Feedback Details
List of valid attributes:
| Attribute | Description | Specifics |
|---|---|---|
| agent_message_feedback_id | ID of the feedback this detail belongs to | Cannot be set |
| note | Additional note | Optional; can be empty; must be at most 140 characters when present |
| share | Whether the feedback may be shared with the account admin | true or false; defaults to false |
| report_to_papershift | Whether to report to Papershift | true or false; defaults to false |
Create
Example request:
{ "data": { "type": "agent_message_feedback_details", "attributes": { "note": "the cited document is outdated", "share": true, "report_to_papershift": false } }}Example response:
{ "data": { "id": "f5139073-dc7d-434e-989e-99786b7535a1", "type": "agent_message_feedback_details", "attributes": { "agent_message_feedback_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "note": "the cited document is outdated", "share": true, "report_to_papershift": false } }}This endpoint creates details for an existing agent_message_feedback created
by the user.
HTTP Request
POST /api/v1/agent_message_feedbacks/:agent_message_feedback_id/details
URL Parameters
| Parameter | Description |
|---|---|
| agent_message_feedback_id | ID of the agent message feedback to attach details to |