Argyle · Schema

ClientCreateUserResponse

Response returned after creating a client user.

Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit

Properties

Name Type Description
user_token string Token associated with the created user.
id string Unique ID of the user.
View JSON Schema on GitHub

JSON Schema

clientcreateuserresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/clientcreateuserresponse.json",
  "title": "ClientCreateUserResponse",
  "type": "object",
  "description": "Response returned after creating a client user.",
  "properties": {
    "user_token": {
      "type": "string",
      "description": "Token associated with the created user."
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique ID of the user."
    }
  }
}