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

getAutoSaveBufferContents() public method

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