1. Connected Accounts
  • Getting Started
  • Locations
    • Location Attributes
      MARKDOWN
    • Photo specifications for your business location
      MARKDOWN
    • Star and Unstar Photos
      MARKDOWN
    • Create a new business location
      POST
    • Update business location
      POST
    • List all locations
      GET
    • List particular locations
      GET
    • Search locations
      GET
    • Get locations by store codes
      GET
    • Upload Photos to a Location
      POST
    • Check Bulk Photo Upload Status
      GET
    • Star/Unstar Location Photos
      POST
    • Delete Location Photos
      POST
    • Archive multiple locations
      POST
    • Cancel scheduled location archival
      POST
    • Activate archived locations
      POST
    • List Active Subscriptions
      GET
    • Get a list of supported countries and their states
      GET
    • Get SubCategories and AdditionalCategories
      GET
    • Get Site Details for Your Plan
      GET
  • Organizing locations
    • Organizing locations
    • Create a new folder
    • List all folders
    • List all folders under an account in hierarchical structure
    • Get details of a folder
    • Rename a folder
    • Add locations to a folder
    • Remove locations from a folder
    • Delete a folder
    • List locations under a folder
    • List all tags
    • List locations by tags
    • Add location to a tag
    • Remove location from a tag
  • User Management
    • User Attributes
    • Create User with Role
    • List Users
    • List Users by ID
    • Add Locations to User
    • Add User and folder
    • List User Roles
    • Add folders to user
    • List User Resources
    • Update a User
    • Remove Folders for User
    • Remove Locations for User
  • Grid Rank
    • Local Rank Grid
    • Create Rank Grid Report
    • Fetch All Grid Reports for Location
    • Fetch Rank Grid Report By ID
  • Review Campaigns
    • Review Campaign Info Attributes
    • Create a review campaign
    • Add customers to a review campaign
    • List review campaigns
    • List review campaign customers
  • Listings
    • Listings
    • Listing Status Webhooks
    • Get premium listings
    • Get voice listings for a location
    • Get duplicate listings for a location
    • Get all duplicate listings for an account
    • Mark listings as duplicates
    • Mark listings as not duplicates
    • Get AI listings
  • Connected Accounts
    • Connected Accounts
      MARKDOWN
    • Connect Google Profile to Account
      POST
    • Connect Facebook Page to Account
      POST
    • List all connected accounts
      GET
    • List folders under a Google account
      GET
    • Create GMB Listing
      POST
    • Disconnect GMB Profile
      POST
    • Disconnect Facebook Account
      POST
    • Fetch Connected Account Details
      GET
    • Trigger New Matches
      POST
    • List Connection Suggestions
      GET
    • Fetch Connected Account Listings
      POST
    • Confirm Connected Account Matches
      POST
    • Connect a location with a listing of a connected account
      POST
    • Disconnect Location from Listing
      POST
  • Rankings
    • Rankings Analytics Attributes
    • Add keywords
    • List Keywords
    • Get keywords performance
    • Archive a keyword
    • Get Rollup Keyword Performance
    • Get Rankings Distribution By Time
  • Profile Analytics
    • Profile Analytics
    • Get Bing Analytics
    • Get Facebook Page Analytics
    • Get Google My Business Analytics
  • Reviews
    • Reviews
    • Review Sources
      • Get a list of interaction sources for location
      • Get a list of interaction sources for account
      • Add / Edit interaction source
    • Fetch all interactions
    • List Interactions by IDs
    • Respond to an Interaction
    • Edit Response for Interaction
    • Archive Response for Interaction
    • Get Interaction Analytics
    • Add Review Widget
    • Edit Review Widget
  • Automations
    • Temporary Close Location with a reopening date
  • Error Codes
    • ERROR CODES
  1. Connected Accounts

List Connection Suggestions

GET
https://api.synup.com/api/v4/connected-accounts/{connectedAccountId}/connection-suggestions
This API retrieves all connection suggestions for a connected account. These suggestions represent potential matches between locations in your account and business profiles on Google My Business or Facebook Pages.
Behavior:
Identifies locations in your account that closely match profiles on Google or Facebook.
Uses criteria like business name, address, and phone number to generate suggestions.
Helps streamline the linking process between your locations and external listings.

Request

Path Params

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.synup.com/api/v4/connected-accounts//connection-suggestions?page&perPage' \
--header 'Authorization: API T9V35W3xxxxxxxxxxx' \
--header 'Content-Type: application/json'

Responses

🟢200OK
application/json
Successfully retrieved connection suggestions
Body

Example
{
    "data": {
        "connectionSuggestionsForAccount": {
            "pageInfo": {
                "hasNextPage": false,
                "hasPreviousPage": false,
                "totalPages": 1,
                "totalRecords": 2
            },
            "records": [
                {
                    "accountEmail": "abc@synup.com",
                    "accountType": "GMB",
                    "connectedAccountId": "bc818dc7-1576-4e50-a69d-c69d22103588",
                    "locationId": "73415",
                    "locationInfo": {
                        "city": "Lincoln",
                        "countryIso": "US",
                        "countryName": "United States",
                        "name": "Stg - 24 Aug - with Store code",
                        "phone": "3125270491",
                        "postalCode": "68502",
                        "stateIso": "NE",
                        "stateName": "Nebraska",
                        "storeCode": "update store code and address 123",
                        "street": "3201 South St, 17 cross#778",
                        "street1": null
                    },
                    "matchedDataDatabaseId": "0d5e306f-0da0-46e3-929f-fd3c67ccd8cc",
                    "suggestedLocationInfo": {
                        "liveLink": null,
                        "locationInfo": {
                            "city": "Lincoln",
                            "country": "US",
                            "name": "Stg - 24 Aug - with Store code",
                            "phone": "(312) 527-0491",
                            "postalCode": "68502",
                            "state": "NE",
                            "street": "3201 South St, 17 cross, #778"
                        },
                        "mainAccount": "Business 1",
                        "mainAccountId": null,
                        "storeCode": null,
                        "subAccount": null
                    }
                }
            ]
        }
    }
}
Modified at 2025-05-15 13:54:04
Previous
Trigger New Matches
Next
Fetch Connected Account Listings
Built with