Route - Get Route Operations Status

Applies to: see pricing tiers.

Get the status of an asynchronous operation by its operation ID.

GET https://atlas.microsoft.com/route/operations/{id}?api-version=2024-07-01-preview

URI Parameters

Name In Required Type Description
id
path True

string

System generated unique identifier for the asynchronous operation after it has been submitted.

Regex pattern: ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$

api-version
query True

string

Version number of Azure Maps API.

Responses

Name Type Description
200 OK

RouteOperation

OK

404 Not Found

ErrorResponse

The operation resource was not found.

Headers

x-ms-error-code: string

Other Status Codes

ErrorResponse

An unexpected error occurred.

Headers

x-ms-error-code: string

Security

AADToken

These are the Microsoft Entra OAuth 2.0 Flows. When paired with Azure role-based access control it can be used to control access to Azure Maps REST APIs. Azure role-based access controls are used to designate access to one or more Azure Maps resource account or sub-resources. Any user, group, or service principal can be granted access via a built-in role or a custom role composed of one or more permissions to Azure Maps REST APIs.

To implement scenarios, we recommend viewing authentication concepts. In summary, this security definition provides a solution for modeling application(s) via objects capable of access control on specific APIs and scopes.

Note

  • This security definition requires the use of the x-ms-client-id header to indicate which Azure Maps resource the application is requesting access to. This can be acquired from the Maps management API.
  • The Authorization URL is specific to the Azure public cloud instance. Sovereign clouds have unique Authorization URLs and Microsoft Entra ID configurations.
  • The Azure role-based access control is configured from the Azure management plane via Azure portal, PowerShell, CLI, Azure SDKs, or REST APIs.
  • Usage of the Azure Maps Web SDK allows for configuration based setup of an application for multiple use cases.
  • For more information on Microsoft identity platform, see Microsoft identity platform overview.

Type: oauth2
Flow: implicit
Authorization URL: https://login.microsoftonline.com/common/oauth2/authorize

Scopes

Name Description
https://atlas.microsoft.com/.default https://atlas.microsoft.com/.default

subscription-key

This is a shared key that is provisioned when creating an Azure Maps resource through the Azure management plane via Azure portal, PowerShell, CLI, Azure SDKs, or REST APIs.

With this key, any application is authorized to access all REST APIs. In other words, these can currently be treated as master keys to the account which they are issued for.

For publicly exposed applications, our recommendation is to use server-to-server access of Azure Maps REST APIs where this key can be securely stored.

Type: apiKey
In: header

SAS Token

This is a shared access signature token is created from the List SAS operation on the Azure Maps resource through the Azure management plane via Azure portal, PowerShell, CLI, Azure SDKs, or REST APIs.

With this token, any application is authorized to access with Azure role-based access controls and fine-grain control to the expiration, rate, and region(s) of use for the particular token. In other words, the SAS Token can be used to allow applications to control access in a more secured way than the shared key.

For publicly exposed applications, our recommendation is to configure a specific list of allowed origins on the Map account resource to limit rendering abuse and regularly renew the SAS Token.

Type: apiKey
In: header

Examples

Retrieve the async matrix operation status

Sample request

GET https://atlas.microsoft.com/route/operations/bc3f9365-3ee0-4564-aa27-825016325557?api-version=2024-07-01-preview

Sample response

{
  "kind": "RouteMatrix",
  "status": "Completed",
  "createdDateTime": "2023-01-01T00:00:00Z",
  "lastActionDateTime": "2023-01-01T00:05:00Z",
  "result": {
    "resultUrl": "https://atlas.microsoft.com/route/operations/bc3f9365-3ee0-4564-aa27-825016325557/result?api-version=2024-07-01-preview"
  }
}
{
  "error": {
    "code": "NotFound",
    "message": "Not Found: the requested resource could not be found."
  }
}

Definitions

Name Description
ErrorAdditionalInfo

The resource management error additional info.

ErrorDetail

The error detail.

ErrorResponse

Error response

Result

The result of async operation

RouteOperation

This object is returned from a successful Get Operation request.

RouteOperationKindEnum

Type of asynchronous operation

StatusEnum

Current status of the async operation.

ErrorAdditionalInfo

The resource management error additional info.

Name Type Description
info

object

The additional info.

type

string

The additional info type.

ErrorDetail

The error detail.

Name Type Description
additionalInfo

ErrorAdditionalInfo[]

The error additional info.

code

string

The error code.

details

ErrorDetail[]

The error details.

message

string

The error message.

target

string

The error target.

ErrorResponse

Error response

Name Type Description
error

ErrorDetail

The error object.

Result

The result of async operation

Name Type Description
resultUrl

string

URL to the get the result of async operation

RouteOperation

This object is returned from a successful Get Operation request.

Name Type Description
createdDateTime

string

Timestamp when the operation was created.

error

ErrorDetail

The error detail.

id

string

Unique identifier for the asynchronous operation.

kind

RouteOperationKindEnum

Type of asynchronous operation

lastActionDateTime

string

Timestamp when the operation status was updated.

result

Result

The result of async operation

status

StatusEnum

Current status of the async operation.

RouteOperationKindEnum

Type of asynchronous operation

Name Type Description
RouteMatrix

string

Route matrix asynchronous job.

StatusEnum

Current status of the async operation.

Name Type Description
Completed

string

The operation has completed successfully.

Failed

string

The operation has failed.

NotStarted

string

The operation has not started yet.

Running

string

The operation is running.