新しいEメールデザイナと旧EメールエディタのAPIについて | Community
Skip to main content
Level 1
July 16, 2026
New

新しいEメールデザイナと旧EメールエディタのAPIについて

  • July 16, 2026
  • 2 replies
  • 47 views

Marketoのメールアセット一覧とメールコンテンツ取得に関して、

現在の検証結果として下記だが、v2仕様は公開情報となっていない。

また、メールアセット一覧取得に関して、v1で旧エディタでの作成分と新エディタ作成分(ただしレスポンス内容の不足あり)という状況だが、この状態が正式仕様となるのかも公開情報となっていない。

 

APIを利用したシステム構築を行ううえで正式な仕様情報がなく、設計が困難なため早期に仕様の確定および公式情報として公開を頂きたい。

 

《検証結果》

■メールアセット一覧取得
 v1:旧エディタに加え、新エディタで作成したアセットも取得可能。ただし新エディタ分は、一部Subjectが含まれないなどレスポンス内容に不足が見受けられます。
   (https://developer.adobe.com/marketo-apis/api/asset#operation/getEmailUsingGET)
 v2:新エディタで作成したアセットのみ取得可能。
   (https://developer.adobe.com/marketo-apis/api/asset#operation/filterContentUsingGET_email)

■メールコンテンツ取得
 v1:旧エディタ作成メールのみ取得可能
   (https://developer.adobe.com/marketo-apis/api/asset#operation/getEmailFullContentUsingGET)
 v2:新エディタ作成メールのみ取得可能
   (https://developer.adobe.com/marketo-apis/api/asset#operation/getContentUsingGET_email)

2 replies

Adobe Employee
July 16, 2026

I updated the API file for you. Refresh the page and let me know if that has the information you need.

Level 1
July 17, 2026

リファレンスの更新について、レスポンス例が追記されていることを確認しました。

 

ただ、実際に検証した際返却された値およびサポート回答と、

今回追記頂いたリファレンス記載に差異があります。

検証では下記レスポンスが返却されましたが、記載との差異発生理由はなぜでしょうか?

 

《検証した結果》

{
"success": true,
"requestId": 【省略】,
"result": {
"items": [
{
"id": 【アセットID#】,
"name": 【アセット名】,
"appType": "marketo",
"headers": {
"subject": 【メールSubject】,
"fromEmail": 【メールアドレス】
"fromName": 【送信元設定名】,
"replyEmail": 【メールアドレス】
},
"metadata": {
"createdBy": 【アセット作成者名】,
"createdAt": "2026-07-06T02:03:03Z+0000",
"createdById": 【アセット作成者ID】,
"createdByAepId": 【アセット作成者AEPID】,
"modifiedBy": 【アセット編集者名】,
"modifiedAt": "2026-07-09T01:40:00Z+0000",
"modifiedById": 【アセット編集者ID】,
"modifiedByAepId": 【アセット編集者AEPID】
},
"settings": {
"isOperational": false,
"isWebPageView": false,
"isTextOnly": false,
"disableOpenTracking": false,
"enableUrlTracking": false,
"brandedDomain": "**.****.net"
},
"status": "published_with_draft",
"state": "published",
"virtualId": 【ID】,
"associatedStates": [
{
"contentId":【ID】,
"externalId":【ID】,
"state": "published"
},
{
"contentId":【ID】,
"externalId": 【ID】,
"state": "draft"
}
],
"appData": {
"workspaceId": "1",
"folderId": 【ID】,
"programId": 【ID】,
"programName": 【Program 名】,
"programType": "Email Batch Program"
},
"templateId": "seasonalCampaign",
"externalId":【ID】,
"editorContext": {
"dynamicContent": {}
},
"scriptEngine": "VELOCITY"
}
],
}
}

Adobe Employee
July 17, 2026

Hi,

I am the technical writer for those APIs, and I was hoping that the adding the response objects would allow you to proceed. As to why the v2 subject isn’t populating the v1 field, I will bring it up with the dev team.