Connectors Reference

Blogger

Blogger is a blog publishing service. It allows you to create websites and post to them on an ongoing basis.

 

Status: Preview

Tier: Standard

Version: 1.1

 

Actions:

Name

Summary

ListBlogs ()

List user blogs

ListPosts (string blogId, [advanced][Optional]string status)

List all posts

CreatePost (string blogId, CreatePostRequest post, [Optional]boolean isDraft)

Create post

GetPost (string blogId, string postId)

Get a post

EditPost (string blogId, string postId, UpdatePostRequest post)

Edit a post

DeletePost (string blogId, string postId)

Delete a post

PublishPost (string blogId, string postId)

Publish a post

RevertPost (string blogId, string postId)

Revert a post

 

Triggers:

Name

Summary

OnPostCreated (string blogId, string status)

When a post is created

 

Objects:

Name

Summary

Blog

 

BlogList

 

CreatePostRequest

 

Location

 

Post

 

PostList

 

UpdatePostRequest

 

 

Actions:

ListBlogs

Summary: List user blogs

Description: Lists all blogs for the current user

 

Syntax:

Blogger.ListBlogs ()

 

Returns:

          Type:BlogList

          Description: A list of Blogger blogs

 

ListPosts

Summary: List all posts

Description: List all posts

 

Syntax:

Blogger.ListPosts (string blogId, [advanced][Optional]string status)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

status

string

(Status)

Status of the posts to retrieve (live or draft)

False

 

Returns:

          Type:PostList

          Description: A list of Blogger posts

 

CreatePost

Summary: Create post

Description: Create post

 

Syntax:

Blogger.CreatePost (string blogId, CreatePostRequest post, [Optional]boolean isDraft)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

post

CreatePostRequest

 

A Blogger post object for new post requests

True

isDraft

boolean

(Draft)

Indicate if this post should be saved as a draft

False

 

Returns:

          Type:Post

          Description: A Blogger post object

 

GetPost

Summary: Get a post

Description: Get a post

 

Syntax:

Blogger.GetPost (string blogId, string postId)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

postId

string

(Post Id)

Post

True

ListPosts

 

Returns:

          Type:Post

          Description: A Blogger post object

 

EditPost

Summary: Edit a post

Description: Edit a post

 

Syntax:

Blogger.EditPost (string blogId, string postId, UpdatePostRequest post)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

postId

string

(Post Id)

Post

True

ListPosts

post

UpdatePostRequest

 

A Blogger post object for new post requests

True

 

Returns:

          Type:Post

          Description: A Blogger post object

 

DeletePost

Summary: Delete a post

Description: Delete a post

 

Syntax:

Blogger.DeletePost (string blogId, string postId)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

postId

string

(Post Id)

Post

True

ListPosts

 

Returns:

 

PublishPost

Summary: Publish a post

Description: Publish a post

 

Syntax:

Blogger.PublishPost (string blogId, string postId)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

postId

string

(Post Id)

Post

True

ListPosts

 

Returns:

          Type:Post

          Description: A Blogger post object

 

RevertPost

Summary: Revert a post

Description: Revert a post

 

Syntax:

Blogger.RevertPost (string blogId, string postId)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Blog

True

ListBlogs

postId

string

(Post Id)

Post

True

ListPosts

 

Returns:

          Type:Post

          Description: A Blogger post object

 

Triggers:

Trigger OnPostCreated

Summary: When a post is created

Description: Triggers a flow when a new post is created

 

Syntax:

Blogger.OnPostCreated (string blogId, string status)

 

Parameters:

Name

Type

Summary

Required

Related Action

blogId

string

(Blog Id)

Select a blog to watch

True

ListBlogs

status

string

(Post Status)Values: [Draft, Live, All]

Status of the posts to retrieve

True

 

Returns:

          Type:array of (Post)

 


 

Blog

Summary:

Description: A Blogger blog object

 

          Properties:

Name

Type

Summary

id

string

Blog ID

The id of the blog

name

string

Blog name

The name of the blog

description

string

Blog description

The description of the blog

published

string(date-time)

Published date

The published date of the blog

updated

string(date-time)

Updated date

The updated date of the blog

url

string

Blog URL

The url of the blog

status

string

Status

The status of the blog


 

BlogList

Summary:

Description: A list of Blogger blogs

 

          Properties:

Name

Type

Summary

items

array of (Blog)

Blogs

The list of blog items


 

CreatePostRequest

Summary:

Description: A Blogger post object for new post requests

 

          Properties:

Name

Type

Summary

title

string

Title

The title of the post

content

string

Content

The content of the post

labels

array of (string)

Labels

The labels for the post


 

Location

Summary:

Description: A Location blog object

 

          Properties:

Name

Type

Summary

name

string

Location Name

The name of the location

lat

number(double)

Latitude

The latitude of the location

lng

number(double)

Longitude

The longitude of the location

span

string

Location Span

The viewport span. Can be used when rendering a map preview


 

Post

Summary:

Description: A Blogger post object

 

          Properties:

Name

Type

Summary

id

string

Post Id

The id of the post

blog.id

string

Blog Id

The associated blog id of the post

published

string(date-time)

Published Date

The published date of the post

updated

string(date-time)

Updated Date

The updated date of the post

url

string

Post URL

The url where this post is displayed

title

string

Title

The title of the post

content

string

Post content

The content of the post

author.id

string

Author Id

The id of the author

author.displayName

string

Author Name

The name of the author

author.url

string

Author URL

The url of the author

author.image.url

string

Author Image URL

The URL of the image of the author

labels

array of (string)

Labels

The list of this post's labels

location

Location

 

A Location blog object

status

string

Status

The status of the post


 

PostList

Summary:

Description: A list of Blogger posts

 

          Properties:

Name

Type

Summary

items

array of (Post)

Posts

The list of blog post items


 

UpdatePostRequest

Summary:

Description: A Blogger post object for new post requests

 

          Properties:

Name

Type

Summary

title

string

Title

The title of the post

content

string

Content

The content of the post

labels

array of (string)

Labels

The labels for the post