Module: SynsbasenApi::Findable

Included in:
Brand, Model, Variant, Vehicle, Version
Defined in:
lib/synsbasen_api/findable.rb

Overview

Provides a method to find a resource by its ID.

This module is intended to be extended in classes that represent resources.

Instance Method Summary collapse

Instance Method Details

#find(id, expand: []) ⇒ ApiResponse

Retrieves information about a specific record based on its ID.

Parameters:

  • id (String)

    The unique identifier of the record.

  • expand (Array<String>) (defaults to: [])

    A list of related resources to include in the response.

Returns:

  • (ApiResponse)

    An instance of ApiResponse containing details of the specified version.



14
15
16
# File 'lib/synsbasen_api/findable.rb', line 14

def find(id, expand: [])
  get("/v1/#{resource_name}/#{id}", expand: expand)
end