SevenShores\Hubspot\Resources\ContactProperties::delete PHP Метод

delete() публичный Метод

For a portal, delete an existing contact property.
См. также: http://developers.hubspot.com/docs/methods/contacts/v2/delete_contact_property
public delete ( string $name ) : Response
$name string
Результат SevenShores\Hubspot\Http\Response
    function delete($name)
    {
        $endpoint = "https://api.hubapi.com/contacts/v2/properties/named/{$name}";
        return $this->client->request('delete', $endpoint);
    }