curl --location 'https://platform-api.convirza.com/v3/conversations/calls/notes' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"notes": [
{
"call_id": 123456,
"note": [
"Customer was interested in product demo"
]
},
{
"call_id": 123457,
"note": [
"Follow up scheduled for next week",
"Sent pricing information"
]
}
]
}'{
"code": 200,
"message": "Success",
"data": {
"message": "Notes added successfully",
"notes_added": 3
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}