DataAPI SDK english MT.DataAPI Endpoint method deleteTrackback - movabletype/mt-data-api-sdk-js GitHub Wiki
Delete a trackback ping.
DELETE https://your-host/your-mt-api.cgi/v1/sites/:site_id/trackbacks/:ping_id Detail
| Name | Type | Required | Description |
|---|---|---|---|
| siteId | Number | Object | Function | yes | Site ID |
| trackbackPingId | Number | Object | Function | yes | TrackbackPing ID |
| callback | Function | no |
XMLHttpRequest: A XMLHttpRequest object
api.deleteTrackback(siteId, trackbackPingId, function(response) {
if (response.error) {
// Handle error
return;
}
// Do stuff
});