Strise Connect API Docs
Queries

privatePersonReview

Retrieve a private person review by its id.

query PrivatePersonReview($where: ReviewWhereInput!) {
  privatePersonReview(where: $where) {
    id
    pdf
    createdAt
    privatePersonId
    userAssessedRiskLevel
    validUntilDate
  }
}
input ReviewWhereInput {
  id: ID!
}

Arguments

where ReviewWhereInput! non-null input

ReviewWhereInput!

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