Exporter les informations relatives à la carte de fil d’actualité
get
/feed/details
Utilisez cet endpoint pour récupérer des informations pertinentes sur une carte, qui peuvent être identifiées par le
card_id
.
important:
News Feed is being deprecated. We recommend migrating to our Content Cards messaging channel instead—it’s more flexible, customizable, and reliable. To get started, check out Migrating from News Feed.
Conditions préalables
Pour utiliser cet endpoint, vous aurez besoin d’une clé API avec l’autorisation feed.details
.
Limite de débit
We apply the default Braze rate limit of 250,000 requests per hour to this endpoint, as documented in API rate limits.
Paramètres de demande
Paramètre | Requis | Type de données | Description |
---|---|---|---|
card_id |
Requis | Chaîne de caractères | Voir l’identifiant API de la carte. Vous trouverez le site card_id pour une carte donnée sur la page des clés API et sur la page des détails de la carte dans votre tableau de bord, ou vous pouvez utiliser le point de terminaison Exporter la liste des cartes du fil d’actualité. |
Exemple de demande
1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/feed/details?card_id={{card_identifier}}' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
Réponse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
"message": (required, string) The status of the export, returns 'success' when completed without errors,
"created_at" : (string) the ate created as ISO 8601 date,
"updated_at" : (string) the ate last updated as ISO 8601 date,
"name" : (string) the card name,
"publish_at" : (string) the date the card was published as ISO 8601 date,
"end_at" : (string) the date the card will stop displaying for users as ISO 8601 date,
"tags" : (array) the tag names associated with the card,
"title" : (string) the title of the card,
"image_url" : (string) the image URL used by this card,
"extras" : (dictionary) a dictionary containing key-value pair data attached to this card,
"description" : (string) the description text used by this card,
"archived": (boolean) whether this Card is archived,
"draft": (boolean) whether this Card is a draft,
}
tip:
Pour obtenir de l’aide sur les exportations CSV et de l’API, consultez la section Résolution des problèmes d’exportation.
New Stuff!