Updates context on an existing interview request. Accepts any combination of
contact_context, contact_name, and objective. At least one field must be provided.
contact_context and contact_name update the contact record associated with the request.
Context is stored in the contact’s notes field and used by Paige in every future interview prompt for that contact.objective updates the interview-specific goal on the request itself.Documentation Index
Fetch the complete documentation index at: https://docs.usehindsight.com/llms.txt
Use this file to discover all available pages before exploring further.
Copy for AI context
contact_context and contact_name update the contact record linked to the request. Context is stored in the contact’s notes field and included in every future interview prompt Paige runs for that contact.objective updates the interview-specific goal on the request itself, giving Paige a targeted focus for this particular interview.| Parameter | Type | Description |
|---|---|---|
id | integer | The interview_request_id returned when the interview was created via POST /interviews. |
| Field | Type | Description |
|---|---|---|
contact_context | string | object | Updated context about the contact. Overwrites the existing contact notes — merge manually if you want to preserve prior context. Accepts a plain string or JSON object (serialized automatically). |
contact_name | string | Updated display name for the contact. |
objective | string | Updated goal for this specific interview. Paige uses this when generating questions and conducting the conversation. |
| Field | Type | Description |
|---|---|---|
interview_request_id | integer | ID of the updated interview request. |
| Plan | Requests per Minute |
|---|---|
| Essentials | 60 |
| Growth | 300 |
| Enterprise | 1,000 |
| Code | Description |
|---|---|
bad_request | No fields provided, or invalid JSON. |
unauthorized | Invalid or missing API key. |
not_found | Interview request not found, or it belongs to a different org. |
rate_limit_exceeded | Too many requests. Check X-RateLimit-Reset and retry after. |
API key from Hindsight dashboard
The interview_request_id returned when the interview was created.
Updated context about the contact. Overwrites the existing contact notes. Used by Paige as background in every future interview prompt for this contact.
{
"title": "CTO",
"evaluation_notes": "Completed 30-day POC, main concern is pricing"
}Updated display name for the contact.
"Jane Smith"
Updated goal for this specific interview.
"Focus on why pricing was a blocker vs. Competitor X"
Interview request updated
ID of the updated interview request.
4821