API Reference
- Contacts
- Accounts
- Feedback
- Conversations
Feedback
Create a new Feedback Record
POST
/
feedbacks
Copy
Ask AI
curl --request POST \
--url https://insights.reforge.com/api/v1/feedbacks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"description": "<string>",
"isTranscript": true,
"tags": [
"<string>"
],
"contact": {
"name": "<string>",
"email": "<string>",
"sourceData": {}
},
"contactId": "<string>",
"account": {
"name": "<string>",
"domain": "<string>",
"contractValue": 123,
"sourceData": {}
},
"accountId": "<string>",
"source": "<string>",
"sourceId": "<string>",
"shouldUnflattenSourceData": true,
"sourceData": {},
"rating": 123
}'
Copy
Ask AI
{
"feedback": {
"id": "<string>",
"description": "<string>",
"customerId": "<string>",
"projectId": "<string>",
"rating": 123,
"sourceId": "<string>",
"sourceData": {}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
The feedback was created successfully
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://insights.reforge.com/api/v1/feedbacks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"description": "<string>",
"isTranscript": true,
"tags": [
"<string>"
],
"contact": {
"name": "<string>",
"email": "<string>",
"sourceData": {}
},
"contactId": "<string>",
"account": {
"name": "<string>",
"domain": "<string>",
"contractValue": 123,
"sourceData": {}
},
"accountId": "<string>",
"source": "<string>",
"sourceId": "<string>",
"shouldUnflattenSourceData": true,
"sourceData": {},
"rating": 123
}'
Copy
Ask AI
{
"feedback": {
"id": "<string>",
"description": "<string>",
"customerId": "<string>",
"projectId": "<string>",
"rating": 123,
"sourceId": "<string>",
"sourceData": {}
}
}
Assistant
Responses are generated using AI and may contain mistakes.