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

# Automation Integration: Make

> How can I use Make to integrate Hireflix?

You can also connect directly to the Hireflix GraphQL API through Make.com using the built-in Hireflix module. This allows you to fetch interviews, invite candidates, or perform any other supported GraphQL operation—without writing a single line of backend code.

## Step 1: Add a Hireflix module

In your Make.com scenario, search for Hireflix. Then choose "Execute a GraphQL query" as the action.

## Step 2: Configure your request

Unlike Zapier, Make.com automatically includes the correct headers, so you only need to set the basic fields:

* **Method:** `POST`
* **Query:** Paste your GraphQL query here. You don't need to collapse it into one line like Zapier.

```graphql theme={null}
mutation InviteCandidate {
  Position(id: "650wdwd4228691562da4062b3") {
    invite(
      candidate: {
        name: "Greg"
        email: "greg@hireflix.com"
      }
    ) {
      id
      url {
        public
        short
      }
    }
  }
}
```

This is what it looks like (this is a different mutation): <img src="https://mintcdn.com/hireflixsl/0gEfLO0XqMPAZNSh/images/make-request-hireflix.png?fit=max&auto=format&n=0gEfLO0XqMPAZNSh&q=85&s=b865b8f3683a768c83beda027fa7137b" alt="Make request" width="911" height="1081" data-path="images/make-request-hireflix.png" />

## Run and test your query

Click Run once in Make to test your setup. If successful, you’ll see a structured response containing all requested fields.
