Blog
Publish blog post
post /api/http/blog
Rights, that may be checked: Publish articles
|
Request arguments |
---|
object with fields: title : string 
content : string 
locations : array of string ( Nullable and Optional , defaults to null )
teams : array of string ( Nullable and Optional , defaults to null )
event : BlogCalendarEvent ( Nullable and Optional , defaults to null )
|
|
Get all blog posts
get /api/http/blog
Rights, that may be checked: View articles
|
Request arguments |
---|
$skip : string (Query) ( Nullable and Optional , defaults to null )
| $top : integer (format: int32) (Query) ( Nullable and Optional , defaults to 100 )
| term : string (Query) ( Nullable and Optional , defaults to null )
| dateFrom : string (format: date-time) (Query) ( Nullable and Optional , defaults to null )
| dateTo : string (format: date-time) (Query) ( Nullable and Optional , defaults to null )
| authorId : string (Query) ( Nullable and Optional , defaults to null )
| teamId : string (Query) ( Nullable and Optional , defaults to null )
| locationId : string (Query) ( Nullable and Optional , defaults to null )
| forProfile : string (Query) ( Nullable and Optional , defaults to null )
|
Response |
---|
object with fields: next : string 
totalCount : integer (format: int32) ( Nullable and Optional , defaults to null )
data : array of ArticleRecord 
|
|
Import blog posts
post /api/http/blog/import
Rights, that may be checked: Import articles
|
Request arguments |
---|
object with fields: |
|
Get stats
get /api/http/blog/stats
Rights, that may be checked: View articles
|
Request arguments |
---|
dateFrom : string (format: date-time) (Query) ( Nullable and Optional , defaults to null )
| dateTo : string (format: date-time) (Query) ( Nullable and Optional , defaults to null )
| authorId : string (Query) ( Nullable and Optional , defaults to null )
| teamId : string (Query) ( Nullable and Optional , defaults to null )
| locationId : string (Query) ( Nullable and Optional , defaults to null )
|
|
Get blog post by alias
get /api/http/blog/alias:{alias}
Rights, that may be checked: View articles
|
Request arguments |
---|
alias : string (Path) 
|
|
Get blog post by external id
get /api/http/blog/external-id:{id}
Rights, that may be checked: View articles
|
Request arguments |
---|
id : string (Path) 
|
|
Get blog post
get /api/http/blog/{id}
Rights, that may be checked: View articles
|
Request arguments |
---|
id : string (Path) 
|
|
Update blog post
patch /api/http/blog/{id}
Rights, that may be checked: Publish articles
|
Request arguments |
---|
id : string (Path) 
| object with fields: title : string ( Nullable and Optional , defaults to null )
content : string ( Nullable and Optional , defaults to null )
locations : array of string ( Nullable and Optional , defaults to null )
teams : array of string ( Nullable and Optional , defaults to null )
event : BlogCalendarEvent ( Nullable and Optional )
|
|
Unpublish blog post
delete /api/http/blog/{id}
Rights, that may be checked: Unpublish articles
|
Request arguments |
---|
id : string (Path) 
|
|
Last modified: 08 September 2022