> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inflection.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Zapier

> Send data from Zapier to Inflection using inbound webhooks.

<AccordionGroup>
  <Accordion title="Send webinar/event registration information from Zoom/Luma to Inflection via Zapier">
    <img src="https://mintcdn.com/inflection-4b2c0de4/0Fy2fPaKm7bhQlZX/images/connections/webhooks/zapier/01.png?fit=max&auto=format&n=0Fy2fPaKm7bhQlZX&q=85&s=a915a163c0881242b004829830e57fe3" alt="Zapier flow sending Zoom/Luma registration data to an Inflection webhook" width="433" height="371" data-path="images/connections/webhooks/zapier/01.png" />

    Payload -

    ```json theme={null}
    {
      "duration": "30",
      "email": "zap.zaplar@zapier.com",
      "id": "97561845135",
      "join_time": "2024-04-23T20:39:56Z",
      "participant_id": "12345",
      "participant_user_id": "12345",
      "participant_uuid": "62A78A28-E2ED-9ECA-CFDB-9DC35167E477",
      "start_time": "2024-04-23T20:39:56Z",
      "timezone": "America/Los_Angeles",
      "topic": "Sample meeting",
      "user_id": "12345",
      "user_name": "Jason Kotenko"
    }
    ```
  </Accordion>

  <Accordion title="Send to Inflection when a row gets updated with people info in Google Sheets using Zapier">
    <img src="https://mintcdn.com/inflection-4b2c0de4/0Fy2fPaKm7bhQlZX/images/connections/webhooks/zapier/02.png?fit=max&auto=format&n=0Fy2fPaKm7bhQlZX&q=85&s=62b2ceccd6ac368caa67a43454e9ad19" alt="Zapier flow sending updated Google Sheets rows to an Inflection webhook" width="409" height="357" data-path="images/connections/webhooks/zapier/02.png" />

    ```plain text theme={null}
    {
      "COL$A": "Sankalp",
      "COL$B": "sankalp@inflection.io",
      "COL$C": "7666066272",
      "id": "2",
      "row": "2"
    }
    ```
  </Accordion>

  <Accordion title="Send meeting bookers from Calendly to Inflection using Zapier">
    <img src="https://mintcdn.com/inflection-4b2c0de4/0Fy2fPaKm7bhQlZX/images/connections/webhooks/zapier/03.png?fit=max&auto=format&n=0Fy2fPaKm7bhQlZX&q=85&s=11f17e5d40768ed706778d4169fb04e6" alt="Zapier flow sending Calendly meeting bookers to an Inflection webhook" width="381" height="354" data-path="images/connections/webhooks/zapier/03.png" />

    ```json theme={null}
    {
      "cancel_url": "https://calendly.com/cancellations/6f8a5007-86cc-4058-8e08-4040f351cfc6",
      "created_at": "2025-01-08T11:20:32.608370Z",
      "email": "abc.sethi@gmail.com",
      "event": "https://api.calendly.com/scheduled_events/5ba532ad-4246-4ecd-aded-14b698f9ce24",
      "event_type": {
        "active": "True",
        "admin_managed": "False",
        "booking_method": "instant",
        "color": "#8247f5",
        "created_at": "2024-12-19T08:45:32.333866Z",
        "custom_questions": "[{'answer_choices': [], 'enabled': True, 'include_other': False, 'name': 'Please share anything that will help prepare for our meeting.', 'position': 0, 'required': False, 'type': 'text'}]",
        "deleted_at": "",
        "description_html": "",
        "description_plain": "",
        "duration": "30",
        "duration_options": "",
        "internal_note": "",
        "kind": "solo",
        "locations": "[{'kind': 'google_conference'}]",
        "name": "30 Minute Meeting",
        "pooling_type": "",
        "position": "0",
        "profile": {
          "name": "Sankalp khot",
          "owner": "https://api.calendly.com/users/4d9bcd69-2160-4517-8aff-cc3cf5b59894",
          "scheduling_url": "https://calendly.com/sankalp-inflection",
          "type": "User"
        }}
      }
    ```
  </Accordion>
</AccordionGroup>

We will be able to support almost all the use cases where Zapier has direct trigger from third party app, you just need to add webhook by Zapier flow step and call our endpoint to post data in JSON format

Follow these steps to set up a webhook in Zapier

1. Create a Zap
   1. Log in to Zapier → Click "Create Zap".
   2. Select a Trigger App (e.g., form submission, CRM update)
   3. Set up the Trigger Event and test it.
2. Add Webhook Action
   1. Click "+" → Search "Webhooks by Zapier" → Select POST
   2. Enter the Inflection.io Webhook URL
3. Configure Request
   1. Payload Type: JSON (Recommended)
   2. Data: Add key-value pairs.
   3. Headers: Include API keys if required.
4. Test & Activate
   1. Click "Test & Review" to send a sample request.
   2. Verify the response & troubleshoot if needed.
   3. Click "Publish Zap" to activate.
