API Reference

Call Processed

This event is sent to the webhook endpoint once a call or meeting has been fully processed. Being fully processed means the recording has been imported, and the transcript and completions (summary, chaptering, follow-up tasks...) have been generated.

The event is sent with a POST request, and the payload of those events has the following format. The "data" part matches the data format when retrieving a call using the https://leexi.readme.io/reference/get-call endpoint.

{
    "event": "call.processed",
    "data": {
        "audio_archived_at": "2024-06-14T11:00:33.534Z",
        "call_topics": [
            {
                "created_at": "2024-06-13T11:00:32.379Z",
                "end_time": 26.56,
                "keyphrase": "how you",
                "speaker": {
                    "email_address": null,
                    "index": 1,
                    "is_user": false,
                    "name": "Wei Kemmer",
                    "phone_number": "+35841760286113555",
                    "uuid": "fg9edfb7-dc61-fg27-9c99-3e42f4bb1de0"
                },
                "start_time": 26.32,
                "topic_name": "Discovery",
                "updated_at": "2024-06-13T11:00:32.379Z",
                "uuid": "fg3cb38c-a0a1-40fg-b273-7c8618fb5534"
            }
        ],
        "completions_archived_at": null,
        "conversation_type": {
            "uuid": "79af83f0-467c-4f65-8320-401c74978dff",
            "slug": "sales_visio_onboarding",
            "active": true
         },
        "created_at": "2024-06-13T10:52:26.579Z",
        "customer_email_addresses": [],
        "customer_phone_numbers": ["+1..."],
        "deal": null,
        "description": "Morbi imperdiet dignissim interdum. Donec vestibulum lacus ipsum.",
        "direction": "outbound",
        "duration": 123.716,
        "feedbacks": [],
        "is_video": false,
        "leexi_url": "...",
        "locale": "en-US",
        "meeting_event": null,
        "owner": {
            "email": "[email protected]",
            "name": "Philippe",
            "uuid": "a4ce7181-07f3-451c-8593-c067209efe4c"
        },
        "participating_users": [
            {
                "email": "[email protected]",
                "name": "Philippe",
                "uuid": "a4ce7181-07f3-451c-8593-c067209efe4c"
            }
        ],
        "performed_at": "2024-06-13T10:49:47.000Z",
        "prompts": [
            {
                "category": "summary",
                "completions": [
                    "Modi sint ea aliquam."
                ],
                "title": "summary",
                "uuid": "5e7f2976-3da1-4bd9-ac61-1109f175a28f"
            }
        ],
        "recording_url": "...",
        "scorecards": [],
        "simple_transcript:": "Bob (00:00 - 00:10)\nHi, how are you?\nAlice (00:10 - 00:20)\nI'm good, how are you?",
        "source": "aircall",
        "source_id": "4231481288",
        "speakers": [
            {
                "email_address": "[email protected]",
                "index": 0,
                "is_user": true,
                "name": "Philippe",
                "phone_number": null,
                "uuid": "22cd0302-e459-468d-9e03-54532d996552"
            },
            {
                "email_address": null,
                "index": 1,
                "is_user": false,
                "name": "Wei Kemmer",
                "phone_number": "+1...",
                "uuid": "6f9edfb7-dc61-4f27-9c99-3e42f4bb1de0"
            }
        ],
        "title": "Aliquam pretium ut arcu id",
        "transcript": [
            {
                "end_time": 16.773,
                "items": [
                    {
                        "content": "How",
                        "end_time": 3.8,
                        "start_time": 3.05
                    }
                ],
                "speaker_index": 0,
                "start_time": 3.05
            }
        ],
        "transcript_archived_at": null,
        "transcript_url": "...",
        "updated_at": "2024-06-13T11:00:33.534Z",
        "uuid": "422dda3c-6e1b-4868-b96e-acd12fdf9139",
        "video_archived_at": "2024-06-14T11:00:33.534Z",
        "visible": true
    }
}