SevenShores\Hubspot\Tests\Integration\Resources\CompaniesTest::removeContact PHP Method

removeContact() public method

public removeContact ( )
    public function removeContact()
    {
        $newCompanyResponse = $this->createCompany();
        $companyId = $newCompanyResponse['companyId'];
        list($contactId) = $this->createAssociatedContact($companyId);
        $response = $this->companies->removeContact($contactId, $companyId);
        $this->assertEquals(204, $response->getStatusCode());
    }