> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # QueryReferredFriend # Package: referralProgram # Namespace: ReferredFriends # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/referral-program/referred-friends/query-referred-friend.md ## Permission Scopes: Manage Referrals: SCOPE.DC-REFERRALS.MANAGE-REFERRALS ## Introduction Retrieves a list of referred friends, given the provided paging, filtering, and sorting. This endpoint supports [WQL (Wix Query Language)](https://dev.wix.com/api/rest/getting-started/api-query-language). To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection). --- ## REST API ### Schema ``` Method: queryReferredFriend Description: Retrieves a list of referred friends, given the provided paging, filtering, and sorting. This endpoint supports [WQL (Wix Query Language)](https://dev.wix.com/api/rest/getting-started/api-query-language). To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection). URL: https://www.wixapis.com/v1/referred-friends/query Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: query Method parameters: param name: query | type: CursorQuery | required: true - name: cursorPaging | type: CursorPaging | description: Cursor paging options. Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#cursor-paging). - name: limit | type: integer | description: Maximum number of items to return in the results. - name: cursor | type: string | description: Pointer to the next or previous page in the list of results. Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response. Not relevant for the first request. - name: filter | type: object | description: Filter object. Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#filters). - name: sort | type: array | description: Sort object. Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#sorting). - name: fieldName | type: string | description: Name of the field to sort by. - name: order | type: SortOrder | description: Sort order. - enum: ASC, DESC Return type: QueryReferredFriendResponse - name: referredFriends | type: array | description: Retrieved referred friends. - name: id | type: string | description: GUID of the referred friend. - name: contactId | type: string | description: Contact GUID of the referred friend. - name: referringCustomerId | type: string | description: GUID of the customer who referred this friend. - name: status | type: Status | description: Status of the referred friend. - enum: - UNKNOWN: Unknown status. - SIGN_UP_COMPLETED: Initial status when the referred friend joins the site as a member. - ACTIONS_COMPLETED: Status after the referred friend completes a specific action, such as making a purchase. - name: revision | type: string | description: Revision number, which increments by 1 each time the referred friend is updated. To prevent conflicting changes, the current revision must be passed when updating the referred friend. - name: createdDate | type: string | description: Date and time the referred friend was created. - name: updatedDate | type: string | description: Date and time the referred friend was last updated. - name: metadata | type: CursorPagingMetadata | description: Cursor paging metadata. - name: count | type: integer | description: Number of items returned in current page. - name: cursors | type: Cursors | description: Cursor strings that point to the next page, previous page, or both. - name: next | type: string | description: Cursor string pointing to the next page in the list of results. - name: prev | type: string | description: Cursor pointing to the previous page in the list of results. - name: hasNext | type: boolean | description: Whether there are more pages to retrieve following the current page. + `true`: Another page of results can be retrieved. + `false`: This is the last page. ``` ### Examples ### Query Referred Friend ```curl curl -X POST \ 'https://www.wixapis.com/referral_friends/v1/referred-friends/query' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "query": { "sort": [ { "order": "DESC", "fieldName": "revision" } ], "filter": { "status": "ACTIONS_COMPLETED" } } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.referralProgram.ReferredFriends.queryReferredFriend(query) Description: Retrieves a list of referred friends, given the provided paging, filtering, and sorting. This endpoint supports [WQL (Wix Query Language)](https://dev.wix.com/api/rest/getting-started/api-query-language). To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection). # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: query Method parameters: param name: query | type: ReferredFriendQuery | required: true - name: cursorPaging | type: CursorPaging | description: Cursor paging options. Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#cursor-paging). - name: limit | type: integer | description: Maximum number of items to return in the results. - name: cursor | type: string | description: Pointer to the next or previous page in the list of results. Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response. Not relevant for the first request. - name: filter | type: object | description: Filter object. Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#filters). - name: sort | type: array | description: Sort object. Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#sorting). - name: fieldName | type: string | description: Name of the field to sort by. - name: order | type: SortOrder | description: Sort order. - enum: ASC, DESC Return type: PROMISE - name: referredFriends | type: array | description: Retrieved referred friends. - name: _id | type: string | description: GUID of the referred friend. - name: contactId | type: string | description: Contact GUID of the referred friend. - name: referringCustomerId | type: string | description: GUID of the customer who referred this friend. - name: status | type: Status | description: Status of the referred friend. - enum: - UNKNOWN: Unknown status. - SIGN_UP_COMPLETED: Initial status when the referred friend joins the site as a member. - ACTIONS_COMPLETED: Status after the referred friend completes a specific action, such as making a purchase. - name: revision | type: string | description: Revision number, which increments by 1 each time the referred friend is updated. To prevent conflicting changes, the current revision must be passed when updating the referred friend. - name: _createdDate | type: Date | description: Date and time the referred friend was created. - name: _updatedDate | type: Date | description: Date and time the referred friend was last updated. - name: metadata | type: CursorPagingMetadata | description: Cursor paging metadata. - name: count | type: integer | description: Number of items returned in current page. - name: cursors | type: Cursors | description: Cursor strings that point to the next page, previous page, or both. - name: next | type: string | description: Cursor string pointing to the next page in the list of results. - name: prev | type: string | description: Cursor pointing to the previous page in the list of results. - name: hasNext | type: boolean | description: Whether there are more pages to retrieve following the current page. + `true`: Another page of results can be retrieved. + `false`: This is the last page. ``` ### Examples ### queryReferredFriend ```javascript import { friends } from '@wix/referral'; async function queryReferredFriend(query) { const response = await friends.queryReferredFriend(query); }; ``` ### queryReferredFriend (with elevated permissions) ```javascript import { friends } from '@wix/referral'; import { auth } from '@wix/essentials'; async function myQueryReferredFriendMethod(query) { const elevatedQueryReferredFriend = auth.elevate(friends.queryReferredFriend); const response = await elevatedQueryReferredFriend(query); } ``` ### queryReferredFriend (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { friends } from '@wix/referral'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { friends }, // Include the auth strategy and host as relevant }); async function queryReferredFriend(query) { const response = await myWixClient.friends.queryReferredFriend(query); }; ``` ---