Argyle · Schema

ClientVerificationRefreshRequest

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
user string User ID for the verification refresh.
report object
loan object
billing object
View JSON Schema on GitHub

JSON Schema

clientverificationrefreshrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/clientverificationrefreshrequest.json",
  "title": "ClientVerificationRefreshRequest",
  "type": "object",
  "properties": {
    "user": {
      "type": "string",
      "format": "uuid",
      "description": "User ID for the verification refresh."
    },
    "report": {
      "$ref": "#/components/schemas/ClientVerificationRefreshReportRequest"
    },
    "loan": {
      "$ref": "#/components/schemas/ClientVerificationLoan"
    },
    "billing": {
      "$ref": "#/components/schemas/ClientVerificationBilling"
    }
  },
  "required": [
    "user",
    "report"
  ]
}