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

all() public method

Get all blog authors.
public all ( array $params = [] ) : Response
$params array Optional parameters.
return SevenShores\Hubspot\Http\Response
    function all($params = [])
    {
        $endpoint = 'https://api.hubapi.com/blogs/v3/blog-authors';
        $queryString = build_query_string($params);
        return $this->client->request('get', $endpoint, [], $queryString);
    }