Follow Up Boss website screenshot

Follow Up Boss

Follow Up Boss is a real estate CRM and lead management platform helping agents and teams capture leads from any source, automate follow-up via texts, emails, and calls, manage pipelines and deals, and track team performance. The Follow Up Boss REST API exposes resources such as people, notes, tasks, deals, calls, text messages, events, and webhooks, secured with HTTP Basic authentication using an API key obtained from the application's admin settings.

1 APIs 0 Features
Real EstateCRMLead ManagementSales AutomationFollow UpPipeline Management

APIs

Follow Up Boss API

REST API for managing real estate leads, contacts, deals, notes, tasks, calls, text messages, events, and webhooks in Follow Up Boss. Authenticated with HTTP Basic using an API ...

Collections

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
💰
Pricing
Pricing
📝
Signup
Signup
💬
Support
Support
🟢
StatusPage
StatusPage
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Follow Up Boss API
  version: '1.0'
request:
  auth:
    type: basic
    username: '{{username}}'
    password: '{{password}}'
items:
- info:
    name: People
    type: folder
  items:
  - info:
      name: List people
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/people
      params:
      - name: limit
        value: ''
        type: query
      - name: offset
        value: ''
        type: query
    docs: List people
  - info:
      name: Create a person
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/people
      body:
        type: json
        data: '{}'
    docs: Create a person
  - info:
      name: Retrieve a person
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/people/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a person
  - info:
      name: Update a person
      type: http
    http:
      method: PUT
      url: https://api.followupboss.com/v1/people/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a person
  - info:
      name: Delete a person
      type: http
    http:
      method: DELETE
      url: https://api.followupboss.com/v1/people/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a person
  - info:
      name: Check for duplicate person by email or phone
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/people/checkDuplicate
      params:
      - name: email
        value: ''
        type: query
      - name: phone
        value: ''
        type: query
    docs: Check for duplicate person by email or phone
  - info:
      name: List unclaimed people
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/people/unclaimed
    docs: List unclaimed people
  - info:
      name: Claim a person
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/people/claim
      body:
        type: json
        data: '{}'
    docs: Claim a person
- info:
    name: Notes
    type: folder
  items:
  - info:
      name: Create a note
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/notes
      body:
        type: json
        data: '{}'
    docs: Create a note
  - info:
      name: Retrieve a note
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/notes/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a note
  - info:
      name: Update a note
      type: http
    http:
      method: PUT
      url: https://api.followupboss.com/v1/notes/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a note
  - info:
      name: Delete a note
      type: http
    http:
      method: DELETE
      url: https://api.followupboss.com/v1/notes/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a note
- info:
    name: Tasks
    type: folder
  items:
  - info:
      name: List tasks
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/tasks
    docs: List tasks
  - info:
      name: Create a task
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/tasks
      body:
        type: json
        data: '{}'
    docs: Create a task
  - info:
      name: Retrieve a task
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/tasks/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a task
  - info:
      name: Update a task
      type: http
    http:
      method: PUT
      url: https://api.followupboss.com/v1/tasks/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a task
  - info:
      name: Delete a task
      type: http
    http:
      method: DELETE
      url: https://api.followupboss.com/v1/tasks/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a task
- info:
    name: Deals
    type: folder
  items:
  - info:
      name: List deals
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/deals
    docs: List deals
  - info:
      name: Create a deal
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/deals
      body:
        type: json
        data: '{}'
    docs: Create a deal
  - info:
      name: Retrieve a deal
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/deals/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a deal
  - info:
      name: Update a deal
      type: http
    http:
      method: PUT
      url: https://api.followupboss.com/v1/deals/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a deal
  - info:
      name: Delete a deal
      type: http
    http:
      method: DELETE
      url: https://api.followupboss.com/v1/deals/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a deal
- info:
    name: Calls
    type: folder
  items:
  - info:
      name: List calls
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/calls
    docs: List calls
  - info:
      name: Create a call record
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/calls
      body:
        type: json
        data: '{}'
    docs: Create a call record
  - info:
      name: Retrieve a call
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/calls/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a call
  - info:
      name: Update a call
      type: http
    http:
      method: PUT
      url: https://api.followupboss.com/v1/calls/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a call
- info:
    name: TextMessages
    type: folder
  items:
  - info:
      name: List text messages
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/textMessages
    docs: List text messages
  - info:
      name: Create a text message
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/textMessages
      body:
        type: json
        data: '{}'
    docs: Create a text message
  - info:
      name: Retrieve a text message
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/textMessages/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a text message
- info:
    name: Events
    type: folder
  items:
  - info:
      name: List events
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/events
    docs: List events
  - info:
      name: Create an event (typically a new lead)
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/events
      body:
        type: json
        data: '{}'
    docs: Create an event (typically a new lead)
  - info:
      name: Retrieve an event
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/events/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve an event
- info:
    name: Webhooks
    type: folder
  items:
  - info:
      name: List webhook subscriptions
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/webhooks
    docs: List webhook subscriptions
  - info:
      name: Create a webhook subscription
      type: http
    http:
      method: POST
      url: https://api.followupboss.com/v1/webhooks
      body:
        type: json
        data: '{}'
    docs: Create a webhook subscription
  - info:
      name: Retrieve a webhook subscription
      type: http
    http:
      method: GET
      url: https://api.followupboss.com/v1/webhooks/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Retrieve a webhook subscription
  - info:
      name: Update a webhook subscription
      type: http
    http:
      method: PUT
      url: https://api.followupboss.com/v1/webhooks/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a webhook subscription
  - info:
      name: Delete a webhook subscription
      type: http
    http:
      method: DELETE
      url: https://api.followupboss.com/v1/webhooks/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a webhook subscription
bundled: true