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

validateBuffer() public method

Validates the auto-save buffer version of the blog post.
public validateBuffer ( integer $id ) : Response
$id integer The blog post ID
return SevenShores\Hubspot\Http\Response
    function validateBuffer($id)
    {
        $endpoint = "https://api.hubapi.com/content/api/v2/blog-posts/{$id}/validate-buffer";
        return $this->client->request('post', $endpoint);
    }