Skip to content

DataAPI SDK japanese MT.DataAPI Endpoint method updateEntry

Taku AMANO edited this page Aug 28, 2013 · 8 revisions

updateEntry

ブログ記事を更新します

PUT https://your-host/your-mt-api.cgi/v1/sites/:site_id/entries/:entry_id 詳細

パラメータ

パラメータ名 タイプ 必須 説明
siteId Number | Object | Function * ブログID
entryId Number | Object | Function * ブログ記事ID
entryData Object | HTMLFormElement * 更新するブログ記事データ
callback Function

戻り値

XMLHttpRequest: XMLHttpRequestオブジェクト

api.updateEntry(siteId, entryId, entryData, function(response) {
  if (response.error) {
    // エラー処理
    return;
  }

  // レスポンスデータを使った処理
});
Clone this wiki locally