Cards and Boards
Overview
This page describes how customers use the Card and Board APIs to load content.
Structure
Here's what a board with cards and sections looks like:
{
"description" : "my board",
"id" : "fab98840-ad24-4106-9e68-a2d114490cea",
"title" : "Use Cases",
"items" : [ {
"type" : "fact",
"preferredPhrase" : "title of the first card",
// the rest of the card properties would go here...
}, {
"type" : "fact",
"preferredPhrase" : "title of the second card",
// the rest of the card properties would go here...
}, {
"type" : "fact",
"preferredPhrase" : "title of the third card",
// the rest of the card properties would go here...
}, {
"type" : "section",
"title" : "my section",
"items": [ {
"type" : "fact",
"preferredPhrase" : "title of the card inside the section",
// the rest of the card properties would go here...
} ]
} ]
}
Importing Considerations
If you import content into Guru from another system, consider how you want page-to-page links to work. These links can become links between Guru Cards or links from Guru Cards back to the other system.
Updated almost 3 years ago