A User object represents a customer who has made a purchase or registered in your store. Users store identity information including contact details, billing address, and custom identifiers. Each user is automatically created when a customer completes a checkout, or can be created manually via the API. Users are central to the Fungies platform - they link to Orders, Payments, Subscriptions, and inventory items. You can use the API to create, retrieve, update, and manage user accounts.Documentation Index
Fetch the complete documentation index at: https://docs.fungies.io/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /v0/users/list | List and filter users |
POST | /v0/users/create | Create a new user |
GET | /v0/users/{userId} | Retrieve a user |
PATCH | /v0/users/{userId}/update | Update user details |
PATCH | /v0/users/{userId}/archive | Archive a user |
PATCH | /v0/users/{userId}/unarchive | Restore an archived user |
GET | /v0/users/{userId}/inventory | Get user’s inventory items |
The User object
Object type identifier. Always
"user" for User objects.Unique identifier (UUID) for this user.
The user’s email address. Used for transactional emails and account identification.
Username of the user, if set. Can be used as an alternative identifier.
Billing and contact details for the user.
Your custom identifier for this user. Use this to link Fungies users to your own system’s user records.
Example response
Related resources
Orders
View orders placed by users
Payments
Payment transactions by users
Subscriptions
User subscription relationships
Events
Webhook events for user activity