AI-generated Key Takeaways
-
The resource representation for
blogger#postUserInfoincludes details about a post and user information related to that post. -
The
post_user_infonested object contains specific per-user details likeuserId,blogId,postId, andhasEditAccess. -
The available methods for this resource are
getto retrieve a single post and user info pair andlistto retrieve a list of post and post user info pairs.
For a list of methods for this resource, see the end of this page.
Resource representations
{ "kind": "blogger#postUserInfo", "post": posts Resource , "post_user_info": { "kind": "blogger#postPerUserInfo", "userId": string , "blogId": string , "postId": string , "hasEditAccess": boolean } }
| Property name | Value | Description | Notes |
|---|---|---|---|
kind
|
string
|
The kind of this entity. Always blogger#postUserInfo
|
|
post
|
nested object
|
The Post resource. | |
post_user_info
|
nested object
|
Information about a User for the Post. | |
post_user_info.
kind
|
string
|
The kind of this entity. Always blogger#postPerUserInfo
|
|
post_user_info.
userId
|
string
|
ID of the User. | |
post_user_info.
blogId
|
string
|
ID of the Blog that the post resource belongs to. | |
post_user_info.
postId
|
string
|
ID of the Post resource. | |
post_user_info.
hasEditAccess
|
boolean
|
True if the user has Author level access to the post. |


