Developer documentation

Real Connect Pro Zapier API

API token authentication, endpoint reference, trigger events, and OpenAPI documentation for the Real Connect Pro Zapier integration.

OpenAPI Specification

The public OpenAPI file is available at /openapi/zapier-v1.json. It describes the Zapier authentication test, searches, creates, polling triggers, and webhook subscription endpoints supported by version 1 of the integration.

Supported Endpoints

Method Path Purpose
GET /me Validate API token and return connected user details.
GET /connections Search or list connections.
POST /connections Create a connection.
GET /connections/{connection} Fetch one connection owned by the authenticated user.
PATCH /connections/{connection} Update a connection.
POST /connections/{connection}/notes Add a note to a connection.
GET /groups Search or list groups for dropdowns.
POST /todos Create a todo.
GET /transactions Search or list transactions.
POST /transactions Create a transaction.
GET /triggers/connections Polling trigger for new or updated connections.
GET /triggers/todos Polling trigger for new or completed todos.
GET /triggers/transactions Polling trigger for new transactions.
POST /hooks Subscribe Zapier to an instant trigger webhook.
DELETE /hooks/{zapierWebhookSubscription} Disable a Zapier webhook subscription.

Zapier Auth Fields

API Token
Required password field. Generated from Real Connect Pro Settings.
Base URL
Optional. Defaults to https://realconnectpro.com and is only changed for staging or tunnel testing.

Webhook Events

  • connection.created
  • connection.updated
  • todo.created
  • todo.completed
  • transaction.created

Example Request

curl https://realconnectpro.com/api/zapier/v1/me \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {api_token}"