SevenShores\Hubspot\Resources\ContactLists::refresh PHP Method

refresh() public method

Refresh a list.
public refresh ( integer $id ) : Response
$id integer List id
return SevenShores\Hubspot\Http\Response
    function refresh($id)
    {
        $endpoint = "https://api.hubapi.com/contacts/v1/lists/{$id}/refresh";
        return $this->client->request('post', $endpoint);
    }