Argyle · Schema

ClientSessionCreateRequest

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
verification string ID of the verification used to initialize the session.
configuration object
View JSON Schema on GitHub

JSON Schema

clientsessioncreaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/clientsessioncreaterequest.json",
  "title": "ClientSessionCreateRequest",
  "type": "object",
  "properties": {
    "verification": {
      "type": "string",
      "format": "uuid",
      "description": "ID of the verification used to initialize the session."
    },
    "configuration": {
      "$ref": "#/components/schemas/ClientSessionCreateConfiguration"
    }
  },
  "required": [
    "verification"
  ]
}