Creating and validating a dataset
A dataset represents a collection of map features. Map features are areas such as the building, levels, and rooms. For that, we will need the Dataset Create
API. We need to create a POST
URL for creating a dataset. The URL definition is shown here:
https://eu.atlas.microsoft.com/datasets? api-version=2.0& conversionId={conversionId}& subscription-key={AuthenticationId}
Our {authenticationId}
value is ce84cef4-95de-4cab-8499-a72430e965df
and the {conversionId}
value is b1e3dc72-2fdf-ebe9-1512-ee0a31887662
, which is the result from the previous call. The URL becomes this:
https://eu.atlas.microsoft.com/datasets?api-version=2.0&conversionId=b1e3dc72-2fdf-ebe9-1512-ee0a31887662&subscription-key=5u4nik9mH69uvmR6AYuHJq-l2SmNbwfSP1mZGxLfAkQ
Execute the following steps:
- Select the
DigitalTwinsBook
environment. - Add a new request and name it
CreateDataset
. - Copy the URL shown in the preceding code snippet into the...