Skip to content

List the default template answers for a meeting

get /v1/meetings/{meeting_id}/answers

Returns a list of answer objects.

Requires the meetings.read scope.

NameTypeRequiredDescription
meeting_idstringYes
Terminal window
curl "https://api.salesbud.com.br/v1/meetings/mtg_01JEXAMPLE/answers" \
-H "Authorization: Bearer $SALESBUD_ACCESS_TOKEN"
200 OK
{
"data": [
{
"id": "ans_ExampleAnswer01",
"object": "meeting_answer",
"question": {
"id": "qst_ExampleQuestion01",
"text": "What pains did the customer describe?",
"type": "text",
"order": 1
},
"answer": "Manual CRM entry after every call, about two hours a day.",
"updated_at": "2026-01-14T14:10:43.000Z"
}
],
"request_id": "req_ExampleRequestId01"
}
StatusDescription
200Answers generated for the meeting owner context.
401Missing or invalid credentials.
403The token does not contain the required scope.
404Resource not found in the authenticated company.
429Client rate limit exceeded.
503A required audit or rate-limit dependency is unavailable.