POST

Count Accounts


Retrieves the count of found accounts, given the provided filters and search capabilities.

This endpoint can help find the total count of accounts when used alongside Search Accounts.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Loyalty
Read Loyalty
Learn more about app permissions.
Endpoint
POST
https://www.wixapis.com/loyalty-accounts/v1/accounts/count

Body Params
filterstruct

Filter object.


searchSearch

Free text to match in searchable fields.

Response Object
countintegerminimum 0
Count accounts, given the provided filters
Request
cURL
curl -X POST \ 'https://www.wixapis.com/loyalty-accounts/v1/accounts/count' \ -H 'Authorization: <AUTH>' \ --data-raw '{ "search": {"expression": "John"}, "filter": {"points.balance": {"$gte": 50}} }'
Response
JSON
{ "count": 2 }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?