Using the Admin API what is the correct format to post multiple cards using mobiledoc?
The format below gives me an error Invalid mobiledoc structure.
let mobileDocJson = JSON.stringify({
version: '0.3.1',
markups: [],
atoms: [],
cards: [
['html', { cardName: 'main', html: main_html }],
['html', { cardName: 'list', html: list_html }]
],
sections: [[10, 0]]
});