Quick Reference

EndpointMethodWebhookDescription
https://agents.gigaml.com/webhook/initiate-sessionPOSTServiceStart a new conversation with an agent
https://agents.gigaml.com/webhook/receive-messagePOSTServiceReceive a user message from the conversation
https://agents.gigaml.com/webhook/close-sessionPOSTServiceEnd the conversation session
https://company_name.com/send_messge_endpointPOSTClientReceive an agent message from the conversation
https://company_name.com/escalate_ticket_endpointPOSTClientEscalate the conversation

All endpoints require authentication with your API key.

Authentication

All webhook endpoints require authentication using an API key. Include your API key in the Authorization header as a Bearer token:

Authorization: Bearer YOUR_API_KEY

Integration Flow Overview

1

1. Initiate a session

Start a conversation with the agent using our /initiate-session endpoint

2

2. Send message

The agent sends the user a welcome message using your /send-message endpoint

3

3. Receive messages

Receive user messages using the /receive-message endpoint

4

4. Send message

The agent sends the user a message using your /send-message endpoint

5

5. Close the session

End the conversation using the /close-session endpoint