Skip to content

Vehicles

Gio85 edited this page Feb 27, 2021 · 2 revisions

In order to fetch the data, the following methods can be used;

  • getSchema() which will return the resource schema
  • read() which will return the single resource
  • list() which will return the resources list

Examples:

  // Get the instance of the client
  const client = ApiClient.getInstance()

  const vehicles = await client.vehicles.list({ search: 'Sand Crawler' })
  const vehicles = await client.vehicles.list({ page: 3 })
  const vehiclesSchema = await client.vehicles.getSchema()
  const singleVehicle = await client.vehicles.read('6')
Clone this wiki locally