DPO Radio

Free Website Privacy Check: Ensure Your Site's Compliant Now!

AesirX Analytics 1st Party API Guide

AesirX Analytics 1st party API

health

get

/healthGets health status of the system

Gets health status of the system Simple GET command to get a health status of the system

Parameters

No parameters

Responses

Example

copy icon
{
  "status": "ok",
  "version": "1.0.0"
}

visitor

post

/visitor/v1/initInitializes a new visitor (first visit)

Initializes a new visitor (first visit) Registers a new visitor in the Analytics system and a first visit

Parameters

No parameters

Request Body REQUIRED

application/json

Example

copy icon
{
  "attributes": [
    true
  ],
  "browser_name": "string",
  "browser_version": "string",
  "device": "string",
  "event_name": "string",
  "event_type": "string",
  "ip": "string",
  "lang": "string",
  "referer": "string",
  "url": "string",
  "user_agent": "string"
}

Responses

Example

copy icon
{
  "event_uuid": "string",
  "flow_uuid": "string",
  "visitor_uuid": "string"
}
post

/visitor/v1/startStarts a new event for a registered visitor

Starts a new event for a registered visitor Registers a new visit/event for a certain visitor

Parameters

No parameters

Request Body REQUIRED

application/json

Example

copy icon
{
  "attributes": [
    true
  ],
  "event_name": "string",
  "event_type": "string",
  "event_uuid": "string",
  "referer": "string",
  "url": "string",
  "visitor_uuid": "string"
}

Responses

Example

copy icon
{
  "event_uuid": "string",
  "flow_uuid": "string",
  "visitor_uuid": "string"
}
post

/visitor/v1/endFinalizes and event or visit

Finalizes and event or visit Marks the end of a certain event

Parameters

No parameters

Request Body REQUIRED

application/json

Example

copy icon
{
  "event_uuid": "string",
  "visitor_uuid": "string"
}

Responses

Example

copy icon
{
  "visitor_uuid": "string"
}
post

/visitor/v2/startInitializes and start a new visitor

Initializes and start a new visitor Registers a new visitor in the Analytics system and a first visit

Parameters

No parameters

Request Body REQUIRED

application/json

Example

copy icon
{
  "attributes": [
    true
  ],
  "browser_name": "string",
  "browser_version": "string",
  "device": "string",
  "event_name": "string",
  "event_type": "string",
  "fingerprint": "string",
  "ip": "string",
  "lang": "string",
  "referer": "string",
  "url": "string",
  "user_agent": "string"
}

Responses

Example

copy icon
{
  "event_uuid": "string",
  "flow_uuid": "string",
  "visitor_uuid": "string"
}

wallet

post

/wallet/v1/{network}/{address}/nonceGets a new nonce (random) for the address sent.

Gets a new nonce (random) for the address sent.

Parameters

NameRequiredTypeDescription

network*

(path)
Yesstring

address*

(path)
Yesstring

Request Body REQUIRED

application/json

Example

copy icon
{
  "text": "string"
}

Responses

Example

copy icon
{
  "nonce": "string"
}

statistics

get

/metrics/v1/{start_date}/{end_date}1st party metrics

1st party metrics Loads the stored 1st party summarized metrics

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields. Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "average_number_of_pages_per_session": "integer",
  "average_session_duration": "integer",
  "bounce_rate": "integer",
  "number_of_page_views": "integer",
  "number_of_unique_page_views": "integer",
  "number_of_visitors": "integer"
}
get

/visits/v1/{start_date}/{end_date}Daily detail of page visits

Daily detail of page visits Loads a collection of daily visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = date, allowed: date, visits, unique_visits). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/domains/v1/{start_date}/{end_date}Daily detail of domain visits

Daily detail of domain visits Loads a collection of daily domain visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = domain, allowed: domain, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/visitors/v1/{start_date}/{end_date}Daily detail of visitor visits

Daily detail of visitor visits Loads a collection of daily visitor visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = date, allowed: date, visits). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/pages/v1/{start_date}/{end_date}Daily detail of page visits

Daily detail of page visits Loads a collection of daily page visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = url, allowed: url, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/browsers/v1/{start_date}/{end_date}Daily detail of browser visits

Daily detail of browser visits Loads a collection of daily browser visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = browser_name, allowed: browser_name, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/browserversions/v1/{start_date}/{end_date}Daily detail of browser version visits

Daily detail of browser version visits Loads a collection of daily browser version visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = browser_version, allowed: browser_version, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/languages/v1/{start_date}/{end_date}Daily detail of language visits

Daily detail of language visits Loads a collection of daily language visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = lang, allowed: lang, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/devices/v1/{start_date}/{end_date}Daily detail of device visits

Daily detail of device visits Loads a collection of daily device visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = device, allowed: device, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/countries/v1/{start_date}/{end_date}Daily detail of country visits

Daily detail of country visits Loads a collection of daily country visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = country_code, allowed: country_name, country_code, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/cities/v1/{start_date}/{end_date}Daily detail of city visits

Daily detail of city visits Loads a collection of daily city visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = city, allowed: city, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/isps/v1/{start_date}/{end_date}Daily detail of isp visits

Daily detail of isp visits Loads a collection of daily isp visits given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = isp, allowed: isp, number_of_visitors, number_of_page_views, number_of_unique_page_views, average_session_duration, average_number_of_pages_per_session, bounce_rate). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/attribute/v1/{start_date}/{end_date}Detail of attribute value from time range

Detail of attribute value from time range Loads a collection of attribute value given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields. Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/attribute_date/v1/{start_date}/{end_date}Daily detail of attribute value

Daily detail of attribute value Loads a collection of daily attribute value given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields. Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/events/v1/{start_date}/{end_date}Get list events

Get list events Loads a collection of events given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = date, allowed: date, visits, event_name, event_type). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/events_name_type/v1/{start_date}/{end_date}Get list of events with grouped total_visitor counter

Get list of events with grouped total_visitor counter Loads a collection of events with grouped total_visitor counter given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = event_name, allowed: visits, event_name, event_type). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}

list

get

/visitor/v1/{start_date}/{end_date}Daily detail of events

Daily detail of events Loads a collection of daily events given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields (default = start, allowed: start, end). Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}
get

/flow/v1/{flow_uuid}List of visitors with flows and events if requested

List of visitors with flows and events if requested Loads a collection of paginated visitors, additionally can be loaded related events and lows

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields. Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

flow_uuid*

(path)
Yesstring ($uuid)

Responses

Example

copy icon
{
  "browser_name": "string",
  "browser_version": "string",
  "device": "string",
  "domain": "string",
  "end": "string",
  "events": [
    true
  ],
  "ip": "string",
  "lang": "string",
  "start": "string",
  "user_agent": "string",
  "uuid": "string"
}
get

/flow/v1/{start_date}/{end_date}Daily detail of flows

Daily detail of flows Loads a collection of daily flows given a paginated time range

Parameters

NameRequiredTypeDescription

filter

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

filter_not

(query)
Noobject Multiple values are allowed.

Example

copy icon
{
  "domain": "example.com",
  "url": "https://example.com/about",
  "browser_name": "Chrome",
  "browser_version": "100",
  "device": "string",
  "lang": "en-GB",
  "country_code": "DK",
  "country_name": "Denmark",
  "city": "BRABAND",
  "isp": "TDC BB-ADSL USERS",
  "event_name": "visit",
  "event_type": "action",
  "uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "visitor_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "flow_uuid": "deaa4f04-eab4-4e14-b290-ea6411b39ada",
  "attribute_name": "utm_source",
  "attribute_value": "facebook",
  "attribute": {
    "visit": [
      "action"
    ]
  }
}

with[]

(query)
Noarray Load additional related data

page

(query)
Nointeger ($int32)Number of page (default = 1)

page_size

(query)
Nointeger ($int32)Number of records per page (default = 20)

sort[]

(query)
Noarray Sort based on the given fields. Multiple values are allowed.

sort_direction[]

(query)
Noarray Direction of sort (default = asc, allowed: asc, desc). Multiple values are allowed.

start_date*

(path)
Yesstring Start date filter

end_date*

(path)
Yesstring End date filter

Responses

Example

copy icon
{
  "collection": [
    true
  ],
  "page": "integer",
  "page_size": "integer",
  "total_elements": "integer",
  "total_pages": "integer"
}

Enjoyed this read? Share the blog!