Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nango.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

This guide shows you how to register an OAuth Client App with Follow Up Boss to obtain your client credentials. These are required to let your users grant your app access to their Follow Up Boss account.
1

Register your system

Follow Up Boss requires API clients to register a system for source attribution before creating an OAuth app. If you don’t have a Registered System yet, create one via the Follow Up Boss developer portal. Note your X-System name and X-System-Key.
2

Create an OAuth Client App

Use the Follow Up Boss API to create your OAuth Client App. Set the redirectUris to https://api.nango.dev/oauth/callback:
curl --request POST 'https://api.followupboss.com/v1/oauthApps' \
  --header 'X-System: <your-x-system-name>' \
  --header 'X-System-Key: <your-x-system-key>' \
  --header 'Content-Type: application/json' \
  --data '{
    "redirectUris": ["https://api.nango.dev/oauth/callback"]
  }'
The response includes your clientId and clientSecret. Store the clientSecret securely — it is only returned once and cannot be retrieved again.
3

Next

Follow the Quickstart to connect your first account.
For more details, see the Follow Up Boss OAuth documentation.