# send push notifications

**Unique key /Id**

Require access tokens before delivering notifications to your end users

![](https://2592634121-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FT5HLPrqZhkeNGgJP37dC%2Fuploads%2FXoKADhvHub1tFXNamyki%2FScreen%20Shot%202022-05-18%20at%2013.21.12.png?alt=media\&token=49e601d9-c1a5-41ea-ad73-2a0a785531d6)

## send a message

<mark style="color:green;">`POST`</mark> `https://us-central1-appgregator.cloudfunctions.net/expo/`

#### Headers

| Name                                        | Type   | Description   |
| ------------------------------------------- | ------ | ------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | 12wkFBUJNQV;C |

{% tabs %}
{% tab title="201: Created " %}

```javascript
[
    {
        "status": "ok",
        "id": "60d955b7-ac98-40c6-9162-8fecfe4b42a1"
    },
    {
        "status": "ok",
        "id": "601df8b7-c074-4762-96ec-4ed4e6ff90eb"
    }
]
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="body JSON" %}

```
{
  "name": "qantor.co.id",
  "connection_name": "entrepreneurs-test",
  "data": [
    {
      "token": "ExponentPushToken[Uuoi2_Ia5h9eJ1t48LAE25]",
      "title": "123",
      "body": "multiple array-testing",
      "data": {
        "_displayInForeground": true,
        "qty": 1
      }
    },
    {
      "token": "ExponentPushToken[Uuoi2_Ia5h9eJ1t48LAE25]",
      "title": "broadcast message-multiple array",
      "body": "multiple array-testing",
      "data": {
        "_displayInForeground": true
      }
    }
  ]
}
```

{% endtab %}
{% endtabs %}
