Create a new User account
Creates a new User account in the system. The email must be unique across all Users. Returns the created User object with all fields except the password. Note: If billingDetails are provided, ensure the countryCode is valid and postalCode is included for required countries.
Authorization
Public key Secret key In: header
In: header
Request Body
application/json
POST /v0/users/create Request body
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/v0/users/create" \ -H "Content-Type: application/json" \ -d '{ "email": "test@example.com" }'{ "status": "success", "data": { "user": { "object": "user", "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "username": null, "email": null, "details": null, "internalId": null } }}List and filter Users GET
Retrieve a paginated list of Users with powerful filtering options. Results are sorted by creation date (newest first) by default. Note: Timestamps can be provided in either seconds or milliseconds since Unix epoch.
Get User object GET
Get detailed information about a specific User.