> ## Documentation Index
> Fetch the complete documentation index at: https://developer.paywint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Register and manage users in Paywint to enable payments, wallets, and other financial services.

User management is the foundation of your Paywint integration.\
Every financial action—payments, wallet transfers, payees, card linking, and checkout—starts with a registered user.

***

## Integrate User Management

Use the User Management API to create, list, and retrieve users.\
These endpoints are required for onboarding users into your platform and enabling any financial features.

<CardGroup cols={3}>
  <Card title="Create User" icon="user-plus" href="/api-reference/users/create" arrow="true">
    Register a new user under your platform. Required before enabling financial actions.
  </Card>

  <Card title="List Users" icon="users" href="/api-reference/users/list" arrow="true">
    Retrieve all users associated with your platform account.
  </Card>

  <Card title="Get User" icon="user-check" href="/api-reference/users/get" arrow="true">
    Fetch complete user details including profile, compliance status, and linked methods.
  </Card>
</CardGroup>

***

## User Workflow with Paywint

<Steps>
  <Step title="Register the user">
    Call [Create User](/api-reference/users/create) to create a Paywint user record and obtain a Paywint User ID.
  </Step>

  <Step title="Compliance requirements">
    Wallet-to-wallet payments do not require any compliance checks.\
    Other payment methods—such as bank transfers, ACH, or card-based payouts—may require the user to complete necessary [KYC](/api-reference/compliance/kyc/create-enquiry-link)/[KYB](/api-reference/compliance/kyb/submit) steps depending on usage and regulatory rules.
  </Step>

  <Step title="User can access financial features">
    Users can
    [add bank accounts](/api-reference/bank-accounts/add),
    [add cards](/api-reference/cards/add),
    [create payees](/api-reference/payee/create-payee),
    and use their [Paywint wallet](/api-reference/wallet/get).\
    Most features are available by default, and some advanced capabilities may require contacting the Paywint support team.
  </Step>

  <Step title="Start processing payments">
    Users can immediately make wallet-to-wallet payments.\
    For other payment types, usage depends on whether required verification steps have been completed.
  </Step>
</Steps>

***

## Merchant Dashboard

Manage users directly from the merchant dashboard.\
View user details, verification status, wallet balances, payment activity, and more.

<Frame>
  <img src="https://mintcdn.com/paywint/EiJlm9ZH8Q15y0cZ/assets/merchant/manage-users.png?fit=max&auto=format&n=EiJlm9ZH8Q15y0cZ&q=85&s=d604e29abe38c229177e686421f5a749" alt="User management dashboard" width="1920" height="910" data-path="assets/merchant/manage-users.png" />
</Frame>

<CardGroup cols={2}>
  <Card title="Sandbox Dashboard" icon="flask-vial" href="https://sandbox.merchant.paywint.com" arrow="true" cta="Open Sandbox">
    Access your sandbox merchant dashboard for testing and integration.
  </Card>

  <Card title="Production Dashboard" icon="bullseye" href="https://merchant.paywint.com" arrow="true" cta="Open Production">
    Manage live users and financial operations in production.
  </Card>
</CardGroup>

***

## Best Practices

* Always store the **Paywint User ID** to map internal users to Paywint.
* Ensure [KYC](/api-reference/compliance/kyc/create-enquiry-link)/[KYB](/api-reference/compliance/kyb/submit) is completed before initiating payments.
* Use the dashboard for manual review, troubleshooting, and support operations.
