---
title: "Connect a User via Network Token"
method: POST
path: "/v1/users/connect/network"
tags: ["Connect"]
---

# Connect a User via Network Token

`POST /v1/users/connect/network`

Create user from Spinwheel network token.

## Request body

- CreateNetworkUserRequest
  - `extUserId` string, required — A unique external ID for the user
  - `networkToken` string, required — Network token
  - `ssnLastFourDigits` string, required
  - `dateOfBirth` string, required — The date of birth. Formatted as YYYY-MM-DD.
  - `audit` NetworkUserAudit, required
    - `consentTimestamp` string — When the user consented to the End User Agreement. Must be a UTC RFC 3339 datetime within the last 24 hours. At least one of consentTimestamp or userConsentDate is required. If both are provided, consentTimestamp takes precedence.
    - `tosVersion` 'v1.0' | 'v1.1' — Version of the Spinwheel End User Agreement agreed to by the user. Supported versions: v1.0, v1.1.
    - `tosLanguage` 'en' — Language in which the Spinwheel End User Agreement was presented. Currently only "en" is supported.
    - `consentType` 'WRITTEN' | 'VERBAL' — How consent was obtained. WRITTEN: written or electronic consent. VERBAL: verbal consent during a recorded interaction.
    - `userConsentDate` string — The date the user consented to verification, formatted as YYYY-MM-DD. At least one of userConsentDate or consentTimestamp is required. If both are provided, consentTimestamp takes precedence.
  - `include` string[] — Array of additional data capabilities to include in the response. When absent, the endpoint behaves exactly as it does today.

## Response `200`

Success

- CreateNetworkUserResponse
  - `status` ResponseStatus, required
    - `code` number
    - `desc` string
    - `messages` Message[]
      - `desc` string, required
      - `type` 'ERROR' | 'WARN' | 'INFO'
  - `data` CreateNetworkUserResponseData, required
    - `userId` string, required — Id of the user
    - `extUserId` string, required — A client id registered with Spinwheel on creation
    - `networkToken` string — The Spinwheel network token, to be used for passing lead data to the network
    - `createdOn` number, required
    - `updatedOn` number, required
    - `profile` NetworkUserProfile
      - `firstName` string, required — First name
      - `middleName` string — Middle name
      - `lastName` string, required — Last name
      - `emailAddress` string — Email address
      - `model` 'VANTAGE_SCORE_3_0' | 'FICO_SCORE_4' | 'FICO_SCORE_8' — Scoring model
      - `dob` string — Date of birth
      - `phoneNumber` string — Phone number
      - `ssnLastFourDigits` string, required — Last 4 digits of the ssn
      - `addresses` Address[]
        - `addressLine1` string, required
        - `addressLine2` string
        - `city` string, required
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DC' | 'DE' | 'FL' | 'GA' | 'HI' | 'ID' | 'IL' | 'IN' | 'IA' | 'KS' | 'KY' | 'LA' | 'ME' | 'MD' | 'MA' | 'MI' | 'MN' | 'MS' | 'MO' | 'MT' | 'Ne' | 'NE' | 'NV' | 'NH' | 'NJ' | 'NM' | 'NY' | 'NC' | 'ND' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VT' | 'VA' | 'WA' | 'WV' | 'WI' | 'WY', required
        - `zip` string, required
        - `zipExtension` string

## Other responses

- `400` — Missing configuration for partner
- `401` — Token is not affiliated to the partner or has expired
- `403` — Spinwheel network access is disabled
- `404` — Network token not found
- `406` — Token is not acceptable for user creation
- `409` — Conflict with existing user
- `500` — User creation internal error

---

[API](https://skmtc.dev/spinwheel/apis/discover.md) · [All operations](https://skmtc.dev/spinwheel/apis/discover/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/spinwheel/discover/revisions/55b90a2e1dd4/schema)
