Skip to content

userVerification

Query

Lookup the user verification / consent for a contact. Can be used to determine if a customer has already provided consent to pull the credit report from a specific credit report vendor

Query Signature

query {
userVerification(reqOrgContactId: String!): UserVerificationResponse
}

Example Request

query UserVerification($reqOrgContactId: String!) {
userVerification(reqOrgContactId: $reqOrgContactId) {
# Add fields you want to retrieve
}
}

Example Variables:

{
"reqOrgContactId": "contact-12345"
}

Example Response

{
"data": {
"userVerification": {
"data": {
"id": "uv-abc123",
"reqOrgContactId": "contact-12345",
"creditReportUserId": "cr-user-456",
"reqOrgId": "org-alleviate",
"status": "PASSED",
"verificationDate": "2025-01-15T10:30:00.000Z",
"userConsentDate": "2025-01-15T10:28:00.000Z",
"verificationType": "SMS",
"verificationSource": "SPINWHEEL"
},
"errors": null
}
}
}

Arguments

ArgumentTypeDescription
reqOrgContactIdString!Requesting organization contact ID to lookup verification status

Response Type

Returns: UserVerificationResponse

UserVerificationResponse

User verification lookup response

FieldTypeDescription
dataUserVerificationNodeUser verification data
errors[UserVerificationResponseError]List of error messages

UserVerificationNode

FieldTypeDescription
idIDuser verification ID
reqOrgContactIdStringRequesting Organization Contact ID
creditReportUserIdStringCredit Report User ID
reqOrgIdStringRequesting Organization ID
statusStringCustomer verification status. Possible values: - NOT_STARTED: The verification process has not started. - IN_PROGRESS: The verification process is ongoing. - FAILED: The verification process failed…
verificationDateStringUser verification date
userConsentDateStringUser consent date
verificationTypeStringVerification type cna be SMS or KBA
verificationSourceStringVerification Source

UserVerificationResponseError

FieldTypeDescription
messageStringError message

Error Types

The response may include the following error types:

UserVerificationResponseError

FieldTypeDescription
messageStringError message

Common Errors

Error CodeDescriptionResolution
VALIDATION_ERRORInput validation failedCheck required fields and formats
UNAUTHORIZEDInvalid or expired tokenRe-authenticate and retry
NOT_FOUNDResource not foundVerify the ID or reference