SevenShores\Hubspot\Resources\BlogAuthors::create PHP Method

create() public method

Create a new blog author.
public create ( array $params = [] ) : Response
$params array Optional Parameters.
return SevenShores\Hubspot\Http\Response
    function create($params = [])
    {
        $endpoint = 'https://api.hubapi.com/blogs/v3/blog-authors';
        $options['json'] = $params;
        return $this->client->request('post', $endpoint, $options);
    }