Developer documentation
API token authentication, endpoint reference, trigger events, and OpenAPI documentation for the Real Connect Pro Zapier integration.
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.
| 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. |
curl https://realconnectpro.com/api/zapier/v1/me \
-H "Accept: application/json" \
-H "Authorization: Bearer {api_token}"