POST
/
v2
/
browse
/
property
/
issues
/
_timeseries
IssuePropertyTimeSeries - Obtain time series analysis over issues for all the properties
curl --request POST \
  --url https://api.f6o.co/v2/browse/property/issues/_timeseries \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "query": {
    "fullTexts": [
      "<string>"
    ],
    "keywords": [
      "<string>"
    ],
    "filterIssue": {
      "flxId": [
        "<string>"
      ],
      "type": [
        "ISSUE_TYPE_UNKNWON"
      ],
      "userId": [
        "<string>"
      ],
      "raisedAt": [
        {
          "min": "2023-11-07T05:31:56Z",
          "max": "2023-11-07T05:31:56Z"
        }
      ],
      "hits": [
        {
          "min": 123,
          "max": 123
        }
      ]
    }
  },
  "interval": "UNKNOWN_TIME_SERIES_INTERVAL",
  "analyzedWindow": 123
}'
{
  "apiVersion": "<string>",
  "kind": "<string>",
  "context": "<string>",
  "internalDelay": 123,
  "data": {
    "startTimestamp": "2023-11-07T05:31:56Z",
    "points": [
      {
        "timestamp": "2023-11-07T05:31:56Z",
        "buckets": [
          {
            "count": 123,
            "value": "<string>"
          }
        ]
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

API Key used to be authentified to these APIs. Please contact Fluximmo to get one

Body

application/json
query
object
interval
enum<string>
default:UNKNOWN_TIME_SERIES_INTERVAL
Available options:
UNKNOWN_TIME_SERIES_INTERVAL,
DAY_TIME_SERIES_INTERVAL,
WEEK_TIME_SERIES_INTERVAL,
MONTH_TIME_SERIES_INTERVAL,
QUARTER_TIME_SERIES_INTERVAL,
YEAR_TIME_SERIES_INTERVAL
analyzedWindow
integer

Response

A successful response.

apiVersion
string
kind
string
context
string
internalDelay
integer
data
object