Last updated May 15, 2025
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
- Log into your Tidyflow account.
- Go to Settings โ API Tokens.
- Click New Token.
- Give your token a name (e.g.
Make Integration
) and click Save. - Copy the token immediately โ it wonโt be shown again.
โ๏ธ Step 2: Set Up a Scenario in Make
- Log in to Make.com and create a new scenario.
- Add the HTTP module.
- Choose Make a request.
๐ Step 3: Configure the HTTP Request
Settings:
- Method:
GET
(orPOST
,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
. UseRaw
forPOST
/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.