API Stability Short-Term

The getFleetManagementUrl() GraphQL query to get the URL endpoint for Fleet management.

Syntax

Below is the syntax for the getFleetManagementUrl() query field:

graphql
getFleetManagementUrl: String!

This query field is very simple and straightforward: there's no input or return parameters to specify. Below is an example of how to use it, along with how the results might look:

Show:
graphql
query {
  getFleetManagementUrl
}
Example Responses
Show:
json
{
  "data": {
    "getFleetManagementUrl": "https://company.com"
  }
}