ExpoFP Integration Guide
Overview
This guide explains how to connect Bridged with ExpoFP to read event content including exhibitor data, booth information, floor plans, and session schedules. The integration supports reading this data for activation, qualification, and nurture playbooks where event context is needed.
ExpoFP is a specialized platform for interactive floor plans and exhibition space management. It provides booth mapping, exhibitor management, and wayfinding capabilities for trade shows and expos.
Primary Use Case: Read Event Content
For Bridged's event experience integrations, the primary use case is reading event-related data, including:
Data Type | Use in Bridged |
|---|---|
Exhibitor data | Answer attendee questions about exhibitors and booth locations |
Booth information | Provide booth numbers, locations, and assigned exhibitors |
Sessions/Events | Support session-related queries and scheduling |
Floor plan data | Navigational assistance for attendees |
Prerequisites
Before starting, ensure you have:
An ExpoFP account with API access
Your API Token (found in Profile → API Token)
Event ID for the target event
Note: ExpoFP uses API token authentication. Tokens are now granular, limited to 90 days, and require 2FA by default.
Connection Methods
ExpoFP provides a straightforward REST API. For Bridged's read-only use case:
Method | Best for | Setup complexity |
|---|---|---|
API Token (Preferred) | Direct API access | Low |
Manual Export (Excel) | One-time or backup data pulls | Low |
Recommendation: Use API Token authentication for automated syncs. The API base URL is https://app.expofp.com/api/v1/.
Step 1: Obtain Your API Token
Log in to your ExpoFP account
Navigate to Profile → API Token
Copy your API token
⚠️ Important: Treat your API token like a password. ExpoFP has revoked classic tokens, and new granular tokens are limited to 90 days.
Step 2: Configure Bridged to Connect to ExpoFP
Log in to your Bridged dashboard
Navigate to the Integrations section. If you do not see this section, contact
support@bridged.mediaClick ExpoFP → Connect Account
Enter the following credentials:
Field | Description |
|---|---|
API Token | Your ExpoFP API token |
Event ID | Your event identifier (can be retrieved via |
API Base URL |
|
Click Connect
API Request Example
To verify your token works, test with the list-events endpoint:
bash
curl -X POST https://app.expofp.com/api/v1/list-events \
-H "Content-Type: application/json" \
-d '{"token": "YOUR_API_TOKEN"}'Step 3: Available API Endpoints for Reading Data
Based on ExpoFP's API documentation, the following endpoints are available:
Endpoint | Method | Description |
|---|---|---|
| POST | List all events |
| POST | Get booth details by name |
| POST | Get exhibitor details |
| POST | List all exhibitors for an event |
Example: Get Booth Details
bash
curl -X POST https://app.expofp.com/api/v1/get-booth \
-H "Content-Type: application/json" \
-d '{
"token": "YOUR_API_TOKEN",
"eventId": "EVENT_ID",
"name": "BOOTH_NAME"
}'Example: Get Exhibitor Details
bash
curl -X POST https://app.expofp.com/api/v1/get-exhibitor \
-H "Content-Type: application/json" \
-d '{
"token": "YOUR_API_TOKEN",
"eventId": "EVENT_ID",
"exhibitorId": "EXHIBITOR_ID"
}'Step 4: Alternative Data Access Methods
Manual Export (Excel)
If API access is limited, ExpoFP supports manual data exports:
Exhibitor Report Export:
Go to Exhibitors page
Select exhibitors (or select all)
Click Export to download Excel file
Includes: exhibitor ID, company name, description, booth details, contacts, logo URL, social media, and more
Sessions Export:
Go to Sessions
Click Export to download Excel file
Reservation Log Export:
Go to Sales & reservations → Reservation log
Click Export to generate Excel file
Tracks booth reservations, purchases, and sponsorships
Step 5: Configure Sync Settings
Setting | Options | Description |
|---|---|---|
Data objects | Exhibitors, Booths, Sessions, Events | Which data to read |
Sync frequency | Hourly, Daily, Weekly | How often to refresh data |
Export method | API (auto), Manual Excel | Preferred data access method |
Bulk sync limit: Each bulk operation is limited to 50 records per request.
Common Use Cases
Playbook | How Event Data Is Used |
|---|---|
Activation | Read exhibitor list for pre-event outreach via WhatsApp |
Qualification Agent | Read exhibitor interactions and booth visits for lead scoring |
Nurture & Conversion | Provide booth location and exhibitor information in conversations |
Example Conversation Powered by ExpoFP Data
When an attendee asks "Where is Booth 1234?", Bridged:
Reads booth data from ExpoFP API (
/get-booth)Returns booth location and assigned exhibitor
Security & Permissions
ExpoFP uses API Token authentication
Tokens are encrypted and never stored in plain text
All API calls are made over TLS 1.2+
Granular tokens are limited to 90 days and require 2FA
You can revoke access by regenerating your API token in ExpoFP
Troubleshooting
Issue | Likely cause | Solution |
|---|---|---|
Connection fails | Invalid API token | Regenerate token in Profile → API Token |
Token expired | 90-day limit reached | Generate new granular token |
No events returned | Wrong event ID | Use |
Booth not found | Incorrect booth name | Verify booth name exists in event |
Rate limiting | Too many requests | Reduce sync frequency |
Support
For integration support, contact your Bridged account manager or email support@bridged.media.
For ExpoFP-specific questions:
ExpoFP Help Center: https://help.expofp.com[citation:2][citation:6]
API Documentation: https://expofp.docs.apiary.io[citation:1][citation:5]