action braze_news_feed_cards_list { label: "News Feed Cards List" description: "This endpoint allows you to export a list of News Feed cards, each of which will include its name and Card API Identifier. The cards are returned in groups of 100 sorted by time of creation (oldest to newest by default).\n\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 \"cards\" : [\n {\n \"id\" : (string) Card API Identifier,\n \"type\" : (string) type of the card - NewsItem (classic cards), CaptionedImage, Banner or DevPick (cross-promotional cards),\n \"title\" : (string) title of the card,\n \"tags\" : (array) tag names associated with the card\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/feed/list" encoding: json input: { type: "object" properties: { include_archived: { type: "string" } page: { type: "string" } sort_direction: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }