chabokpush / chabok-php-demo

Chabok API sample client in PHP
7 stars 0 forks source link

how can i use multi tags for send push #43

Closed Mr-Hqq closed 5 years ago

Mr-Hqq commented 5 years ago

how can i send push to some user that have list of tags?

amir-yaghoubi commented 5 years ago

شما میتوانید با استفاده از API /push/ByQuery به شکل زیر اقدام به ارسال نمایید.

{
  "content": "tags test",
  "channel": "default",
  "segment": {
    "all": [
      {
        "name": "tags",
        "operator": "include",
        "value": [
          "TAG1",
          "TAG2",
          "TAG3"
        ]
      }
    ]
  },
  "notification": {
    "title": "Tag test",
    "body": "Tag test"
  }
}