News Feed Cards Details

GET https://{{instance_url}}/feed/details?card_id={{card_identifier}}

This endpoint allows you to retrieve relevant information on the card, which can be identified by the card_id.

Components Used

Response

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,
}

Request Params

KeyDatatypeRequiredDescription
card_idstring(Required) String

Card API identifier |

HEADERS

KeyDatatypeRequiredDescription
Authorizationstring