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

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

Returns a JSON object representing the definition for a given contact property.
См. также: http://developers.hubspot.com/docs/methods/companies/get_contact_property
public get ( string $name ) : Response
$name string The name of the property.
Результат SevenShores\Hubspot\Http\Response
    function get($name)
    {
        $endpoint = "https://api.hubapi.com/contacts/v2/properties/named/{$name}";
        return $this->client->request('get', $endpoint);
    }