A ValueTracking
object is created as a result of user activity. The endpoints in this section enables you to interact with the value tracking data collected by the app. Through the API you can create as well as retrieve value tracking data.
For more information please refer to Getting Started With Value Tracking
Here is the list of endpoints for ValueTracking
.
POST $BASE_URL/v1/value_tracking/{bucketId}
GET $BASE_URL/v1/value_tracking/{bucketId}
Creates a ValueTracking
entry for further reporting. You can use Konso App to evaluate the data.The following endpoint is utilized:
POST $BASE_URL/v1/value_tracking/{bucketId}
(Optional) end user details.
The attributes refers to elements that makes up the request object:
The request object contains an instance of an object that is to be sent to create a new ValueTracking
entry. The object is transferred in the request's body.
POST $BASE_URL/v1/value_tracking/{bucketId}
{
"eventId":1,
"timeStamp":"1619636875",
"owner":null,
"browser":null,
"ip":null,
"correlationId":null,
"referenceId":null,
"appName":"testApp",
"country":"DE",
"value": 49.00,
"tags": ["test", "mvp"]
}
Returns value tracking entries matching the query filters.
Lists and filters value tracking entries. Entries are kept in our storage according to retention days setting.
The attributes refers to elements that makes up the filter parameters:
timeStamp
field, the value is in Unix epoch format.timeStamp
field, the value is in Unix epoch format.Value Tacking > Mappings
section.correlationId
specified.appName
specified.
GET $BASE_URL/v1/value_tracking/{bucketId}
?eventId=1
&fromDate=1619636000
&toDate=1619637000
&name=login
&correlationId=
&appName=testApp
&tags=tag1
&tags=tag2
&sort=2
&from=0
&to=100