News Feed card details endpoint
get
/feed/details
This endpoint allows you to retrieve relevant information on the card, which can be identified by the card_id
.
Rate limit
We apply the default Braze rate limit of 250,000 requests per hour to this endpoint, as documented in API rate limits.
Request parameters
Parameter | Required | Data Type | Description |
---|---|---|---|
card_id |
Required | String | See Card API identifier. The card_id for a given card can be found in the Developer Console page and on the card details page within your dashboard, or you can use the News Feed List Endpoint. |
Example request
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'
Response
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) Date created as ISO 8601 date,
"updated_at" : (string) Date last updated as ISO 8601 date,
"name" : (string) Card name,
"publish_at" : (string) Date card was published as ISO 8601 date,
"end_at" : (string) Date card will stop displaying for users as ISO 8601 date,
"tags" : (array) Tag names associated with the card,
"title" : (string) Title of the card,
"image_url" : (string) Image URL used by this card,
"extras" : (dictionary) Dictionary containing key-value pair data attached to this card,
"description" : (string) Description text used by this card,
"archived": (boolean) whether this Card is archived,
"draft": (boolean) whether this Card is a draft,
}
tip:
For help with CSV and API exports, visit Export troubleshooting.