Skip to content

Batch Operation

Locations Hub - Locations - Batch Operations (excel)

Get all Location Imports

Request

Returns a list of all existing location imports for the current user

Security
X-API-KEY or Authorization
Query
maxinteger, (int64)

Used for pagination. Maximum number of results per page

Default:10
offsetinteger, (int64)

Offset used for pagination

Default:0
sortstring

Order results by the specified field. Default is location id.

orderstring

Use asc for ascending sort or desc for descending sort

Default:"asc"
curl -i -X GET \
  'https://uberall.com/api/batch?max=10&offset=0&sort=string&order=asc' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Successfully retrieved location imports

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

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
{
  "status": "SUCCESS",
  "message": "string",
  "warnings": [
    "string"
  ],
  "response": {
    "offset": 0,
    "max": 10,
    "count": 100,
    "locations": [
      {}
    ]
  }
}