Data api resource trackbacks - movabletype/Documentation GitHub Wiki

Trackbacks resource

Property Name Type Data Type Database Column Private Read Only Description
blog Object Blogs Y The blog of this trackback.
blog.id value unsigned int mt_blog.blog_id Y The ID of the blog that contains this trackback.
entry Object Entries Y The container entry for this trackback.
entry.id value unsigned int mt_entry.entry_id Y The ID of container entry.
id value unsigned integer mt_tbping.tbping_id Y The ID of this trackback.
date value iso 8601 datetime mt_tbping.tbping_created_on Y The received date of this trackback.
title value string mt_tbping.tbping_title Y The title of this trackback.
excerpt value string mt_tbping.tbping_excerpt Y The excerpt text of this trackback.
blogName value string mt_tbping.tbping_blog_name Y The site name that sent this trackback.
url value string mt_tbping.tbping_source_url Y The URL of the remote resource that the TrackBack ping sent.
ip value string mt_tbping.tbping_ip Y The IP (Internet Protocol) network address the TrackBack ping was sentfrom.
updatable value boolean
true
The user who accessed can update this trackback ping.
false
The user who accessed cannot update this trackback ping.

Example

{
  "blog" : {
    "id" : 1
  },
  "entry" : {
    "id" : 1
  },
  "id" : 1,
  "date" : "2013-01-11T12:48:12+09:00",
  "title" : "Trackback entry",
  "excerpt" : "blah blah blah",
  "blogName" : "Sent from",
  "url" : "http://example.com/blog/trackback.html",
  "ip" : "10.11.12.13",
  "updatable": true
}
⚠️ **GitHub.com Fallback** ⚠️