List the default template answers for a call
get /v1/calls/{call_id}/answers
Returns a list of answer objects.
Authorization
Section titled “Authorization”Requires the calls.read scope.
Path parameters
Section titled “Path parameters”| Name | Type | Required | Description |
|---|---|---|---|
call_id | string | Yes | — |
Example request
Section titled “Example request”curl "https://api.salesbud.com.br/v1/calls/call_01JEXAMPLE/answers" \ -H "Authorization: Bearer $SALESBUD_ACCESS_TOKEN"Example response
Section titled “Example response”{ "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"}Responses
Section titled “Responses”| Status | Description |
|---|---|
200 | Answers generated for the call owner context. |
401 | Missing or invalid credentials. |
403 | The token does not contain the required scope. |
404 | Resource not found in the authenticated company. |
429 | Client rate limit exceeded. |
503 | A required audit or rate-limit dependency is unavailable. |