For Agents
Send a Google review invitation to a single customer via the one POST endpoint exposed by the GoodReviews campaign API.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the GoodReviews API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with GoodReviews API.
Send a single Google review invitation tied to a campaign
Trigger a review request immediately after a job-complete event in a CRM
Pass customer name, email, and phone fields into a configured campaign
Drop a review request into an existing Zapier or Make automation
GET STARTED
Use for: Send a Google review invitation to a customer who just completed a service, I want to fire a review request from my CRM into GoodReviews, Trigger a single campaign invitation by campaign ID and customer email, Check that the API key works by sending a test invitation
Not supported: Does not handle review monitoring, response automation, sentiment analysis, or non-Google review platforms — use for sending a single Google review invitation tied to a configured GoodReviews campaign only.
The GoodReviews API exposes a single endpoint, POST /api/zapier/campaign/single, for sending a Google review invitation to one customer at a time. It is designed as the integration surface for Zapier and similar low-code platforms so businesses can fire a review request whenever a job is marked complete in their CRM, POS, or scheduling tool. Authentication is an X-APIKEY header, and the payload identifies the campaign and the customer who should receive the invitation.
Use one X-APIKEY token to authenticate every campaign request
Patterns agents use GoodReviews API for, with concrete tasks.
★ Post-Service Review Request
Service businesses fire a Google review invitation the moment a job is marked complete in their CRM. POST /api/zapier/campaign/single accepts a campaign ID and the customer's contact details so the right wording is used, and GoodReviews handles the email or SMS delivery and click-through to the Google Business profile.
POST /api/zapier/campaign/single with campaign id cmp_42 and the customer's name, email, and phone after a job-complete webhook fires.
Trigger from a POS Event
Retailers connect their point-of-sale system to GoodReviews so each transaction over a threshold sends a review invite a few hours later. The single-endpoint design fits low-code platforms perfectly — one Zap or Make scenario maps a POS receipt into a campaign request without custom code.
Read a POS webhook for a sale over £50, wait 4 hours, then send a single GoodReviews campaign invitation to the customer's email.
AI Workflow Step via Jentic
An AI agent that already orchestrates customer-facing follow-up can add a review-request step by calling GoodReviews through Jentic. Because the API has only one operation, the agent only needs to load one schema, supply the campaign ID and customer contact, and execute — Jentic handles the X-APIKEY injection.
Send a GoodReviews campaign invitation for campaign cmp_loyalty to the customer who just left a 5-star CSAT response.
1 endpoints — the goodreviews api exposes a single endpoint, post /api/zapier/campaign/single, for sending a google review invitation to one customer at a time.
METHOD
PATH
DESCRIPTION
/api/zapier/campaign/single
Send a single campaign invitation
/api/zapier/campaign/single
Send a single campaign invitation
Three things that make agents converge on Jentic-routed access.
Credential isolation
GoodReviews X-APIKEY values are stored encrypted in the Jentic vault (MAXsystem) and scoped to one GoodReviews account. Agents receive a short-lived execution handle, so the API key never enters the model context.
Intent-based discovery
Agents search Jentic by intent (e.g. 'send a google review invitation') and Jentic returns the GoodReviews POST /api/zapier/campaign/single operation with its input schema.
Time to first call
Direct GoodReviews integration: a few hours of Zapier or HTTP wiring. Through Jentic: under 10 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using GoodReviews API through Jentic.
What authentication does the GoodReviews API use?
The GoodReviews API uses an X-APIKEY header (apiKey scheme). Through Jentic the key is stored encrypted in the vault and scoped to your GoodReviews account, so the raw key never enters the agent's context.
Can I send a review invitation with one API call?
Yes. POST /api/zapier/campaign/single accepts a campaign ID and the customer's name, email, and phone, and GoodReviews handles the email or SMS delivery using the wording configured for that campaign in the GoodReviews dashboard.
What are the rate limits for the GoodReviews API?
GoodReviews applies per-account rate limits sized for typical Zapier traffic. The OpenAPI spec does not encode exact numbers, so check the GoodReviews dashboard or support team before running large bulk imports — for high-volume sends, use a queued automation rather than a tight loop.
How do I add GoodReviews to an automation through Jentic?
Search Jentic for 'send a goodreviews campaign invitation', load the schema for POST /api/zapier/campaign/single, and execute with your campaign ID and customer contact. Jentic injects the X-APIKEY at execution so the agent only handles business arguments.
Does the API support batch invitations in one call?
No. The exposed endpoint is /api/zapier/campaign/single, which sends one invitation per request. For bulk runs, loop with rate-aware delay or use the GoodReviews dashboard's CSV import.