Fetch multiple features by type and ID
FeatureCollection Elements.Batch(ElementBatchParamsparameters, CancellationTokencancellationToken = default)
POST/api/v1/features/batch
Fetch multiple features by type and ID
ElementBatchParams parameters = new()
{
Elements =
[
new()
{
ID = 0,
Type = Type.Node,
},
],
};
var featureCollection = await client.Elements.Batch(parameters);
Console.WriteLine(featureCollection);