action braze_news_feed_card_analytics { label: "News Feed Card Analytics" description: "This endpoint allows you to retrieve a daily series of engagement stats for a card over time.\n\n### Components Used\n- [Card ID](https://www.braze.com/docs/api/identifier_types/)\n- [News Feed List](https://www.braze.com/docs/api/endpoints/export/news_feed/get_news_feed_cards/)\n\n## Response\n\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR-REST-API-KEY\n{\n \"message\": (required, string) the status of the export, returns 'success' when completed without errors,\n \"data\" : [\n {\n \"time\" : (string) point in time - as ISO 8601 extended when unit is \"hour\" and as ISO 8601 date when unit is \"day\",\n \"clicks\" : (int) ,\n \"impressions\" : (int),\n \"unique_clicks\" : (int),\n \"unique_impressions\" : (int)\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/feed/data_series" encoding: json input: { type: "object" properties: { card_id: { type: "string" } ending_at: { type: "string" } length: { type: "string" } unit: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }