-
Type:
Suggestion
-
Resolution: Fixed
-
Component/s: Core - Content REST APIs
The blog entries for a space are not part of the returned pages.
We need to add a blog section to the API :
Data :
BlogSummary{
id
title // for now only default or space
}
BlogEntrySummary{
published date
autohor
title
id
}
BlogEntry{
id
title
text
Comment[]
}
Comment{
date
author
text
}
API
BlogEntrySummary[] getBlogEntries(token,spaceId, blogId)
BlogEntry getEntry(token,spaceId, blogId,entryId)
boolean postToBlog(token,spaceId,blogId,BlogEntry)
// does create & update depending on the entry id