> 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 # QueryRecipients # Package: onlineOrders # Namespace: NotificationRecipientsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/notification-recipients/query-recipients.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Retrieves a list of recipients with optional filtering, sorting, and paging. Up to 100 recipients can be returned per request. To learn how to query notification recipients, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language). Supported properties for filtering and sorting: `id`, `createdDate`, `updatedDate`, `channels` --- ## REST API ### Schema ``` Method: queryRecipients Description: Retrieves a list of recipients with optional filtering, sorting, and paging. Up to 100 recipients can be returned per request. To learn how to query notification recipients, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language). Supported properties for filtering and sorting: `id`, `createdDate`, `updatedDate`, `channels` URL: https://www.wixapis.com/rest-notification-recipients/v1/recipients/query Method: POST Method parameters: param name: query | type: CursorQuery - 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 the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#the-filter-section). - name: sort | type: array | description: Sort object. Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#the-sort-section). - name: fieldName | type: string | description: Name of the field to sort by. - name: order | type: SortOrder | description: Sort order. - enum: ASC, DESC Return type: QueryRecipientsResponse - name: recipients | type: array | description: Retrieved recipients. - name: id | type: string | description: Recipient GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the Recipient is updated. To prevent conflicting changes, the current revision must be passed when updating the Recipient. Ignored when creating a Recipient. - name: createdDate | type: string | description: Date and time the Recipient was created. - name: updatedDate | type: string | description: Date and time the Recipient was last updated. - name: phone | type: string | description: Recipient's phone number for receiving notifications. - name: businessLocationIds | type: array | description: IDs of the business locations this recipient should receive order creation notifications for. If this list is empty the recipient receives notifications for orders created at all locations. - name: channels | type: array | description: Communication channels for sending notifications to the recipient. At least 1 channel is required. Recipients can receive notifications through multiple channels simultaneously. - enum: - SMS: Send notifications via SMS text messages. - PHONE: Send notifications via phone calls. - name: note | type: string | description: Additional information about the recipient. Use this field to store notes about the recipient's role, availability, or other relevant details for notification management. - name: extendedFields | type: ExtendedFields | description: Additional custom fields for the recipient. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags for categorizing and organizing recipients. Use tags to group recipients by role (manager, kitchen staff), shift (morning, evening), or other criteria for targeted notifications. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: pagingMetadata | type: CursorPagingMetadata | description: Paging metadata for the query results. - 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 ### QueryRecipients ```curl ~~~cURL curl -X POST \ 'https://www.wixapis.com/restaurants/v1/recipients/query' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' \ -d '{ "query": { "filter": { "businessLocationIds": { "$in": ["550e8400-e29b-41d4-a716-446655440000"] } }, "sort": [ { "fieldName": "createdDate", "order": "DESC" } ], "paging": { "limit": 10, "offset": 0 } } }' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.NotificationRecipientsService.queryRecipients(query) Description: Retrieves a list of recipients with optional filtering, sorting, and paging. Up to 100 recipients can be returned per request. To learn how to query notification recipients, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language). Supported properties for filtering and sorting: `id`, `createdDate`, `updatedDate`, `channels` # 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: RecipientQuery | 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 the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#the-filter-section). - name: sort | type: array | description: Sort object. Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language.md#the-sort-section). - 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: recipients | type: array | description: Retrieved recipients. - name: _id | type: string | description: Recipient GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the Recipient is updated. To prevent conflicting changes, the current revision must be passed when updating the Recipient. Ignored when creating a Recipient. - name: _createdDate | type: Date | description: Date and time the Recipient was created. - name: _updatedDate | type: Date | description: Date and time the Recipient was last updated. - name: phone | type: string | description: Recipient's phone number for receiving notifications. - name: businessLocationIds | type: array | description: IDs of the business locations this recipient should receive order creation notifications for. If this list is empty the recipient receives notifications for orders created at all locations. - name: channels | type: array | description: Communication channels for sending notifications to the recipient. At least 1 channel is required. Recipients can receive notifications through multiple channels simultaneously. - enum: - SMS: Send notifications via SMS text messages. - PHONE: Send notifications via phone calls. - name: note | type: string | description: Additional information about the recipient. Use this field to store notes about the recipient's role, availability, or other relevant details for notification management. - name: extendedFields | type: ExtendedFields | description: Additional custom fields for the recipient. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags for categorizing and organizing recipients. Use tags to group recipients by role (manager, kitchen staff), shift (morning, evening), or other criteria for targeted notifications. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: pagingMetadata | type: CursorPagingMetadata | description: Paging metadata for the query results. - 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 ### queryRecipients ```javascript import { recipients } from '@wix/restaurants'; async function queryRecipients(query) { const response = await recipients.queryRecipients(query); }; ``` ### queryRecipients (with elevated permissions) ```javascript import { recipients } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myQueryRecipientsMethod(query) { const elevatedQueryRecipients = auth.elevate(recipients.queryRecipients); const response = await elevatedQueryRecipients(query); } ``` ### queryRecipients (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 { recipients } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { recipients }, // Include the auth strategy and host as relevant }); async function queryRecipients(query) { const response = await myWixClient.recipients.queryRecipients(query); }; ``` ---