curl --request POST \
--url https://api.example.com/insight/{rec_id}/generate/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"language": "<string>",
"report_language": "<string>",
"participant_count": 8,
"respondent_known_names": [],
"is_with_transcript": false,
"is_with_insight_report": false,
"goals": "<string>",
"notes": "<string>",
"guide": "<string>",
"custom_prompt": "<string>",
"report_types": [
"Q&A",
"General"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}curl --request POST \
--url https://api.example.com/insight/{rec_id}/generate/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"language": "<string>",
"report_language": "<string>",
"participant_count": 8,
"respondent_known_names": [],
"is_with_transcript": false,
"is_with_insight_report": false,
"goals": "<string>",
"notes": "<string>",
"guide": "<string>",
"custom_prompt": "<string>",
"report_types": [
"Q&A",
"General"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of participants from 1 to 15
1 <= x <= 15100002000020000Custom prompt for Custom report generation
15000Types of reports to generate: Q&A, General, JTBD (legacy), JTBD, Persona, Custom
Successful Response
Was this page helpful?