GET accounts/:account_id/cards/image_conversation/:card_id¶
Retrieve information about a given image conversation card.
Resource URL¶
https://ads-api.twitter.com/1/accounts/:account_id/cards/image_conversation/:card_id
Resource Information¶
| Response formats | JSON |
| Requires authentication? | Yes (user context only) |
| Rate limited? | Yes |
Parameters¶
| Name | Required | Description | Default Value | Example |
| account_id | required | The identifier for the leveraged account. Appears within the resource’s path and is generally a required parameter for all Advertising API requests excluding GET accounts . The specified account must be associated with the authenticating user. | 43853bhii879 | |
| card_id | required | The identifier for the specific card. | xyz1 |
Example Request¶
DELETE https://ads-api.twitter.com/1/accounts/abc1/cards/image_conversation/xyz1
Example Response¶
{
"data_type": "card",
"data": {
"name": "image conversation card",
"title": "Tell the world!",
"first_cta": "#TweetNow",
"image": "https://pbs.twimg.com/media-preview/snf:649331432767098880/alHX6sAW.png",
"thank_you_text": "Thank you",
"thank_you_url": "https://example.com/thankyou",
"preview_url": "https://cards.twitter.com/cards/abc1/xyz1",
"id": "xyz1",
"account_id": "abc1",
"first_cta_tweet": "I #Heart @AdsAPI!",
"created_at": "2015-09-03T00:03:16Z",
"updated_at": "2015-09-03T00:03:16Z",
"deleted": false,
"card_type": "IMAGE_CONVERSATION"
},
"request": {
"params": {
"card_id": "xyz1",
"card_type": "IMAGE_CONVERSATION",
"account_id": "abc1"
}
}
}