GET
ing data from the registered endpoint.POST /api/v2.6/combinator/$COMBINATOR_NAME
with header x-auth-token
. Where $COMBINATOR_NAME
is a chosen name for your data combinator. Combinator name can be any valid URL path, but must be unique – request will fail with an error otherwise.longitude
and latitude
from a Rumpel location's endpoint and unwrapping them to a top-level object:GET
to /api/v2.6/combinator/$COMBINATOR_NAME
with header x-auth-token
.POST
ing a request to /api/v2.6/combinator/$COMBINATOR_NAME
as previously. However, for each source of data you may also define one or more filters
in addition to the endpoint
and transformation
used to remap the data:AND
operator: a data record has to match all filters to be included in the result. Every filter
consists of three fields:transformation
– currently supported transformations:identity
– keep the value as-is, effect is the same as if transformation
was not defineddatetimeExtract
with part
– extract part of a date from an ISO 8601 formatted date fieldtimestampExtract
with part
– extract part of a date from a UNIX timestamp date fieldsearchable
– convert the field to searchable text. Must be used together with the find
operator belowoperator
– different operator types:in
together with value
field, set to check if field
is in (is contained by) value
contains
together with value
field, set to check if field
contains value
between
together with lower
and upper
values, checks if the lower
< field
< upper
find
together with search
field set to the search string to perform text-based search on. Must be used together with the searchable
transformation above.combinators
, useful in 2 ways:combinators
orderBy
and limit
parameters to control how many data points are returned for a specific bundle propertyPOST
request in https://postman.hubat.net/api/v2.6/data-bundle/localprofile
with header x-auth-token
and body:combinators
covered in the previous step. However you will notice that the endpoints
property has exactly the same format as the body of a request for creating a new combinator
.