Zendesk\API\Resources\Core\SupportAddresses::verify PHP Method

verify() public method

Verify recipient address
public verify ( null $recipientAddressId = null, array $updateFields = [] ) : stdClass
$recipientAddressId null
$updateFields array
return stdClass | null
    public function verify($recipientAddressId = null, array $updateFields = [])
    {
        $class = get_class($this);
        if (empty($recipientAddressId)) {
            $recipientAddressId = $this->getChainedParameter($class);
        }
        return $this->client->put($this->getRoute(__FUNCTION__, ['id' => $recipientAddressId]), $updateFields);
    }
SupportAddresses