Skip to main content

Getting Started

Welcome to GoBlue! Since you’ve received access to our platform, your account has already been set up for you. Let’s get you started with the app and your first automated form.

Install the App

1

Install GoBlue via TestFlight

Install the GoBlue app using TestFlight on your iPhone or iPad.

Install via TestFlight

Get GoBlue for iOS (Beta)
2

Sign In to Your Account

Open the app and sign in with the email address we provided during your onboarding. Your account is already configured and ready to use.
3

Complete Profile Setup

Add your business information and configure your message preferences. This helps personalize your automated messages.

Create Your First Form

Forms are the foundation of GoBlue’s automation system. They define the structure of data you’ll collect and how messages are sent.
1

Navigate to Forms

Open the GoBlue app and tap on the “Forms” tab at the bottom of the screen.
2

Create New Form

Tap the ”+” button in the top-right corner and give your form a descriptive name like “Lead Follow-up” or “Appointment Confirmation”.
3

Configure Form Fields

Add the data fields you need:
  • Phone Number (required by default)
  • First Name (optional)
  • Last Name (optional)
  • Custom Fields (add any additional data you need)
The phone number field is always required as it’s needed to send iMessages.
4

Set Up Message Template

Create your message template using variables:
Hi {{firstName}}, thanks for your interest! 
I'll be in touch soon to discuss your {{serviceType}} needs.
Variables in double curly braces will be replaced with actual data from form submissions.

Get Your Webhook URL

Every form generates a unique webhook URL that external services can send data to.
1

Copy Webhook URL

In your form settings, tap “Copy Capture URL”. This copies your webhook URL to the clipboard.The URL format is: https://api.goblue.app/v1/forms/{form-id}/webhook
2

Enable Capturing

Toggle “Enable capturing” to start accepting webhook data for this form.

Test Your Setup

Let’s verify everything is working correctly:
1

Send Test Data

Use a tool like Postman or curl to send test data to your webhook:
curl -X POST https://api.goblue.app/v1/forms/{your-form-id}/webhook \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "John",
    "lastName": "Doe", 
    "phoneNumber": "+1234567890",
    "serviceType": "consulting"
  }'
2

Check Messages

Go to the “Messages” section in the app to see if your test message was queued for sending.
3

Setup iOS Shortcut

Download and configure the GoBlue iOS Shortcut to enable message sending from your device.

iOS Shortcuts Setup

Learn how to configure iOS Shortcuts for message automation

Next Steps

Remember to test your automation workflows thoroughly before using them for important business communications.