SevenShores\Hubspot\Resources\BlogPosts::hasBufferedChanges PHP Method

hasBufferedChanges() public method

Determine if the auto-save buffer differs from the live blog post.
public hasBufferedChanges ( integer $id ) : Response
$id integer The blog post ID
return SevenShores\Hubspot\Http\Response
    function hasBufferedChanges($id)
    {
        $endpoint = "https://api.hubapi.com/content/api/v2/blog-posts/{$id}/has-buffered-changes";
        return $this->client->request('get', $endpoint);
    }