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

clonePost() public method

Clone the blog post.
public clonePost ( integer $id ) : Response
$id integer The blog post ID
return SevenShores\Hubspot\Http\Response
    function clonePost($id)
    {
        $endpoint = "https://api.hubapi.com/content/api/v2/blog-posts/{$id}/clone";
        return $this->client->request('post', $endpoint);
    }