delivery_data
Creates, updates, deletes, gets or lists a delivery_data
resource.
Overview
Name | delivery_data |
Type | Resource |
Id | firebase.fcmdata.delivery_data |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
analyticsLabel | string | The analytics label associated with the messages sent. All messages sent without an analytics label will be grouped together in a single entry. |
appId | string | The app ID to which the messages were sent. |
data | object | The data for the specified appId, date, and analyticsLabel. (id: GoogleFirebaseFcmDataV1beta1Data) |
date | object | The date represented by this entry. (id: GoogleTypeDate) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , androidAppsId | pageToken , pageSize | List aggregate delivery data for the given Android application. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
androidAppsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
List aggregate delivery data for the given Android application.
SELECT
analyticsLabel,
appId,
data,
date
FROM firebase.fcmdata.delivery_data
WHERE projectsId = '{{ projectsId }}' -- required
AND androidAppsId = '{{ androidAppsId }}' -- required
AND pageToken = '{{ pageToken }}'
AND pageSize = '{{ pageSize }}';