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

# Integrate with Zapier

> Next Matter can make any Rest API call and send data to other systems or integration layers so it can be used further.

## Set up the connection

1. In the Zapier editor, click to open the **Trigger** step.

2. In the **Choose app & event** section, click the **Trigger Event** dropdown menu and select **Catch Hook**.

3. Copy the webhook's URL.

4. In your Next Matter portal, click **Workflows**.

5. Open the process that should send data to Zapier and add an **Integrations > Custom Integration** step.

6. Click **Settings** and enter the following data:

   <Tip>
     In the same way, you can integrate to any other system that uses webhooks.
   </Tip>

   * **Method**: POST

   * **URL**: `WEBHOOK_URL`

   * **Headers**: Content-Type: application/json

   * In the **Body** enter the values you want to send to Zapier. These might be the data references of the data you collected in previous steps. For example, the body might look like the following:

     <CodeGroup>
       ```json JSON theme={null}
       { "titleofprocess": "{{instance_name}}", //replace these placeholders with data references 
        "linktoinstance": "{{instance_url}}", 
        "creator": "{{instance_lead_user}}", 
        "name": "{1. Enter some data - Name - Input}", 
        "favorite_number": "{1. Enter some data - Favorite Number - Input}"
       }
       ```
     </CodeGroup>
