Create an Analysis
Creating an Analysis is the first step in understand which types of events impact your demand.
Request
HTTP Request
Request Headers
Content-Type
application/json
Request Body
name
string
required
Name of an analysis.
E.g. My Location Analysis 1
location.*
object
required
Contains geopoint
, radius
and unit
to represent the location of your data to create the analysis.
geopoint
containslat
andlon
which are coordinates for your analysis, e.g. if you are creating an analysis for a store in Seattle you'd specify the latitude and longitude of your store.radius
must be an integer or a float number up to 2 decimal places. It represents the radius of the event search around yourgeopoint
to use for time series modelling and correlation. We strongly recommend using the Suggested Radius API to find a suitable radius for your location/industry.unit
is the unit forradius
and must be one of:m
- meterskm
- kilometersft
- feetmi
- miles
E.g.
demand_type.*
object
optional
Provides information about the demand type of the analysis.
industry
is the industry of the demand data being analysed by Beam. Choosing the right industry is important as this will determine the type of features used in the Analysis and will impact the accuracy of the results. Must be one of the following:accommodation
cpg
tourism
marketing
parking
restaurants
retail
transportation
other
E.g.
external_id
string
optional
External identifier for the location. If you have an ID for the location/store/property in your other platforms, use the same ID here to easily link this specific Beam Analysis to the location. E.g.
label
string
optional
Comma-separated list of labels that can be used to search and filter Beam analyses. E.g.
rank.*
object
required
Specifies which rank type to use when calculating event impacts and anomaly detection. Currently, only PHQ rank is supported (also known as "Rank") so this value should be set to "phq"
as shown below.
Possible rank type values:
phq
- PHQ Rank
Optionally, specify the minimum rank level to use when calculating event impacts. Note: We strongly recommend not setting the rank levels and instead letting Beam define the best rank levels based on your industry.
E.g.
Response
Examples
Guides
Below are some guides relevant to this API:
Last updated