The documentation is not quite clear about the limits and the method of sending many different notifications to many different users.

Is it possible by sending a request to create notifications with one array to create many different notifications for many different users.

For example, send to a certain number of users different messages about discounts on various products (each user has a subscription to various products).

  • Possible duplicate question: How to make notifications of news to which the user is subscribed? - Alexey Shimansky
  • Tag users with groups of groups, on which mailing depends. Then send content corresponding to this tag - Alexey Shimansky
  • The question is not the storage or tagging of users, but the fact that the message for each user can and should be different. The documentation does not say how to send 200 messages to 200 users, for example. For example, a crown at 6 am is used for a task in which an array of customized messages is formed for different users (for example, one thousand signed and patched users). The question is in what format to form this request to be sent to the API. One by one request or you can 100 content variables per 100 user tag samples (with a limit of 200 API at a time). - Andrew
  • This is not a DB, but an API. In API you cannot send 100 different messages at the same time. do a cycle ... but what are you sending out there, that you have 1000 users should receive a different message? - Alexey Shimansky
  • The discount thing, each user is interested in different discounts for different products, I would like to warn users about the number of goods at a discount for which it is signed. I would like to send a notification not to "There is a discount for some products", but more customized, at least "For 5 products in your list there is a discount". The number of users and discounts can not be strictly controlled. I would like to understand what kind of array to send to the OS API to notify all users (at least in cycles of 100, this is understandable). - Andrew

0