curl --request POST \
--url https://api.dev.opencorpus.ai/logs/call-logs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"assistant_id": "<string>",
"room_name": "<string>",
"transcript": [
{}
],
"session_duration": 123,
"participant_name": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Save call log with transcript
curl --request POST \
--url https://api.dev.opencorpus.ai/logs/call-logs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"assistant_id": "<string>",
"room_name": "<string>",
"transcript": [
{}
],
"session_duration": 123,
"participant_name": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response