Skip to main content
POST
/
v1
/
analysis-results
/
query
Query Analysis Results
curl --request POST \
  --url https://{tenant}.mindbridge.ai/api/v1/analysis-results/query \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "operator": "$eq"
}
'
{
  "totalElements": 123,
  "totalPages": 123,
  "pageable": {
    "paged": true,
    "pageNumber": 123,
    "pageSize": 123,
    "unpaged": true,
    "offset": 123,
    "sort": {
      "sorted": true,
      "unsorted": true,
      "empty": true
    }
  },
  "numberOfElements": 123,
  "first": true,
  "last": true,
  "size": 123,
  "content": [
    {
      "version": 123,
      "id": "<string>",
      "creationDate": "2023-11-07T05:31:56Z",
      "lastModifiedDate": "2023-11-07T05:31:56Z",
      "createdUserInfo": {
        "userId": "<string>",
        "userName": "<string>"
      },
      "lastModifiedUserInfo": {
        "userId": "<string>",
        "userName": "<string>"
      },
      "analysisId": "<string>",
      "engagementId": "<string>",
      "analysisTypeId": "<string>",
      "interim": true,
      "analysisPeriods": [
        {
          "startDate": "2023-12-25",
          "endDate": "2023-12-25",
          "id": "<string>",
          "interimAsAtDate": "2023-12-25"
        }
      ],
      "reportingPeriodConfigurationId": "<string>"
    }
  ],
  "number": 123,
  "sort": {
    "sorted": true,
    "unsorted": true,
    "empty": true
  },
  "empty": true
}

Documentation Index

Fetch the complete documentation index at: https://developer.mindbridge.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer<int32>
Required range: x >= 0
size
integer<int32>
Required range: x >= 1
sort
string[]

Body

application/json
operator
enum<string>
required
Available options:
$eq,
$ne,
$gt,
$gte,
$lt,
$lte,
$contains,
$ncontains,
$in,
$nin,
$flags,
$keyword_prefix,
$keyword_prefix_not,
$isubstr,
$iprefix,
$niprefix,
$between,
$nbetween,
$and,
$or,
$population,
$not_population,
null
{key}

Response

200 - application/json

OK

totalElements
integer<int64>
totalPages
integer<int32>
pageable
object
numberOfElements
integer<int32>
first
boolean
last
boolean
size
integer<int32>
content
Analysis Result · object[]
number
integer<int32>
sort
object
empty
boolean