ReblogPost
Reblog a post.
Stored Procedure Specific Information
Execute
Call this procedure to reblog a post.
To reblog a post, you must specify the following column: PostId. A successful authentication is also required.
For example:
EXECUTE ReblogPost PostId='166';
Input
| Name | Type | Description |
| PostId | Integer | The unique identifier of the WordPress post to be reblogged. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the reblog operation completed successfully. |
| Id | Integer | The unique identifier assigned to the newly created reblogged post. |
| CanReblog | String | Indicates whether the post is eligible to be reblogged by any WordPress user. |
| CanUserReblog | Boolean | Indicates whether the authenticated user has permission to reblog the specified post. |
| IsReblogged | Boolean | Shows whether the authenticated user has already reblogged this post. |
| MetaAggregate | String | Contains metadata and response details returned from the WordPress API related to the reblog operation. |