Creates overview report
POSThttps://api.one.blendvision.com/bv/analytics/v1/overviews/reports
Generates an customized overview report by specifying various parameters.
- Returns a
400
/BadRequest
error if the request is invalid. - Returns a
500
/Internal Server Error
error if any internal error occurs.
Request
Header Parameters
x-bv-org-id stringrequired
To invoke this API using api_token
, you need to set the x-bv-org-id
header to specify the organization for which you want to perform the action.
- application/json
Body
required
dimension_with_conditions object[]required
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
reports object[]
{
"reports": [
{
"id": "string",
"dimension_with_condition": {
"dimension": "OVERVIEW_REPORT_DIMENSION_WATCH_TIME",
"group_by_fields": [
"GROUP_BY_FIELD_WATCH_TIMESTAMP"
],
"filter": {
"start_time": "2024-07-29T15:51:28.071Z",
"end_time": "2024-07-29T15:51:28.071Z"
}
},
"status": "EVENT_REPORT_STATUS_RUNNING",
"uri": "string",
"error_info": {
"reason": "string",
"domain": "string",
"metadata": {}
}
}
]
}
A bad request response.
The code
is 3
means got an invalid argument. There are more HTTP status code mappings listed on here and gRPC code on here.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A unauthenticated response.
The header authorization
was missing or unidentified.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A forbidden response.
It means that the provided authorization
did not have enough permission to access the resource or the API.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A server error response. There are more HTTP status code mappings listed on here.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Authorization: authorization
name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
- curl
- python
- go
- nodejs
- php
- CURL
curl -L 'https://api.one.blendvision.com/bv/analytics/v1/overviews/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
-d '{
"dimension_with_conditions": [
{
"dimension": "OVERVIEW_REPORT_DIMENSION_WATCH_TIME",
"group_by_fields": [
"GROUP_BY_FIELD_WATCH_TIMESTAMP"
],
"filter": {
"start_time": "2024-07-29T15:51:28.071Z",
"end_time": "2024-07-29T15:51:28.071Z"
}
}
]
}'
ResponseClear