Search results for contact api
316 articles found
-
REST API V4 / Contacts
The contacts API allows you to fetch, add, edit, and delete contacts. Contact Properties Attribute Type Description ID integer The system ID of the contact data object The core properties of the
-
REST API V3 / Contact / Get
URL GET /wp-json/gh/v3/contacts Method This endpoint supports the GET method Request This endpoint provides multiple ways of searching and retrieving contact information. Here are the parameters you
-
REST API V3 / Contact / Delete
URL DELETE /wp-json/gh/v3/contacts Method This endpoint supports the DELETE method. Request To delete a contact record you must pass these arguments. PARAM TYPE REQUIRED EXAMPLE id_or_email string |
-
REST API V3 / Contact / Update
URL PUT|PATCH /wp-json/gh/v3/contacts Method This endpoint supports PUT or PATCH Request To update a contact record you must pass these arguments. PARAM TYPE REQUIRED EXAMPLE id_or_email string|int
-
REST API V3 / Contact / Create
URI POST /wp-json/gh/v3/contacts Method This endpoint supports the POST method Request You can pass any relevant contact arguments to the contacts endpoint plus additional metadata. PARAM TYPE
-
Rest API Contacts
Groundhogg provides the /contacts/ endpoint. The contacts endpoint allows users to query the contact table inside the database and let you perform operations on contacts. This endpoint supports GET,
-
REST API V3 / Contacts / Tags / Get
URL GET /wp-json/gh/v3/contacts/tags Method This endpoint supports the GET method. Request This endpoint provides functionality to get all the tags applied to the contact. PARAM TYPE REQUIRED
-
Plugin API REST Endpoint
You can use the Plugin API REST endpoint as an alternative to the Webhook Listener if the contact has already been registered on your site. You can send a webhook request to this endpoint call_name,
-
REST API V4 / Deals
The deals API lets you fetch, add, edit, and delete deals. Deal Properties Attribute Type Description ID integer The system ID of the deal data object The core properties of the deal contain
-
REST API V4 / Notes
The notes API allows you to fetch, add, edit, and delete notes. Note Properties Attribute Type Description ID integer The system ID of the note data object The core properties of the note containing
-
REST API Playground
The REST API Playground is a state-of-the-art, interactive platform that allows developers to experiment with various REST API endpoints in a controlled and educational setting. It is designed to
-
Meta Conversions API Integration: Introduction
With Groundhogg’s Meta Conversions API Integration, you can send conversion events directly from your funnels to Meta (Facebook) for better tracking, optimization, and retargeting. Follow these steps
-
REST API V3 / Emails / Send
URL POST /wp-json/gh/v3/emails/send Method This endpoint supports the POST method. Request This endpoint provides functionality to send email to the contact. PARAM TYPE REQUIRED DESCRIPTION
-
REST API V3 / Tags / Manage
URL Apply Tags PUT /wp-json/gh/v3/contacts/apply_tags or PUT /wp-json/gh/v3/tags/apply Remove Tags PUT /wp-json/gh/v3/contacts/apply_tags or PUT /wp-json/gh/v3/tags/remove Method This endpoint
-
REST API V3 / SMS / Send
URL POST /wp-json/gh/v3/sms/send Method This endpoint supports the POST method. Request This endpoint provides functionality to send SMS to the contact. PARAM TYPE REQUIRED DESCRIPTION id_or_email
-
Introduction to Reporting
Groundhogg's reporting dashboard provides incredible insight into how your list is interacting with your information and consuming your content. You can access the Reporting dashboard by selecting "
-
Adding custom tabs and fields to the contact screen
Custom tabs and fields can be added to the contact screen using the plugins API and the contact meta DB. You can see and read how on our Github or using the same code below. <?php class My_Custom_Tab
-
REST API Errors
When working with REST APIs, common errors include: Client-Side Errors 1. 400 Bad Request: Malformed JSON, missing/invalid parameters. 2. 401 Unauthorized: Incorrect/missing authentication
-
Contact Files
What are Files? On the Contact page, you'll find the Files tab, where you can conveniently store files associated with this specific contact. The files are stored on your host in the
-
Contact Activity
You can keep track of the contact's activities. What are activities? The "Activity" tab provides a log of events that occur for this contact. Events like: Logged In / Logged Out Page Visits
-
Contact Notes
You can keep track of detailed contact information by using the Contact Notes feature. What are notes? Notes allow you to store detailed information about a contact using a WYSIWYG editor. For
-
Contact Reporting
Upon selecting the "Contacts" tab a report specifically for Contacts is presented with charts and tables. You can refine your data by utilizing the date range selector to focus on a specific time
-
Contact Columns
When you visit Groundhogg > Contacts you will be presented with a list of Contacts. This list view can be customized to your liking. Selecting what columns to display Managing columns can become
-
REST API / Authentication
The REST API Supports three different methods of authentication at this point in time. Groundhogg API Keys WordPress Application Passwords WordPress REST Nonce Groundhogg API Keys To use an API key
-
Action: Plugin API Action
If you would like to create your own custom Action use the Plugin API Action. To add the Plugin API Action to the funnel flow, either click the "+" at the branch and click the Plugin API Action step
-
Benchmark: Plugin API Benchmark
The Benchmark "Plugin API Benchmark" provides a way to create your own custom benchmark. Drag and drop the "Plugin API Benchmark" Benchmark over into the flow on the left. You will be presented with
-
Elastic Email Integration: Connect email API
Elastic Email says they can send emails faster and more reliably, you can make use of their REST API within Groundhogg to know yourself. One of the cool things about our integration is that with it,
-
Contact Birthdays: Introduction
Wishing a Happy Birthday to your clients opens up a new possibility for the business and Groundhogg has got you covered with the Contacts Birthday plugin. Groundhogg's contact plugin can be used to
-
WooCommerce: Contact Metadata
Additional information about a Contact's purchases can be found in the metadata box in the right column of each Contact. Total Customer Value Successful Orders Order ID Order Status Order date Order
-
REST API V3 / Tags / Get
URL GET /wp-json/gh/v3/tags Method This endpoint supports the GET method. Request You can pass the search string to get SMS with that string. PARAM TYPE REQUIRED DESCRIPTION search string no String
-
GiveWP Integrations: Contact Metadata
Additional information about a Contact's donations can be found in the metadata box in the right column of each Contact. Total Customer Value Successful Payments Donation ID Donation Status Donation
-
AffiliateWP Integration: Contact Metadata
Additional information about a Contact's affiliate details can be found in the metadata box in the right column of each Contact. Affiliate ID (Links to AffiliateWP Record & Affiliate Report) Status
-
Adding custom contact table columns
This code is used to add the custom column inside Groundhogg's contact table. <?php add_action( 'groundhogg_contact_columns', 'add_my_custom_column' ); function add_my_custom_column( $cols ){ $cols[
-
Creating a new contact record
You can create new \Groundhogg\Contact objects on the fly by passing in an array of parameters. Duplicates will be avoided. $first_name = $_POST[ 'first' ]; $email = $_POST[ 'email' ]; $contact = new
-
REST API V3 / Tags / Delete
URL DELETE /wp-json/gh/v3/tags Method This endpoint supports the DELETE method. Request To delete a tag you must pass these arguments. PARAM TYPE REQUIRED DESCRIPTION tag_id int yes The ID of the tag
-
REST API V3 / Tags / Edit
URL PUT /wp-json/gh/v3/tags Method This endpoint supports the PUT method. Request This endpoint provides functionality to edit tags. PARAM TYPE REQUIRED DESCRIPTION tag_id int yes ID of a tag that
-
REST API V3 / Tags / Create
URL POST /wp-json/gh/v3/tags Method This endpoint supports the POST method. Request You can create single or multiple tags using this endpoint. PARAM TYPE REQUIRED DESCRIPTION tags array yes Tag
-
REST API V3 / SMS / Get
URL GET /wp-json/gh/v3/sms Method This endpoint supports the GET method. Request You can pass the search string to get SMS with that string. PARAM TYPE REQUIRED DESCRIPTION search string no String to
-
REST API V3 / Emails / Get
URL GET /wp-json/gh/v3/emails Method This endpoint supports the GET method. Request You can pass the search string to get SMS with that string. PARAM TYPE REQUIRED DESCRIPTION search string no String
-
WooCommerce: Funnel Templates
WooCommerce Integration extension comes with two funnel templates. Request a review Subscribe and Send Discount Request a review Contains: NEW ORDER Benchmark, DELAY TIMER Action, SEND EMAIL Action,
-
Easy Digital Downloads Integration: Contact Metadata
Additional information about a Contact's purchases can be found in the metadata box in the right column of each Contact. Total Customer Value Successful Orders Order ID Order Status Order date Order
-
Create your own custom benchmark using the Plugin API
You could create your own custom benchmark, but as we routinely update the registration flow, and backwards compatibility is not always guaranteed. However, we do provide a future-proof method to
-
Postmark Integration: Connect to Postmark with the email API
Basic SMTP can be slow, so Postmark has a REST API that can deliver emails much faster! How to setup Postmark Integration (included in plus plan or above) to deliver emails via the Postmark API.
-
SendGrid Integration: Connect to SendGrid with the email API
Basic SMTP can be slow, so SendGrid has a REST API that can deliver emails much faster! Here is how you use our SendGrid integration (also included in plus plan or above) to deliver emails via the
-
HelpScout Integration: Setup contact record siderbar widget
You can display the Groundhogg contact record in HelpScout tickets in just a few steps using the Groundhogg HelpScout Integration. Instructions: Open Apps under the HelpScout Manage menu. Search for
-
WooCommerce: Benchmarks
Woocommerce Integration comes with these benchmarks that are used to trigger automation. New Order: This benchmark executes when a new order is placed and can be defined with: Any/All If the order
-
How to Send Email from within the Contact
Within the Contact record, you can create a specific email for that Contact. Simply click the envelope action icon to reveal the following options: Compose Use Template Compose A window will open
-
Editing Contact List to show what you want
Overwhelmed with how much is in the contacts list? Want it to show less or more information? You can do that. What you want to do first is go to your contacts list and look for the screen options (in
-
Third Party Integrations
Groundhogg works with many third-party integrations* that can expand the functionality. AutomatorWP Samples Flowmattic Provides triggers and actions Hyperise Connect Groundhogg to Hyperise Pabbly
-
I can't download any of my exported contact files!
Are you having trouble downloading your contacts? User Role Permissions/Restrictions The user who is trying to download the contact files must have permission to do so. By default, the administrator