Creating Publications
Example Application
Creating a Publication via API
1. Upload Document
{
"filename": "document.pdf",
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"sha1": [0],
"url": "https://api.thinkeo.dev/v0/attachments/uuid"
}
2. Create Publication
3. Understanding the Response
{
"publicationId": "93327d8c-28a6-486e-9efe-56c688756cb2",
"rootBlockId": "0191ea9f-4791-7d40-9e57-c4510181aee1",
"blocks": {
"0191eabd-48cb-7de1-9e2c-ae53281cf173": {
"kind": "html",
"content": "Analysis content here..."
},
"0191eac1-4674-7721-81ac-6931c345ddf8": {
"kind": "html",
"content": "Summary content here..."
},
"0191ea9f-4791-7d40-9e57-c4510181aee1": {
"kind": "concatenation",
"content": [
"0191eabd-48cb-7de1-9e2c-ae53281cf173",
"0191eac1-4674-7721-81ac-6931c345ddf8"
]
}
}
}
"kind": "html"
): Contain the actual content"kind": "concatenation"
): Define the structure and order of content blocksrootBlockId
JS snippet
async function thinkeoPublication(token, appId, appVersion, context = {}) {
const res = await fetch(`https:/api.thinkeo.io/v0/publications?app=${appId}&version=${appVersion}`, {
method: "POST",
headers: {
"Authorization": `Bearer ${token}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
attributes: context,
})
})
const { blocks, rootBlockId } = await res.json()
const concatenated = {}
function concatenateContent(id) {
if (concatenated[id]) return concatenated[id]
const block = blocks[id]
switch (block.kind) {
case "concatenation":
concatenated[id] = block.content.map(concatenateContent).join("")
break
case "html":
concatenated[id] = block.content
break
}
return concatenated[id]
}
return concatenateContent(rootBlockId)
}
Modified at 2025-01-02 09:15:28