Azure Maps Routeset Service. (preview:2022-09-01)

2025/10/06 • 5 deleted methods

Routeset_Create (removed)
Description **Applies to:** see [pricing tiers](https://aka.ms/AzureMapsPricingTier). Creator makes it possible to develop applications based on your private indoor map data using Azure Maps API and SDK. See the [Creator for indoor maps](https://docs.microsoft.com/azure/azure-maps/creator-indoor-maps) article for an introduction to the Azure Maps Creator concepts and tools. This API allows the caller to create routeset data from a dataset. Use the routeset API to create special data structures consumed by the Azure Maps Wayfinding service to discover the shortest paths within a facility. ### Submit Create Request To create a routeset, make a `POST` request with an empty body. The dataset is used as the source of the routeset data, so the `datasetId` query parameter must be included. The Create Routeset API is a [long-running operation](https://aka.ms/am-creator-lrt-v2).
Reference Link ¶

⚼ Request

POST:  /routesets
{
x-ms-client-id: string ,
api-version: string ,
datasetId: string ,
description: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Routeset_List (removed)
Description **Applies to:** see [pricing tiers](https://aka.ms/AzureMapsPricingTier). Creator makes it possible to develop applications based on your private indoor map data using Azure Maps API and SDK. See the [Creator for indoor maps](https://docs.microsoft.com/azure/azure-maps/creator-indoor-maps) article for an introduction to the Azure Maps Creator concepts and tools. This API allows the caller to fetch a list of all routesets in the current Azure Maps Creator account.
Reference Link ¶

⚼ Request

GET:  /routesets
{
x-ms-client-id: string ,
api-version: string ,
}

⚐ Response (200)

{
routesets:
[
{
routesetId: string ,
datasetId: string ,
description: string ,
facilities:
[
{
facilityId: string ,
levelOrdinals:
[
number ,
]
,
}
,
]
,
created: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Routeset_Get (removed)
Description **Applies to:** see [pricing tiers](https://aka.ms/AzureMapsPricingTier). Creator makes it possible to develop applications based on your private indoor map data using Azure Maps API and SDK. See the [Creator for indoor maps](https://docs.microsoft.com/azure/azure-maps/creator-indoor-maps) article for an introduction to the Azure Maps Creator concepts and tools. This API allows the caller to fetch a routeset.
Reference Link ¶

⚼ Request

GET:  /routesets/{routesetId}
{
x-ms-client-id: string ,
api-version: string ,
routesetId: string ,
}

⚐ Response (200)

{
routesetId: string ,
datasetId: string ,
description: string ,
facilities:
[
{
facilityId: string ,
levelOrdinals:
[
number ,
]
,
}
,
]
,
created: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Routeset_Delete (removed)
Description **Applies to:** see [pricing tiers](https://aka.ms/AzureMapsPricingTier). Creator makes it possible to develop applications based on your private indoor map data using Azure Maps API and SDK. See the [Creator for indoor maps](https://docs.microsoft.com/azure/azure-maps/creator-indoor-maps) article for an introduction to the Azure Maps Creator concepts and tools. This API allows the caller to delete an existing routeset. Use this API when a routeset is no longer needed. ### Submit Delete Request To delete your routeset, send a `DELETE` request with the `routesetId` of the routeset to delete.
Reference Link ¶

⚼ Request

DELETE:  /routesets/{routesetId}
{
routesetId: string ,
x-ms-client-id: string ,
api-version: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Routeset_GetOperation (removed)
Description This API allows the caller to view the current progress of a routeset operation. The path is obtained from a call to the Create Routeset API. ### Submit Operations Request To view the current progress of a routeset operation, you will use a `GET` request with the `operationId` of the desired operation. ### Operation Response While in progress, a `200-OK` http status code will be returned with no extra headers. If the operation succeeds, a `200-OK` http status code with Resource-Location header will be returned.
Reference Link ¶

⚼ Request

GET:  /routesets/operations/{operationId}
{
x-ms-client-id: string ,
api-version: string ,
operationId: string ,
}

⚐ Response (200)

{
$headers:
{
resource-location: string ,
}
,
$schema:
{
operationId: string ,
status: enum ,
created: string ,
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
warning:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}