For the complete documentation index, see llms.txt. This page is also available as Markdown.

Introduction

The FluidForms API is a private API utilized by the FluidForms applications, as well as by the Zapier integration. The documentation here will focus purely on the endpoints that support the Zapier integration and serve as a reference for the Zapier support team.

Authentication

The Zapier integration integrates with the FluidForms authorization server using OAuth2.0. Successful authentication and authorization will result in an access token and refresh token to be issued to Zapier that can be used in requests to the documented endpoints.

To make calls to the API, send the access token in the Authorization HTTP header using the Bearer authentication scheme.

curl -H "Authorization: Bearer eyJhb..." https://fluidforms.co/api/zapier/forms

Trying to perform any request with an invalid or expired access token will result in a 403 Forbidden response.

Base URL

All endpoints documented here are associated with the following base URL: https://fluidforms.co

Last updated