API Stability Short-Term

The searchFleetInstallationTokens() GraphQL query will search for Fleet installation tokens.

Syntax

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

graphql
searchFleetInstallationTokens(
      skip: integer, limit: integer, 
      sortBy: FleetInstallationTokens__SortBy, 
      orderBy: OrderBy
   ): SearchFleetInstallationTokenResultSet!

Below is an example using this query field:

Show:
graphql
query {
  searchFleetInstallationTokens(sortBy: Name, orderBy: ASC)
     { totalResults, 
       results{name, token} }
}
Example Responses
Show:
json
{
  "data": {
    "searchFleetInstallationTokens": {
      "totalResults": 1,
      "results": [
        {
          "name": "Nifty Install Token",
          "token": "yTscARmEpK7MWqcKuZZMI6kevsqPZeB9"
        }
      ]
    }
  }
}

Returned Datatype

For SearchFleetInstallationTokenResultSet, there are a couple of parameters. They're listed here with descriptions:

Table: SearchFleetInstallationTokenResultSet

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Mar 19, 2025
results[FleetInstallationToken]yes Short-TermThe paginated result set. See FleetInstallationToken.
totalResultsintegeryes Short-TermThe total number of matching results.