Skip to main content
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.
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): Make request

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.