CMS Contentsの例ではエラーになる
{
"contentSpaceOrFolderId" : "0Zuxx00000003M5CAI",
"title" : "Title of Document",
"contentType" : "ftestSfdcOnly__banner",
"urlName" : "testUrl",
"contentBody" : {
"bannerImage" : "MCZOCY2AM5PFBADN5UDRB53TLXR4",
"featuredEvent" : "MCZOCY2AM5PFBADN5UDRB53TLXR4",
"excerpt" : "this is test except",
"body" : "<p>Test body</p>"
}
}
エラーにならないように調整した例
"source":が必要?
{
"contentSpaceOrFolderId" : "0Zuxx00000003M5CAI",
"title" : "Title of Document",
"contentType" : "ftestSfdcOnly__banner",
"urlName" : "testUrl",
"contentBody" : {
"bannerImage": {
"source": {
"type": "imageReference",
"ref": {
"contentKey": "MCZOCY2AM5PFBADN5UDRB53TLXR4"
}
}
},
"featuredEvent": {
"source": {
"type": "imageReference",
"ref": {
"contentKey": "MCZOCY2AM5PFBADN5UDRB53TLXR4"
}
}
},
"excerpt" : "this is test except",
"body" : "<p>Test body</p>"
}
}