Integrations

Using Make.com with the Tidyflow API

You can use Make.com (formerly Integromat) to automate workflows with Tidyflow via our public API. Here’s how to get started.


🔑 Step 1: Create an API Token in Tidyflow

  1. Log into your Tidyflow account.
  2. Go to Settings → API Tokens.
  3. Click New Token.
  4. Give your token a name (e.g. Make Integration) and click Save.
  5. Copy the token immediately — it won’t be shown again.

⚙️ Step 2: Set Up a Scenario in Make

  1. Log in to Make.com and create a new scenario.
  2. Add the HTTP module.
  3. Choose Make a request.

🌐 Step 3: Configure the HTTP Request

Settings:

  • Method: GET (or POST, PUT, etc. depending on the API endpoint)
  • URL: https://app.tidyflow.com/api/v1/clients
  • Headers:
    • Authorization: Bearer YOUR_API_TOKEN
    • Content-Type: application/json (optional for GET)
  • Body Type: Leave empty for GET. Use Raw for POST/PUT requests.
  • Parse Response: Set to Yes

📥 Example: List Clients

GET Request:

GET https://app.tidyflow.com/api/v1/clients

Headers:

Authorization: Bearer YOUR_API_TOKEN

No body is required.


🧪 Test It

Click Run once in Make to test the request. If set up correctly, you’ll get a successful response you can use in the next steps of your scenario.

Was this page helpful?

What went wrong?

Thanks for your feedback.

Last updated September 22, 2025