Elastic.Clients.Elasticsearch .NET client - calling Vector tile search API

I think we are on the right track :slight_smile:

You can provide the expected MIME type like this:

var results = await client.Transport.RequestAsync<BytesResponse>(Elastic.Transport.HttpMethod.GET, path, cancellationToken: ct, requestParameters: new DefaultRequestParameters
{
	RequestConfiguration = new RequestConfiguration
	{
		Accept = "application/vnd.mapbox-vector-tile"
	}
});