1. Review Sources
  • 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
    • Connect Google Profile to Account
    • Connect Facebook Page to Account
    • List all connected accounts
    • List folders under a Google account
    • Create GMB Listing
    • Disconnect GMB Profile
    • Disconnect Facebook Account
    • Fetch Connected Account Details
    • Trigger New Matches
    • List Connection Suggestions
    • Fetch Connected Account Listings
    • Confirm Connected Account Matches
    • Connect a location with a listing of a connected account
    • Disconnect Location from Listing
  • 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
      MARKDOWN
    • Review Sources
      • Get a list of interaction sources for location
        GET
      • Get a list of interaction sources for account
        GET
      • Add / Edit interaction source
        GET
    • Fetch all interactions
      GET
    • List Interactions by IDs
      GET
    • Respond to an Interaction
      POST
    • Edit Response for Interaction
      POST
    • Archive Response for Interaction
      POST
    • Get Interaction Analytics
      GET
    • Add Review Widget
      POST
    • Edit Review Widget
      POST
  • Automations
    • Temporary Close Location with a reopening date
  • Error Codes
    • ERROR CODES
  1. Review Sources

Add / Edit interaction source

GET
https://api.synup.com/api/v4/locations/reviews/settings/edit
Use this endpoint to add a new interaction source URL.
The body of the request must contain the locationId and a siteUrls array.
Interaction sources for connected Google and Facebook accounts cannot be modified/added to. These interaction sources are automatically added when you connect your Google and Facebook accounts.

Request

Header Params

Body Params application/json

Example
{  
   "locationId":"TG9jYXRpb246MTY4MDU=",
   "siteUrls":[  
      {  
         "name":"trulia.com",
         "url":"test.com"
      }
   ]
}

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/locations/reviews/settings/edit' \
--header 'Authorization: API T9V35W3xxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{  
   "locationId":"TG9jYXRpb246MTY4MDU=",
   "siteUrls":[  
      {  
         "name":"trulia.com",
         "url":"test.com"
      }
   ]
}'

Responses

🟢200Success
application/json
Body

Example
{
   "data": {
      "editInteractionsSetting": {
         "errors": null,
         "interactionSetting": {
            "positiveInteractionThreshold": 2,
            "siteSettings": [
               {
                  "name": "trulia.com",
                  "url": "test.com",
                  "connected": false
               },
               {
                  "name": "google.com",
                  "url": "test.com",
                  "connected": false
               },
               {
                  "name": "foursquare.com",
                  "url": "test.com",
                  "connected": false
               },
               {
                  "name": "yelp.com",
                  "url": "https://www.yelp.com/biz/yelp-san-francisco?sort_by=date_desc",
                  "connected": false
               },
               {
                  "name": "facebook.com",
                  "url": "https://www.facebook.com/Om-book-shop-613976075648984/",
                  "connected": true
               },
               {
                  "name": "maps.google.com",
                  "url": "https://maps.google.com/maps?cid=11886702604501862703",
                  "connected": true
               },
               {
                  "name": "zillow.com",
                  "url": null,
                  "connected": false
               },
               {
                  "name": "realtor.com",
                  "url": null,
                  "connected": false
               },
               {
                  "name": "reach150.com",
                  "url": null,
                  "connected": false
               },
               {
                  "name": "yelloyello.com",
                  "url": "https://www.yelloyello.com/places/tryvexan-review-new-york",
                  "connected": false
               }
            ],
            "id": "743c8f7e-cc47-42ff-a640-3c4d072dcb86"
         }
      }
   }
}
Modified at 2025-07-21 09:37:11
Previous
Get a list of interaction sources for account
Next
Fetch all interactions
Built with