-
Notifications
You must be signed in to change notification settings - Fork 9
Data api trackbacks get
Yuji Takayama edited this page Jul 10, 2013
·
1 revision
Retrieve a single trackback by its ID.
Authorization is required if the trackback status is "unpublished". If the trackback status is "published", then this method can be called without authorization.
This method accepts GET only.
GET https://your-host/your-mt-api.cgi/v1/sites/{blog_id}/trackbacks/{trackback_id}
| Parameter | Type | Description |
|---|---|---|
| blog_id | unsigned integer | The blog ID. |
| trackback_id | unsigned integer | The trackback ID. |
Not available.
Do not supply a request body.
If successful, this method will return an Trackbacks resource as the response body.
| Code | Description |
|---|---|
| 200 | no error |
| 403 | Do not have permission to retrieve the requested trackback. |
| 404 | trackback (or site) not found |