SevenShores\Hubspot\Resources\BlogAuthors::create PHP 메소드

create() 공개 메소드

Create a new blog author.
public create ( array $params = [] ) : Response
$params array Optional Parameters.
리턴 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);
    }