Uberall API (20250204)

Enhance your application with Uberall's comprehensive API documentation

Download OpenAPI description
Languages
Servers
Mock server

https://docs.uberall.com/_mock/apis/swagger/

https://uberall.com/api/

Users

Set up - Users

Operations

Business Connections

Set up - Business Connections

Operations

Businesses

Set up - Businesses

Operations

Get a List of Businesses

Request

Get a list of businesses managed by the current user.

Query
querystring

Value used to filter the results by the fields provided in the "queryFields" query parameter. By default, the value will be searched for in the following fields: "name", "streetAndNo", "zip", "city", "country", "identifier".

queryFieldsArray of strings

The fields that will be searched to contain the value provided in the "query" query parameter. The default query fields are "name", "streetAndNo", "zip", "city", "country", "identifier

identifierstring

Only return one business based on your internal identification system

businessIdsstring

Only return businesses identified by ids listed in businessIds

statusstring

Filter by business status. One of ACTIVE, INACTIVE

minLocationsstring

Only return businesses with at least minLocations locations

maxLocationsstring

Only returns businesses with at most maxLocations locations

productPlanstring

Query accounts by product plan name.

productPlanIdstring

Query accounts by product plan Id.

sortstring

The business property to sort by (ascending). One of name, streetAndNo, city, zip, phone

maxstring

Used for pagination. Maximum number of results per page. Default: 10

offsetstring

Offset used for pagination. Default: 0

fieldMaskstring

Possible fieldMask options ('id', 'identifier', 'name', 'type', 'streetAndNo', 'addressLine2', 'province', 'zip', 'city','phone', 'country', 'status', 'canSync', 'dateCreated', 'defaultPrice','defaultOriginalPrice', 'defaultPriceSetup', 'productPlan', 'nextProductPlan', 'numOfLocations')

Example: fieldMask=fieldMask=type&fieldMask=city
curl -i -X GET \
  'https://docs.uberall.com/_mock/apis/swagger/businesses?businessIds=string&fieldMask=fieldMask%3Dtype%26fieldMask%3Dcity&identifier=string&max=string&maxLocations=string&minLocations=string&offset=string&productPlan=string&productPlanId=string&query=string&queryFields=string&sort=string&status=string' \
  -H 'accessToken: YOUR_API_KEY_HERE'

Responses

Successfully retrieved Businesses

Body*/*
statusstringrequired
Enum"SUCCESS""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER""WRONG_PARAMETER_TYPE"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
No content

Create a Business

Request

Create a Business belonging to the SalesPartner of the current User. User needs UserRole ADMIN or ACCOUNT_MANAGER.

Bodyapplication/jsonrequired

A Business object

idinteger(int64)

The uberall unique id for the business

namestring

The business's name

typestring

Business type. One of SMB or ENTERPRISE

Enum"SMB""ENTERPRISE"
Example: "[SMB, ENTERPRISE]"
streetAndNostring

Address of the business

addressLine2string

An address extra: e.g. building, floor...

Example: "building, floor..."
provincestring

Province. Only send when not blank

zipstring

Zipcode of the business

citystring

City of the business

identifierstring

The business identifier based on your internal identification system

countrystring

Country of the business

Enum"AF""AX""AL""DZ""AS""AD""AO""AI""AQ""AG"
phonestring

Business's phone number

productPlanobject

Product Plan Model

dateCreatedstring(date-time)

The date and time the business was created in uberall database

statusstring

Business's status

Enum"CREATED""NOT_CONFIRMED""ACTIVE""DELETED"
countryPricesArray of objects(PricePerCountry)unique

List of country specific prices

customFieldsstring

Custom fields allow for additional information to be added at the location level. All locations within the business will have the same list of custom fields.

effectiveDatestring(date-time)

Date when the business automatically changes its product plan to the new product plan (defined by nextProductPlanId)

nextProductPlanIdinteger(int64)

ID of the next product plan applied for the business on the defined effectiveDate

dateExpirationstring(date-time)

The date the business's contract expires

businessSyncableboolean

True if the business is allowed to start a sync. Only relevant for Businesses with more than 10 locations.

numOfLocationsinteger(int32)

Number of active locations

curl -i -X POST \
  https://docs.uberall.com/_mock/apis/swagger/businesses \
  -H 'Content-Type: application/json' \
  -H 'accessToken: YOUR_API_KEY_HERE' \
  -d '{
    "id": 0,
    "name": "string",
    "type": "[SMB, ENTERPRISE]",
    "streetAndNo": "string",
    "addressLine2": "building, floor...",
    "province": "string",
    "zip": "string",
    "city": "string",
    "identifier": "string",
    "country": "AF",
    "phone": "string",
    "productPlan": {
      "defaultPlan": true,
      "description": "string",
      "identifier": "string",
      "name": "string",
      "status": "ACTIVE",
      "automationDirectories": [
        "FOURSQUARE"
      ],
      "billingPeriod": 0,
      "countryPrices": [
        {
          "country": "AF",
          "price": 0,
          "marketDevelopmentFunds": 99,
          "priceSetup": 0
        }
      ],
      "defaultMarketDevelopmentFunds": 0,
      "defaultOriginalPrice": 0,
      "defaultPrice": 0,
      "defaultPriceSetup": 0,
      "duration": 0,
      "features": [
        "NEW_PHOTO_TYPES"
      ],
      "initialBillingPeriod": 0,
      "initialDuration": 0
    },
    "dateCreated": "2019-08-24T14:15:22Z",
    "status": "CREATED",
    "countryPrices": [
      {
        "country": "AF",
        "price": 0,
        "marketDevelopmentFunds": 99,
        "priceSetup": 0
      }
    ],
    "customFields": "string",
    "effectiveDate": "2019-08-24T14:15:22Z",
    "nextProductPlanId": 0,
    "dateExpiration": "2019-08-24T14:15:22Z",
    "businessSyncable": true,
    "numOfLocations": 0
  }'

Responses

Business successfully created

Bodyapplication/json
statusstringrequired
Enum"SUCCESS""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER""WRONG_PARAMETER_TYPE"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
application/json
{ "status": "SUCCESS", "message": "string", "warnings": [ "string" ], "response": {} }

Get a Business

Request

Get information about the business with the given id. Current user needs UserRole ADMIN, ACCOUNT_MANAGER or BUSINESS_MANAGER.

Path
idstringrequired

The uberall unique id for the business

curl -i -X GET \
  'https://docs.uberall.com/_mock/apis/swagger/businesses/{id}' \
  -H 'accessToken: YOUR_API_KEY_HERE'

Responses

Successfully retrieved Business

Body*/*
statusstringrequired
Enum"SUCCESS""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER""WRONG_PARAMETER_TYPE"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
No content

Configuration

Set up - Configuration

Operations

Sales Partners

Set up - Tenancy - Sales Partners

Operations

Monitoring

Set up - API Status

Operations

Product Plans

Set up - Tenancy - Product Plans

Operations

Webhooks

Set up - Tenancy - Sales Partners - Webhooks

Operations

Auto Response

Products - Auto Response

Operations

Brand Data Points

Products - Brand Data Points

Operations

Dashboard

Products - Analytics - Dashboard

Operations

Dashboard Exports

Products - Analytics - Dashboard Exports

Operations

Data Points

Products - Data Points

Operations

Data Point Filters

Products - Data Points - Data Point Filters

Operations

Templates

Products - Response Library - Templates

Operations

Social Posting

Products - Social Posting

Operations

Social Posting Templates

Products - Social Posting - Social Posting Templates

Operations

Digital Asset Management

Products - Digital Asset Management

Operations

Status Check

Products - Status Check

Operations

Store Finder

Products - Store Finder

Operations

Batch Operation

Locations Hub - Locations - Batch Operations (excel)

Operations

Categories

Locations Hub - Categories

Operations

Collection Management

Locations Hub - Collections - Collection Management

Operations

Content List

Locations Hub - Collections - Content List

Operations

Locations Data

Locations Hub - Locations Data

Operations

Custom Items

Locations Hub - Collections - Custom Items

Operations

Events

Locations Hub - Collections - Events

Operations

Listings

Locations Hub - Locations - Listings

Operations

Labels

Locations Hub - Labels

Operations

Location Groups

Locations Hub - Location Groups

Operations

Persons

Locations Hub - Locations - Persons

Operations

Locations Photos

Locations Hub - Locations Photos

Operations

Products

Locations Hub - Locations - Product

Operations

Service Items

Locations Hub - Locations - Service Items

Operations

Suggestions

Locations Hub - Locations - Suggestions

Operations