Strise Connect API Docs
Queries

privatePersonReviews

List reviews completed on all entities between the given dates.

query PrivatePersonReviews($from: DateTime!, $to: DateTime!, $pageSize: Int = 100, $offset: Int = 0) {
  privatePersonReviews(from: $from, to: $to, pageSize: $pageSize, offset: $offset) {
    id
    pdf
    createdAt
    privatePersonId
    userAssessedRiskLevel
    validUntilDate
  }
}

Arguments

from DateTime! non-null scalar

DateTime! The start date of the review period.

to DateTime! non-null scalar

DateTime! The end date of the review period.

pageSize Int scalar

Int The number of items to return per page. Must be in the range [1, 100].

offset Int scalar

Int The offset of the first item to return. Use with pageSize to page through results.

Type

PrivatePersonReview object

PrivatePersonReview

Response Fields

id ID! non-null scalar

ID! The id of the review.

pdf Base64EncodedFile scalar

Base64EncodedFile The review as a base64 encoded PDF. The PDF is generated asynchronously, if it has not been created yet this field will be 'null'.

createdAt DateTime! non-null scalar

DateTime! The review's creation timestamp

privatePersonId PrivatePersonId! non-null scalar

PrivatePersonId! The ID of the private person on which the review was created.

userAssessedRiskLevel RiskLevelKind enum

RiskLevelKind User-assessed risk level set during the review process.

validUntilDate DateTime scalar

DateTime Date until which the review is valid

On this page