Zendesk\API\HttpClient::delete PHP Method

delete() public method

This is a helper method to do a delete request.
public delete ( $endpoint ) : null
$endpoint
return null
    public function delete($endpoint)
    {
        $response = Http::send($this, $endpoint, ['method' => 'DELETE']);
        return $response;
    }