List and filter Users
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.
Authorization
Public key In: header
Query Parameters
Page number for pagination (1-based).
int641 < value <= 90071992547409911Number of items per page.
int641 < value <= 10010Filter users by email address.
emailGET /v0/users/list Parameter
int640 <= value <= 9007199254740991GET /v0/users/list Parameter
int640 <= value <= 9007199254740991Response Body
application/json
application/json
curl -X GET "https://example.com/v0/users/list"{ "status": "success", "data": { "users": [ { "object": "user", "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "username": null, "email": null, "details": null, "internalId": null } ], "count": -1.7976931348623157e+308, "pages": -1.7976931348623157e+308 }}Calculate product price including tax POST
Return an indicative price for an offer including the tax that applies to a customer in the given country. Intended for storefront display (e.g. showing gross prices on a product page). The result is a **quote**, not a settled charge: the authoritative tax is always recomputed at checkout from full billing details. Amounts are returned in the smallest currency unit (e.g. 1099 = 10.99 in a 2-decimal currency). For business (B2B) buyers, pass customerType=company with taxId + taxNumber. The quote always returns the standard destination rate; if the buyer is eligible for reverse charge, reverseChargeEligible is true, but the 0% rate is only applied at checkout once the VAT-ID is validated.
Create a new User account POST
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.